Skip to content

Instantly share code, notes, and snippets.

@ohno
Last active June 12, 2022 08:58
Show Gist options
  • Save ohno/f560726b0435aed72ecc506499017639 to your computer and use it in GitHub Desktop.
Save ohno/f560726b0435aed72ecc506499017639 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Printf.jlチートシート\n",
"\n",
"`sprintf()`などはJulia以外の言語でも文字列を成型したり, 数字の桁数を変えたりしたい時に使いますよね. Juliaでは[Printf.jl](https://docs.julialang.org/en/v1/stdlib/Printf/)のマクロとして`@printf()`や`@sprintf()`が用意されています. ここでは使用例を列挙します.\n",
"\n",
"## パッケージ"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"# パッケージ\n",
"using Printf"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"## 文字列\n",
"|入力|出力|説明|\n",
"|:---|:---|:---|\n",
"|`@sprintf(\"%s\", \"Hello\")`|`\"Hello\"`||\n",
"|`@sprintf(\"%10s\", \"Hello\")`|`\"     Hello\"`|幅を指定|\n",
"|`@sprintf(\"%-10s\", \"Hello\")`|`\"Hello     \"`|左詰|\n",
"## 正の整数\n",
"|入力|出力|説明|\n",
"|:---|:---|:---|\n",
"|`@sprintf(\"%d\", 1234)`|`\"1234\"`||\n",
"|`@sprintf(\"%10d\", 1234)`|`\"      1234\"`|幅を指定|\n",
"|`@sprintf(\"%-10d\", 1234)`|`\"1234      \"`|左詰|\n",
"|`@sprintf(\"%010d\", 1234)`|`\"0000001234\"`|ゼロ詰|\n",
"## 負の整数\n",
"|入力|出力|説明|\n",
"|:---|:---|:---|\n",
"|`@sprintf(\"%d\", -1234)`|`\"-1234\"`||\n",
"|`@sprintf(\"%10d\", -1234)`|`\"     -1234\"`|幅を指定|\n",
"|`@sprintf(\"%-10d\", -1234)`|`\"-1234     \"`|左詰|\n",
"|`@sprintf(\"%010d\", -1234)`|`\"-000001234\"`|ゼロ詰|\n",
"## 浮動小数点数\n",
"|入力|出力|説明|\n",
"|:---|:---|:---|\n",
"|`@sprintf(\"%f\", 123.456)`|`\"123.456000\"`||\n",
"|`@sprintf(\"%10f\", 123.456)`|`\"123.456000\"`|全体の桁数を指定|\n",
"|`@sprintf(\"%-10f\", 123.456)`|`\"123.456000\"`|左詰(上と同じ)|\n",
"|`@sprintf(\"%0.5f\", 123.456)`|`\"123.45600\"`|小数点以下の桁数を指定|\n",
"|`@sprintf(\"%0.2f\", 123.456)`|`\"123.46\"`|同上|\n",
"|`@sprintf(\"%15.5f\", 123.456)`|`\"      123.45600\"`|全体の桁数と小数点以下の桁数を指定|\n",
"|`@sprintf(\"%15.2f\", 123.456)`|`\"         123.46\"`|同上|\n",
"|`@sprintf(\"%-15.2f\", 123.456)`|`\"123.46         \"`|左詰|\n",
"|`@sprintf(\"%015.2f\", 123.456)`|`\"000000000123.46\"`|ゼロ詰|\n",
"|`@sprintf(\"%+15f\",  123.456)`|`\"    +123.456000\"`|符号を表示|\n",
"|`@sprintf(\"%+15f\", -123.456)`|`\"    -123.456000\"`|符号を表示|\n"
]
}
],
"source": [
"row(code, description=\"\") = println(replace(\"|`$(code)`|`\\\"\" * eval(Meta.parse(code)) * \"\\\"`|$(description)|\", \" \"=>\" \"))\n",
"header(title) = println(\"## $(title)\\n|入力|出力|説明|\\n|:---|:---|:---|\")\n",
"\n",
"header(\"文字列\")\n",
"row(\"\"\"@sprintf(\"%s\", \"Hello\")\"\"\")\n",
"row(\"\"\"@sprintf(\"%10s\", \"Hello\")\"\"\", \"幅を指定\")\n",
"row(\"\"\"@sprintf(\"%-10s\", \"Hello\")\"\"\", \"左詰\")\n",
"\n",
"header(\"正の整数\")\n",
"row(\"\"\"@sprintf(\"%d\", 1234)\"\"\")\n",
"row(\"\"\"@sprintf(\"%10d\", 1234)\"\"\", \"幅を指定\")\n",
"row(\"\"\"@sprintf(\"%-10d\", 1234)\"\"\", \"左詰\")\n",
"row(\"\"\"@sprintf(\"%010d\", 1234)\"\"\", \"ゼロ詰\")\n",
"\n",
"header(\"負の整数\")\n",
"row(\"\"\"@sprintf(\"%d\", -1234)\"\"\")\n",
"row(\"\"\"@sprintf(\"%10d\", -1234)\"\"\", \"幅を指定\")\n",
"row(\"\"\"@sprintf(\"%-10d\", -1234)\"\"\", \"左詰\")\n",
"row(\"\"\"@sprintf(\"%010d\", -1234)\"\"\", \"ゼロ詰\")\n",
"\n",
"header(\"浮動小数点数\")\n",
"row(\"\"\"@sprintf(\"%f\", 123.456)\"\"\")\n",
"row(\"\"\"@sprintf(\"%10f\", 123.456)\"\"\", \"全体の桁数を指定\")\n",
"row(\"\"\"@sprintf(\"%-10f\", 123.456)\"\"\", \"左詰(上と同じ)\")\n",
"row(\"\"\"@sprintf(\"%0.5f\", 123.456)\"\"\", \"小数点以下の桁数を指定\")\n",
"row(\"\"\"@sprintf(\"%0.2f\", 123.456)\"\"\", \"同上\")\n",
"row(\"\"\"@sprintf(\"%15.5f\", 123.456)\"\"\", \"全体の桁数と小数点以下の桁数を指定\")\n",
"row(\"\"\"@sprintf(\"%15.2f\", 123.456)\"\"\", \"同上\")\n",
"row(\"\"\"@sprintf(\"%-15.2f\", 123.456)\"\"\", \"左詰\")\n",
"row(\"\"\"@sprintf(\"%015.2f\", 123.456)\"\"\", \"ゼロ詰\")\n",
"row(\"\"\"@sprintf(\"%+15f\", 123.456)\"\"\", \"符号を表示\")\n",
"row(\"\"\"@sprintf(\"%+15f\", -123.456)\"\"\", \"符号を表示\")\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 使用例1"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`println()`を使った場合, 以下のようにきれいに表示できない場合があります."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"t = 0.00\n",
"t = 0.05\n",
"t = 0.10\n",
"t = 0.15\n",
"t = 0.20\n",
"t = 0.25\n",
"t = 0.30\n",
"t = 0.35\n",
"t = 0.40\n",
"t = 0.45\n",
"t = 0.50\n"
]
}
],
"source": [
"# 使用例1\n",
"\n",
"for i in 0:10\n",
" @printf(\"t = %0.2f\\n\", i*0.05)\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`@printf()`では以下のように桁数を決めて表示できます."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"t = 0.0\n",
"t = 0.05\n",
"t = 0.1\n",
"t = 0.15000000000000002\n",
"t = 0.2\n",
"t = 0.25\n",
"t = 0.30000000000000004\n",
"t = 0.35000000000000003\n",
"t = 0.4\n",
"t = 0.45\n",
"t = 0.5\n"
]
}
],
"source": [
"# println()の場合\n",
"\n",
"for i in 0:10\n",
" println(\"t = \", i*0.05)\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 使用例2\n",
"\n",
"[LaTeXStrings.jl](https://github.com/stevengj/LaTeXStrings.jl)を使うと, 以下のようにLaTeX表示させることもできます."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/latex": [
"$t = 0.00$"
],
"text/plain": [
"L\"$t = 0.00$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.05$"
],
"text/plain": [
"L\"$t = 0.05$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.10$"
],
"text/plain": [
"L\"$t = 0.10$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.15$"
],
"text/plain": [
"L\"$t = 0.15$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.20$"
],
"text/plain": [
"L\"$t = 0.20$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.25$"
],
"text/plain": [
"L\"$t = 0.25$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.30$"
],
"text/plain": [
"L\"$t = 0.30$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.35$"
],
"text/plain": [
"L\"$t = 0.35$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.40$"
],
"text/plain": [
"L\"$t = 0.40$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.45$"
],
"text/plain": [
"L\"$t = 0.45$\""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/latex": [
"$t = 0.50$"
],
"text/plain": [
"L\"$t = 0.50$\""
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# 使用例2\n",
"\n",
"# using Pkg\n",
"# Pkg.add(\"LaTeXStrings\")\n",
"using LaTeXStrings\n",
"\n",
"for i in 0:10\n",
" latexstring(@sprintf(\"t = %0.2f\", i*0.05)) |> display\n",
"end"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 使用例3\n",
"\n",
"Plots.jlの使い方に関しては [こちらの記事](https://zenn.dev/ohno/articles/3101433fbe9231) を参考にしてください. 以下では拡散方程式\n",
"\n",
"$$\n",
" \\frac{\\partial u(x,t)}{\\partial t} = D\\frac{\\partial^2 u(x,t)}{{\\partial x}^2}\n",
"$$\n",
"\n",
"の初期条件$u(x,0)=\\delta(x-x_0)$と境界条件$u(\\pm\\infty,t)=0$に対応する解\n",
"\n",
"$$u(x,t) = \\frac{1}{\\sqrt{4\\pi Dt}} \\exp \\left( -\\frac{(x-x_0)^2}{4Dt} \\right)$$\n",
"\n",
"を描写します."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"800\" height=\"600\" viewBox=\"0 0 3200 2400\">\n",
"<defs>\n",
" <clipPath id=\"clip410\">\n",
" <rect x=\"0\" y=\"0\" width=\"3200\" height=\"2400\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M0 2400 L3200 2400 L3200 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip411\">\n",
" <rect x=\"640\" y=\"0\" width=\"2241\" height=\"2241\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M233.806 604.92 L1019.42 604.92 L1019.42 121.312 L233.806 121.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip412\">\n",
" <rect x=\"233\" y=\"121\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 256.041,604.92 256.041,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 441.328,604.92 441.328,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 626.614,604.92 626.614,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 811.901,604.92 811.901,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 997.188,604.92 997.188,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,604.92 1019.42,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,604.92 256.041,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 441.328,604.92 441.328,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 626.614,604.92 626.614,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 811.901,604.92 811.901,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 997.188,604.92 997.188,586.022 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M225.983 656.891 L255.659 656.891 L255.659 660.826 L225.983 660.826 L225.983 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M269.779 669.785 L286.098 669.785 L286.098 673.72 L264.154 673.72 L264.154 669.785 Q266.816 667.03 271.399 662.4 Q276.006 657.748 277.186 656.405 Q279.432 653.882 280.311 652.146 Q281.214 650.387 281.214 648.697 Q281.214 645.942 279.27 644.206 Q277.348 642.47 274.247 642.47 Q272.048 642.47 269.594 643.234 Q267.163 643.998 264.386 645.549 L264.386 640.827 Q267.21 639.692 269.663 639.114 Q272.117 638.535 274.154 638.535 Q279.524 638.535 282.719 641.22 Q285.913 643.905 285.913 648.396 Q285.913 650.526 285.103 652.447 Q284.316 654.345 282.21 656.938 Q281.631 657.609 278.529 660.826 Q275.427 664.021 269.779 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M411.085 656.891 L440.76 656.891 L440.76 660.826 L411.085 660.826 L411.085 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M451.663 669.785 L459.302 669.785 L459.302 643.419 L450.992 645.086 L450.992 640.827 L459.256 639.16 L463.932 639.16 L463.932 669.785 L471.57 669.785 L471.57 673.72 L451.663 673.72 L451.663 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M626.614 642.239 Q623.003 642.239 621.175 645.803 Q619.369 649.345 619.369 656.475 Q619.369 663.581 621.175 667.146 Q623.003 670.687 626.614 670.687 Q630.249 670.687 632.054 667.146 Q633.883 663.581 633.883 656.475 Q633.883 649.345 632.054 645.803 Q630.249 642.239 626.614 642.239 M626.614 638.535 Q632.425 638.535 635.48 643.141 Q638.559 647.725 638.559 656.475 Q638.559 665.201 635.48 669.808 Q632.425 674.391 626.614 674.391 Q620.804 674.391 617.726 669.808 Q614.67 665.201 614.67 656.475 Q614.67 647.725 617.726 643.141 Q620.804 638.535 626.614 638.535 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M802.283 669.785 L809.922 669.785 L809.922 643.419 L801.612 645.086 L801.612 640.827 L809.876 639.16 L814.552 639.16 L814.552 669.785 L822.191 669.785 L822.191 673.72 L802.283 673.72 L802.283 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M991.841 669.785 L1008.16 669.785 L1008.16 673.72 L986.216 673.72 L986.216 669.785 Q988.878 667.03 993.461 662.4 Q998.068 657.748 999.248 656.405 Q1001.49 653.882 1002.37 652.146 Q1003.28 650.387 1003.28 648.697 Q1003.28 645.942 1001.33 644.206 Q999.41 642.47 996.309 642.47 Q994.109 642.47 991.656 643.234 Q989.225 643.998 986.447 645.549 L986.447 640.827 Q989.272 639.692 991.725 639.114 Q994.179 638.535 996.216 638.535 Q1001.59 638.535 1004.78 641.22 Q1007.98 643.905 1007.98 648.396 Q1007.98 650.526 1007.16 652.447 Q1006.38 654.345 1004.27 656.938 Q1003.69 657.609 1000.59 660.826 Q997.489 664.021 991.841 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M640.792 722.536 Q640.792 724.339 639.665 725.37 Q638.538 726.368 637.25 726.368 Q636.026 726.368 635.382 725.66 Q634.738 724.951 634.738 724.05 Q634.738 722.826 635.639 721.763 Q636.541 720.7 637.894 720.475 Q636.573 719.637 634.609 719.637 Q633.321 719.637 632.193 720.314 Q631.098 720.99 630.422 721.86 Q629.778 722.729 629.198 723.985 Q628.651 725.209 628.425 725.95 Q628.232 726.658 628.071 727.431 L625.817 736.449 Q624.722 740.732 624.722 742.246 Q624.722 744.114 625.623 745.37 Q626.525 746.594 628.329 746.594 Q629.037 746.594 629.842 746.4 Q630.647 746.175 631.678 745.595 Q632.741 744.983 633.675 744.082 Q634.641 743.148 635.575 741.569 Q636.509 739.991 637.121 737.962 Q637.314 737.254 637.958 737.254 Q638.763 737.254 638.763 737.898 Q638.763 738.446 638.312 739.605 Q637.894 740.732 636.96 742.214 Q636.058 743.663 634.866 744.983 Q633.675 746.272 631.903 747.173 Q630.132 748.075 628.2 748.075 Q625.43 748.075 623.594 746.594 Q621.759 745.112 621.082 743.051 Q620.921 743.341 620.696 743.727 Q620.47 744.114 619.794 744.983 Q619.15 745.821 618.409 746.465 Q617.668 747.077 616.509 747.56 Q615.382 748.075 614.158 748.075 Q612.612 748.075 611.227 747.624 Q609.875 747.173 608.908 746.143 Q607.942 745.112 607.942 743.695 Q607.942 742.117 609.005 741.022 Q610.1 739.895 611.582 739.895 Q612.516 739.895 613.256 740.442 Q614.029 740.99 614.029 742.181 Q614.029 743.502 613.127 744.5 Q612.226 745.499 610.937 745.756 Q612.258 746.594 614.222 746.594 Q616.348 746.594 618.023 744.726 Q619.697 742.858 620.503 739.734 Q622.499 732.23 623.272 728.88 Q624.045 725.499 624.045 724.05 Q624.045 722.697 623.691 721.763 Q623.337 720.829 622.725 720.41 Q622.145 719.959 621.598 719.798 Q621.082 719.637 620.503 719.637 Q619.536 719.637 618.441 720.024 Q617.379 720.41 616.09 721.312 Q614.834 722.182 613.643 723.985 Q612.451 725.789 611.646 728.268 Q611.485 729.009 610.776 729.009 Q610.003 728.977 610.003 728.333 Q610.003 727.785 610.422 726.658 Q610.873 725.499 611.775 724.05 Q612.709 722.6 613.9 721.312 Q615.124 719.992 616.896 719.09 Q618.699 718.188 620.631 718.188 Q621.501 718.188 622.338 718.381 Q623.208 718.542 624.238 719.025 Q625.301 719.508 626.235 720.571 Q627.169 721.634 627.749 723.18 Q628.135 722.439 628.651 721.731 Q629.198 721.022 630.036 720.153 Q630.905 719.251 632.097 718.736 Q633.321 718.188 634.673 718.188 Q635.994 718.188 637.282 718.542 Q638.57 718.864 639.665 719.927 Q640.792 720.958 640.792 722.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,604.92 1019.42,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,508.198 1019.42,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,411.477 1019.42,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,314.755 1019.42,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,218.034 1019.42,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip412)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,121.312 1019.42,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,604.92 233.806,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,604.92 252.704,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,508.198 252.704,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,411.477 252.704,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,314.755 252.704,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,218.034 252.704,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,121.312 252.704,121.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M128.631 590.719 Q125.02 590.719 123.191 594.283 Q121.385 597.825 121.385 604.955 Q121.385 612.061 123.191 615.626 Q125.02 619.167 128.631 619.167 Q132.265 619.167 134.07 615.626 Q135.899 612.061 135.899 604.955 Q135.899 597.825 134.07 594.283 Q132.265 590.719 128.631 590.719 M128.631 587.015 Q134.441 587.015 137.496 591.621 Q140.575 596.205 140.575 604.955 Q140.575 613.681 137.496 618.288 Q134.441 622.871 128.631 622.871 Q122.82 622.871 119.742 618.288 Q116.686 613.681 116.686 604.955 Q116.686 596.205 119.742 591.621 Q122.82 587.015 128.631 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 616.32 L153.677 616.32 L153.677 622.2 L148.793 622.2 L148.793 616.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 590.719 Q170.251 590.719 168.422 594.283 Q166.617 597.825 166.617 604.955 Q166.617 612.061 168.422 615.626 Q170.251 619.167 173.862 619.167 Q177.496 619.167 179.302 615.626 Q181.13 612.061 181.13 604.955 Q181.13 597.825 179.302 594.283 Q177.496 590.719 173.862 590.719 M173.862 587.015 Q179.672 587.015 182.728 591.621 Q185.806 596.205 185.806 604.955 Q185.806 613.681 182.728 618.288 Q179.672 622.871 173.862 622.871 Q168.052 622.871 164.973 618.288 Q161.918 613.681 161.918 604.955 Q161.918 596.205 164.973 591.621 Q168.052 587.015 173.862 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M130.228 493.997 Q126.617 493.997 124.788 497.562 Q122.983 501.103 122.983 508.233 Q122.983 515.339 124.788 518.904 Q126.617 522.446 130.228 522.446 Q133.862 522.446 135.668 518.904 Q137.496 515.339 137.496 508.233 Q137.496 501.103 135.668 497.562 Q133.862 493.997 130.228 493.997 M130.228 490.293 Q136.038 490.293 139.094 494.9 Q142.172 499.483 142.172 508.233 Q142.172 516.96 139.094 521.566 Q136.038 526.15 130.228 526.15 Q124.418 526.15 121.339 521.566 Q118.283 516.96 118.283 508.233 Q118.283 499.483 121.339 494.9 Q124.418 490.293 130.228 490.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M150.39 519.599 L155.274 519.599 L155.274 525.478 L150.39 525.478 L150.39 519.599 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M169.487 521.543 L185.806 521.543 L185.806 525.478 L163.862 525.478 L163.862 521.543 Q166.524 518.789 171.107 514.159 Q175.714 509.506 176.894 508.164 Q179.14 505.64 180.019 503.904 Q180.922 502.145 180.922 500.455 Q180.922 497.701 178.978 495.965 Q177.056 494.228 173.954 494.228 Q171.755 494.228 169.302 494.992 Q166.871 495.756 164.093 497.307 L164.093 492.585 Q166.917 491.451 169.371 490.872 Q171.825 490.293 173.862 490.293 Q179.232 490.293 182.427 492.978 Q185.621 495.664 185.621 500.154 Q185.621 502.284 184.811 504.205 Q184.024 506.103 181.917 508.696 Q181.339 509.367 178.237 512.585 Q175.135 515.779 169.487 521.543 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.145 397.275 Q124.533 397.275 122.705 400.84 Q120.899 404.382 120.899 411.511 Q120.899 418.618 122.705 422.183 Q124.533 425.724 128.145 425.724 Q131.779 425.724 133.584 422.183 Q135.413 418.618 135.413 411.511 Q135.413 404.382 133.584 400.84 Q131.779 397.275 128.145 397.275 M128.145 393.572 Q133.955 393.572 137.01 398.178 Q140.089 402.762 140.089 411.511 Q140.089 420.238 137.01 424.845 Q133.955 429.428 128.145 429.428 Q122.334 429.428 119.256 424.845 Q116.2 420.238 116.2 411.511 Q116.2 402.762 119.256 398.178 Q122.334 393.572 128.145 393.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.306 422.877 L153.191 422.877 L153.191 428.757 L148.306 428.757 L148.306 422.877 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M176.223 398.271 L164.417 416.72 L176.223 416.72 L176.223 398.271 M174.996 394.197 L180.876 394.197 L180.876 416.72 L185.806 416.72 L185.806 420.609 L180.876 420.609 L180.876 428.757 L176.223 428.757 L176.223 420.609 L160.621 420.609 L160.621 416.095 L174.996 394.197 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.469 300.554 Q124.858 300.554 123.029 304.119 Q121.223 307.66 121.223 314.79 Q121.223 321.896 123.029 325.461 Q124.858 329.003 128.469 329.003 Q132.103 329.003 133.908 325.461 Q135.737 321.896 135.737 314.79 Q135.737 307.66 133.908 304.119 Q132.103 300.554 128.469 300.554 M128.469 296.85 Q134.279 296.85 137.334 301.457 Q140.413 306.04 140.413 314.79 Q140.413 323.517 137.334 328.123 Q134.279 332.707 128.469 332.707 Q122.658 332.707 119.58 328.123 Q116.524 323.517 116.524 314.79 Q116.524 306.04 119.58 301.457 Q122.658 296.85 128.469 296.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.631 326.156 L153.515 326.156 L153.515 332.035 L148.631 332.035 L148.631 326.156 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M174.279 312.892 Q171.13 312.892 169.279 315.045 Q167.45 317.197 167.45 320.947 Q167.45 324.674 169.279 326.85 Q171.13 329.003 174.279 329.003 Q177.427 329.003 179.255 326.85 Q181.107 324.674 181.107 320.947 Q181.107 317.197 179.255 315.045 Q177.427 312.892 174.279 312.892 M183.561 298.239 L183.561 302.498 Q181.802 301.665 179.996 301.225 Q178.214 300.785 176.454 300.785 Q171.825 300.785 169.371 303.91 Q166.941 307.035 166.593 313.355 Q167.959 311.341 170.019 310.276 Q172.079 309.188 174.556 309.188 Q179.765 309.188 182.774 312.359 Q185.806 315.508 185.806 320.947 Q185.806 326.271 182.658 329.489 Q179.51 332.707 174.279 332.707 Q168.283 332.707 165.112 328.123 Q161.941 323.517 161.941 314.79 Q161.941 306.596 165.83 301.734 Q169.718 296.85 176.269 296.85 Q178.029 296.85 179.811 297.197 Q181.616 297.545 183.561 298.239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.723 203.832 Q125.112 203.832 123.283 207.397 Q121.478 210.939 121.478 218.068 Q121.478 225.175 123.283 228.74 Q125.112 232.281 128.723 232.281 Q132.357 232.281 134.163 228.74 Q135.992 225.175 135.992 218.068 Q135.992 210.939 134.163 207.397 Q132.357 203.832 128.723 203.832 M128.723 200.129 Q134.533 200.129 137.589 204.735 Q140.668 209.318 140.668 218.068 Q140.668 226.795 137.589 231.402 Q134.533 235.985 128.723 235.985 Q122.913 235.985 119.834 231.402 Q116.779 226.795 116.779 218.068 Q116.779 209.318 119.834 204.735 Q122.913 200.129 128.723 200.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.885 229.434 L153.769 229.434 L153.769 235.314 L148.885 235.314 L148.885 229.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.954 218.902 Q170.621 218.902 168.7 220.684 Q166.802 222.467 166.802 225.591 Q166.802 228.716 168.7 230.499 Q170.621 232.281 173.954 232.281 Q177.288 232.281 179.209 230.499 Q181.13 228.693 181.13 225.591 Q181.13 222.467 179.209 220.684 Q177.311 218.902 173.954 218.902 M169.279 216.911 Q166.269 216.17 164.58 214.11 Q162.913 212.05 162.913 209.087 Q162.913 204.943 165.853 202.536 Q168.816 200.129 173.954 200.129 Q179.116 200.129 182.056 202.536 Q184.996 204.943 184.996 209.087 Q184.996 212.05 183.306 214.11 Q181.64 216.17 178.654 216.911 Q182.033 217.698 183.908 219.99 Q185.806 222.281 185.806 225.591 Q185.806 230.615 182.728 233.3 Q179.672 235.985 173.954 235.985 Q168.237 235.985 165.158 233.3 Q162.103 230.615 162.103 225.591 Q162.103 222.281 164.001 219.99 Q165.899 217.698 169.279 216.911 M167.566 209.527 Q167.566 212.212 169.232 213.717 Q170.922 215.221 173.954 215.221 Q176.964 215.221 178.654 213.717 Q180.366 212.212 180.366 209.527 Q180.366 206.842 178.654 205.337 Q176.964 203.832 173.954 203.832 Q170.922 203.832 169.232 205.337 Q167.566 206.842 167.566 209.527 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M119.441 134.657 L127.08 134.657 L127.08 108.291 L118.77 109.958 L118.77 105.699 L127.033 104.032 L131.709 104.032 L131.709 134.657 L139.348 134.657 L139.348 138.592 L119.441 138.592 L119.441 134.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 132.713 L153.677 132.713 L153.677 138.592 L148.793 138.592 L148.793 132.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 107.111 Q170.251 107.111 168.422 110.676 Q166.617 114.217 166.617 121.347 Q166.617 128.453 168.422 132.018 Q170.251 135.56 173.862 135.56 Q177.496 135.56 179.302 132.018 Q181.13 128.453 181.13 121.347 Q181.13 114.217 179.302 110.676 Q177.496 107.111 173.862 107.111 M173.862 103.407 Q179.672 103.407 182.728 108.014 Q185.806 112.597 185.806 121.347 Q185.806 130.074 182.728 134.68 Q179.672 139.263 173.862 139.263 Q168.052 139.263 164.973 134.68 Q161.918 130.074 161.918 121.347 Q161.918 112.597 164.973 108.014 Q168.052 103.407 173.862 103.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.0468 419.572 Q15.8182 419.572 16.9132 420.699 Q18.0082 421.794 18.0082 423.179 Q18.0082 424.178 17.3962 424.918 Q16.7843 425.627 15.7215 425.627 Q14.6265 425.627 13.4671 424.79 Q12.3077 423.952 12.1467 422.052 Q10.9551 423.308 10.9551 425.305 Q10.9551 426.303 11.5992 427.141 Q12.2111 427.946 13.2095 428.397 Q14.2401 428.88 20.0693 429.975 Q21.9695 430.329 23.8052 430.651 Q25.6409 430.973 27.5733 431.36 L27.5733 425.885 Q27.5733 425.176 27.6055 424.886 Q27.6377 424.596 27.7987 424.371 Q27.9598 424.113 28.314 424.113 Q29.2158 424.113 29.4412 424.532 Q29.6345 424.918 29.6345 426.078 L29.6345 431.746 L50.5361 435.707 Q51.148 435.804 53.0803 436.223 Q54.9805 436.609 58.1045 437.543 Q61.2606 438.477 63.1286 439.411 Q64.1914 439.926 65.1897 440.603 Q66.2203 441.247 67.2509 442.181 Q68.2815 443.115 68.8934 444.339 Q69.5375 445.562 69.5375 446.851 Q69.5375 449.041 68.3137 450.747 Q67.0899 452.454 64.9965 452.454 Q63.2252 452.454 62.1302 451.359 Q61.0352 450.232 61.0352 448.847 Q61.0352 447.849 61.6471 447.14 Q62.259 446.4 63.3218 446.4 Q63.7727 446.4 64.288 446.561 Q64.8033 446.722 65.383 447.076 Q65.9949 447.43 66.4136 448.203 Q66.8322 448.976 66.8967 450.039 Q68.0883 448.783 68.0883 446.851 Q68.0883 446.239 67.8306 445.691 Q67.6052 445.144 67.0255 444.693 Q66.4458 444.21 65.8661 443.855 Q65.3186 443.501 64.2558 443.147 Q63.2252 442.793 62.4522 442.567 Q61.6793 442.342 60.2945 442.052 Q58.9096 441.73 58.0722 441.569 Q57.2671 441.408 55.689 441.118 L29.6345 436.19 L29.6345 440.538 Q29.6345 441.311 29.6023 441.633 Q29.5701 441.923 29.409 442.149 Q29.2158 442.374 28.8293 442.374 Q28.2174 442.374 27.9598 442.116 Q27.6699 441.826 27.6377 441.504 Q27.5733 441.182 27.5733 440.409 L27.5733 435.836 Q19.4252 434.29 17.2352 433.678 Q14.9164 432.97 13.3061 431.875 Q11.6636 430.78 10.8907 429.556 Q10.1177 428.332 9.82787 427.334 Q9.50581 426.303 9.50581 425.305 Q9.50581 423.05 10.7296 421.311 Q11.9212 419.572 14.0468 419.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M39.5217 410.7 Q28.3784 410.7 19.393 406.545 Q15.6249 404.774 12.4687 402.294 Q9.31258 399.814 7.92772 398.172 Q6.54287 396.529 6.54287 396.078 Q6.54287 395.434 7.18699 395.402 Q7.50905 395.402 8.31419 396.272 Q19.1354 406.9 39.5217 406.867 Q59.9724 406.867 70.3749 396.529 Q71.5021 395.402 71.8564 395.402 Q72.5005 395.402 72.5005 396.078 Q72.5005 396.529 71.18 398.107 Q69.8596 399.685 66.8322 402.133 Q63.8049 404.581 60.1012 406.352 Q51.1158 410.7 39.5217 410.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M31.2126 357.545 Q33.0161 357.545 34.0467 358.672 Q35.0451 359.799 35.0451 361.087 Q35.0451 362.311 34.3365 362.955 Q33.628 363.599 32.7262 363.599 Q31.5024 363.599 30.4396 362.697 Q29.3768 361.796 29.1514 360.443 Q28.314 361.764 28.314 363.728 Q28.314 365.016 28.9904 366.144 Q29.6667 367.239 30.5362 367.915 Q31.4058 368.559 32.6618 369.139 Q33.8856 369.686 34.6264 369.912 Q35.3349 370.105 36.1079 370.266 L45.1255 372.52 Q49.4089 373.615 50.9225 373.615 Q52.7905 373.615 54.0465 372.714 Q55.2703 371.812 55.2703 370.008 Q55.2703 369.3 55.0771 368.495 Q54.8517 367.689 54.272 366.659 Q53.66 365.596 52.7583 364.662 Q51.8243 363.696 50.2462 362.762 Q48.6681 361.828 46.6392 361.216 Q45.9306 361.023 45.9306 360.379 Q45.9306 359.574 46.5748 359.574 Q47.1223 359.574 48.2817 360.024 Q49.4089 360.443 50.8903 361.377 Q52.3396 362.279 53.66 363.47 Q54.9483 364.662 55.85 366.433 Q56.7518 368.205 56.7518 370.137 Q56.7518 372.907 55.2703 374.742 Q53.7889 376.578 51.7277 377.255 Q52.0175 377.416 52.404 377.641 Q52.7905 377.866 53.66 378.543 Q54.4974 379.187 55.1415 379.928 Q55.7534 380.668 56.2365 381.828 Q56.7518 382.955 56.7518 384.179 Q56.7518 385.725 56.3009 387.11 Q55.85 388.462 54.8195 389.428 Q53.7889 390.395 52.3718 390.395 Q50.7937 390.395 49.6987 389.332 Q48.5715 388.237 48.5715 386.755 Q48.5715 385.821 49.119 385.081 Q49.6665 384.308 50.8581 384.308 Q52.1786 384.308 53.177 385.209 Q54.1753 386.111 54.433 387.399 Q55.2703 386.079 55.2703 384.114 Q55.2703 381.989 53.4024 380.314 Q51.5345 378.639 48.4105 377.834 Q40.9065 375.837 37.5571 375.065 Q34.1755 374.292 32.7262 374.292 Q31.3736 374.292 30.4396 374.646 Q29.5057 375 29.087 375.612 Q28.6361 376.192 28.4751 376.739 Q28.314 377.255 28.314 377.834 Q28.314 378.8 28.7005 379.895 Q29.087 380.958 29.9887 382.246 Q30.8583 383.502 32.6618 384.694 Q34.4654 385.886 36.9452 386.691 Q37.6859 386.852 37.6859 387.56 Q37.6537 388.333 37.0096 388.333 Q36.4621 388.333 35.3349 387.915 Q34.1755 387.464 32.7262 386.562 Q31.277 385.628 29.9887 384.436 Q28.6683 383.213 27.7665 381.441 Q26.8648 379.638 26.8648 377.705 Q26.8648 376.836 27.058 375.998 Q27.219 375.129 27.7021 374.098 Q28.1852 373.036 29.248 372.102 Q30.3108 371.168 31.8567 370.588 Q31.1159 370.201 30.4074 369.686 Q29.6989 369.139 28.8293 368.301 Q27.9276 367.432 27.4123 366.24 Q26.8648 365.016 26.8648 363.664 Q26.8648 362.343 27.219 361.055 Q27.5411 359.767 28.6039 358.672 Q29.6345 357.545 31.2126 357.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M54.9483 352.116 Q53.8855 353.05 52.5006 353.05 Q51.1158 353.05 50.0852 352.149 Q49.0224 351.215 49.0224 349.54 Q49.0224 347.575 50.9225 346.448 Q52.7905 345.321 55.9467 345.321 Q59.3605 345.321 62.5167 346.706 Q65.705 348.091 67.2187 349.443 Q68.7324 350.796 68.7324 351.343 Q68.7324 351.988 68.0239 351.988 Q67.7662 351.988 67.2831 351.537 Q62.1946 346.802 55.9467 346.77 Q54.9483 346.77 54.9483 346.899 L55.0771 347.06 Q56.0111 348.187 56.0111 349.54 Q56.0111 351.182 54.9483 352.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M28.314 304.257 Q29.2158 304.257 29.4412 304.675 Q29.6345 305.094 29.6345 306.254 L29.6345 312.437 L49.0868 317.332 Q50.7937 317.719 52.243 317.719 Q53.8533 317.719 54.5618 317.236 Q55.2703 316.72 55.2703 315.658 Q55.2703 313.564 53.3702 311.31 Q51.47 309.023 46.8324 307.091 Q46.2205 306.833 46.0917 306.704 Q45.9306 306.543 45.9306 306.125 Q45.9306 305.32 46.5748 305.32 Q46.8002 305.32 47.8308 305.77 Q48.8614 306.189 50.375 307.123 Q51.8887 308.025 53.3058 309.216 Q54.7228 310.376 55.7534 312.147 Q56.7518 313.919 56.7518 315.819 Q56.7518 318.492 55.0449 320.199 Q53.338 321.873 50.6649 321.873 Q49.7953 321.873 47.0256 321.197 Q44.2237 320.521 29.6345 316.849 L29.6345 322.679 Q29.6345 323.484 29.6023 323.806 Q29.5701 324.096 29.409 324.321 Q29.2158 324.514 28.8293 324.514 Q28.2174 324.514 27.9598 324.257 Q27.6699 323.999 27.6377 323.677 Q27.5733 323.323 27.5733 322.517 L27.5733 316.334 L17.1064 313.758 Q16.0758 313.5 15.4961 312.856 Q14.8842 312.179 14.8198 311.793 Q14.7232 311.406 14.7232 311.117 Q14.7232 310.247 15.2062 309.732 Q15.6571 309.216 16.4945 309.216 Q16.9454 309.216 27.5733 311.922 L27.5733 306.125 Q27.5733 305.384 27.6055 305.094 Q27.6377 304.772 27.7987 304.514 Q27.9598 304.257 28.314 304.257 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M71.8564 299.099 Q71.5343 299.099 70.7292 298.262 Q59.908 287.634 39.5217 287.634 Q19.071 287.634 8.73287 297.843 Q7.54125 299.099 7.18699 299.099 Q6.54287 299.099 6.54287 298.455 Q6.54287 298.004 7.86331 296.426 Q9.18375 294.816 12.2111 292.4 Q15.2385 289.952 18.9421 288.149 Q27.9276 283.801 39.5217 283.801 Q50.6649 283.801 59.6503 287.956 Q63.4184 289.727 66.5746 292.207 Q69.7308 294.687 71.1156 296.329 Q72.5005 297.972 72.5005 298.455 Q72.5005 299.099 71.8564 299.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M524.71 39.389 Q524.71 40.3727 524.253 40.6186 Q523.797 40.8294 522.532 40.8294 L515.786 40.8294 L510.446 62.0502 Q510.024 63.9123 510.024 65.4933 Q510.024 67.25 510.551 68.0229 Q511.113 68.7958 512.273 68.7958 Q514.557 68.7958 517.016 66.723 Q519.51 64.6501 521.618 59.5908 Q521.899 58.9233 522.04 58.7827 Q522.216 58.6071 522.672 58.6071 Q523.551 58.6071 523.551 59.3098 Q523.551 59.5557 523.059 60.68 Q522.602 61.8042 521.583 63.4555 Q520.6 65.1068 519.3 66.6527 Q518.035 68.1986 516.102 69.3228 Q514.17 70.412 512.097 70.412 Q509.181 70.412 507.319 68.5499 Q505.492 66.6878 505.492 63.7717 Q505.492 62.8231 506.23 59.8016 Q506.968 56.745 510.973 40.8294 L504.614 40.8294 Q503.735 40.8294 503.384 40.7943 Q503.068 40.7592 502.822 40.5835 Q502.611 40.3727 502.611 39.9511 Q502.611 39.2836 502.892 39.0025 Q503.173 38.6863 503.525 38.6512 Q503.911 38.5809 504.789 38.5809 L511.535 38.5809 L514.346 27.1624 Q514.627 26.0382 515.329 25.4058 Q516.067 24.7382 516.489 24.668 Q516.91 24.5626 517.227 24.5626 Q518.175 24.5626 518.737 25.0896 Q519.3 25.5814 519.3 26.4949 Q519.3 26.9868 516.348 38.5809 L522.672 38.5809 Q523.48 38.5809 523.797 38.616 Q524.148 38.6512 524.429 38.8268 Q524.71 39.0025 524.71 39.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M548.28 58.6773 Q548.35 57.799 549.72 57.799 L593.813 57.799 Q595.886 57.799 595.921 58.6071 Q595.921 59.4854 593.954 59.4503 L550.212 59.4503 Q548.28 59.4854 548.28 58.6773 M548.28 44.6239 Q548.28 43.7455 549.791 43.7807 L593.743 43.7807 Q595.886 43.7807 595.921 44.6239 Q595.921 45.432 594.094 45.432 L549.72 45.432 Q548.28 45.432 548.28 44.6239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M623.659 46.5914 Q623.659 36.0161 626.329 30.2542 Q630.054 21.6816 638.837 21.6816 Q640.699 21.6816 642.631 22.2086 Q644.599 22.7005 647.058 24.6328 Q649.553 26.5652 651.063 29.7272 Q653.944 35.8405 653.944 46.5914 Q653.944 57.0963 651.274 62.8231 Q647.374 71.1849 638.767 71.1849 Q635.534 71.1849 632.232 69.5336 Q628.964 67.8824 626.892 63.9123 Q623.659 57.9747 623.659 46.5914 M629.632 45.713 Q629.632 56.5693 630.405 60.8908 Q631.283 65.5635 633.672 67.6013 Q636.097 69.6039 638.767 69.6039 Q641.648 69.6039 644.037 67.4608 Q646.461 65.2825 647.199 60.6097 Q648.007 56.0072 647.972 45.713 Q647.972 35.6999 647.269 31.6947 Q646.32 27.0219 643.791 25.1598 Q641.296 23.2626 638.767 23.2626 Q637.818 23.2626 636.799 23.5437 Q635.815 23.8247 634.375 24.6328 Q632.934 25.4409 631.81 27.4435 Q630.721 29.4461 630.194 32.4676 Q629.632 36.3675 629.632 45.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M660.373 68.4445 Q659.284 67.2851 659.284 65.7743 Q659.284 64.2636 660.373 63.1745 Q661.462 62.0502 663.114 62.0502 Q664.695 62.0502 665.749 63.1042 Q666.838 64.1231 666.838 65.8095 Q666.838 67.4608 665.679 68.5499 Q664.554 69.6039 663.114 69.6039 Q661.462 69.6039 660.373 68.4445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M679.08 46.5914 Q679.08 36.0161 681.75 30.2542 Q685.474 21.6816 694.257 21.6816 Q696.12 21.6816 698.052 22.2086 Q700.019 22.7005 702.479 24.6328 Q704.973 26.5652 706.484 29.7272 Q709.365 35.8405 709.365 46.5914 Q709.365 57.0963 706.695 62.8231 Q702.795 71.1849 694.187 71.1849 Q690.955 71.1849 687.652 69.5336 Q684.385 67.8824 682.312 63.9123 Q679.08 57.9747 679.08 46.5914 M685.052 45.713 Q685.052 56.5693 685.825 60.8908 Q686.704 65.5635 689.093 67.6013 Q691.517 69.6039 694.187 69.6039 Q697.068 69.6039 699.457 67.4608 Q701.881 65.2825 702.619 60.6097 Q703.427 56.0072 703.392 45.713 Q703.392 35.6999 702.69 31.6947 Q701.741 27.0219 699.211 25.1598 Q696.717 23.2626 694.187 23.2626 Q693.239 23.2626 692.22 23.5437 Q691.236 23.8247 689.796 24.6328 Q688.355 25.4409 687.231 27.4435 Q686.142 29.4461 685.615 32.4676 Q685.052 36.3675 685.052 45.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M714.993 58.0098 Q714.993 55.8667 716.152 55.0586 Q717.312 54.2154 718.541 54.2154 Q720.193 54.2154 721.141 55.2694 Q722.125 56.2883 722.125 57.7287 Q722.125 59.1692 721.141 60.2232 Q720.193 61.2421 718.541 61.2421 Q717.733 61.2421 717.312 61.1016 Q718.26 64.4041 721.141 66.7932 Q724.057 69.1823 727.887 69.1823 Q732.7 69.1823 735.581 64.5095 Q737.303 61.488 737.303 54.637 Q737.303 48.594 736.003 45.5725 Q734 40.97 729.889 40.97 Q724.057 40.97 720.614 45.9941 Q720.193 46.6265 719.701 46.6616 Q718.998 46.6616 718.822 46.2752 Q718.682 45.8536 718.682 44.7644 L718.682 23.4734 Q718.682 21.7519 719.384 21.7519 Q719.666 21.7519 720.263 21.9627 Q724.795 23.9653 729.819 24.0004 Q734.984 24.0004 739.621 21.8924 Q739.973 21.6816 740.184 21.6816 Q740.886 21.6816 740.921 22.4897 Q740.921 22.7707 740.324 23.6139 Q739.762 24.422 738.532 25.5112 Q737.303 26.5652 735.722 27.5841 Q734.141 28.6029 731.822 29.3056 Q729.538 29.9731 727.008 29.9731 Q723.987 29.9731 720.895 29.0245 L720.895 43.0429 Q724.619 39.389 730.03 39.389 Q735.792 39.389 739.762 44.0266 Q743.732 48.6643 743.732 55.1288 Q743.732 61.9096 739.024 66.5473 Q734.351 71.1849 728.027 71.1849 Q722.265 71.1849 718.612 67.0743 Q714.993 62.9637 714.993 58.0098 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip412)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,604.92 257.894,604.92 259.746,604.92 261.599,604.92 263.452,604.92 265.305,604.92 267.158,604.92 269.011,604.92 270.864,604.92 272.717,604.92 \n",
" 274.569,604.92 276.422,604.92 278.275,604.92 280.128,604.92 281.981,604.92 283.834,604.92 285.687,604.92 287.539,604.92 289.392,604.92 291.245,604.92 \n",
" 293.098,604.92 294.951,604.92 296.804,604.92 298.657,604.92 300.51,604.92 302.362,604.92 304.215,604.92 306.068,604.92 307.921,604.92 309.774,604.92 \n",
" 311.627,604.92 313.48,604.919 315.332,604.919 317.185,604.919 319.038,604.919 320.891,604.919 322.744,604.919 324.597,604.919 326.45,604.919 328.303,604.918 \n",
" 330.155,604.918 332.008,604.918 333.861,604.918 335.714,604.917 337.567,604.917 339.42,604.916 341.273,604.916 343.126,604.915 344.978,604.914 346.831,604.913 \n",
" 348.684,604.912 350.537,604.911 352.39,604.909 354.243,604.907 356.096,604.905 357.948,604.903 359.801,604.901 361.654,604.898 363.507,604.894 365.36,604.89 \n",
" 367.213,604.886 369.066,604.881 370.919,604.875 372.771,604.869 374.624,604.861 376.477,604.853 378.33,604.843 380.183,604.832 382.036,604.819 383.889,604.805 \n",
" 385.741,604.789 387.594,604.771 389.447,604.751 391.3,604.728 393.153,604.702 395.006,604.673 396.859,604.64 398.712,604.603 400.564,604.562 402.417,604.516 \n",
" 404.27,604.464 406.123,604.407 407.976,604.342 409.829,604.27 411.682,604.19 413.535,604.1 415.387,604.001 417.24,603.89 419.093,603.768 420.946,603.632 \n",
" 422.799,603.481 424.652,603.315 426.505,603.131 428.357,602.928 430.21,602.704 432.063,602.457 433.916,602.186 435.769,601.888 437.622,601.561 439.475,601.202 \n",
" 441.328,600.809 443.18,600.379 445.033,599.909 446.886,599.396 448.739,598.836 450.592,598.226 452.445,597.563 454.298,596.842 456.151,596.059 458.003,595.21 \n",
" 459.856,594.29 461.709,593.295 463.562,592.22 465.415,591.058 467.268,589.806 469.121,588.457 470.973,587.005 472.826,585.445 474.679,583.77 476.532,581.974 \n",
" 478.385,580.051 480.238,577.993 482.091,575.794 483.944,573.447 485.796,570.945 487.649,568.28 489.502,565.446 491.355,562.436 493.208,559.241 495.061,555.856 \n",
" 496.914,552.272 498.766,548.483 500.619,544.481 502.472,540.261 504.325,535.815 506.178,531.137 508.031,526.221 509.884,521.062 511.737,515.653 513.589,509.991 \n",
" 515.442,504.07 517.295,497.888 519.148,491.44 521.001,484.723 522.854,477.737 524.707,470.478 526.56,462.948 528.412,455.146 530.265,447.073 532.118,438.73 \n",
" 533.971,430.122 535.824,421.252 537.677,412.125 539.53,402.746 541.382,393.123 543.235,383.264 545.088,373.177 546.941,362.874 548.794,352.365 550.647,341.664 \n",
" 552.5,330.783 554.353,319.738 556.205,308.544 558.058,297.219 559.911,285.78 561.764,274.247 563.617,262.64 565.47,250.98 567.323,239.288 569.175,227.587 \n",
" 571.028,215.901 572.881,204.254 574.734,192.671 576.587,181.176 578.44,169.797 580.293,158.559 582.146,147.488 583.998,136.611 585.851,125.955 587.704,115.545 \n",
" 589.557,105.41 591.41,95.5736 593.263,86.063 595.116,76.903 596.969,68.1185 598.821,59.7333 600.674,51.7705 602.527,44.2523 604.38,37.2 606.233,30.6335 \n",
" 608.086,24.5717 609.939,19.0322 611.791,14.0309 613.644,9.58257 615.497,5.70027 617.35,2.39549 619.203,-0.321982 621.056,-2.44404 622.909,-3.96435 624.762,-4.87836 \n",
" 626.614,-5.18334 628.467,-4.87836 630.32,-3.96435 632.173,-2.44404 634.026,-0.321982 635.879,2.39549 637.732,5.70027 639.584,9.58257 641.437,14.0309 643.29,19.0322 \n",
" 645.143,24.5717 646.996,30.6335 648.849,37.2 650.702,44.2523 652.555,51.7705 654.407,59.7333 656.26,68.1185 658.113,76.903 659.966,86.063 661.819,95.5736 \n",
" 663.672,105.41 665.525,115.545 667.378,125.955 669.23,136.611 671.083,147.488 672.936,158.559 674.789,169.797 676.642,181.176 678.495,192.671 680.348,204.254 \n",
" 682.2,215.901 684.053,227.587 685.906,239.288 687.759,250.98 689.612,262.64 691.465,274.247 693.318,285.78 695.171,297.219 697.023,308.544 698.876,319.738 \n",
" 700.729,330.783 702.582,341.664 704.435,352.365 706.288,362.874 708.141,373.177 709.994,383.264 711.846,393.123 713.699,402.746 715.552,412.125 717.405,421.252 \n",
" 719.258,430.122 721.111,438.73 722.964,447.073 724.816,455.146 726.669,462.948 728.522,470.478 730.375,477.737 732.228,484.723 734.081,491.44 735.934,497.888 \n",
" 737.787,504.07 739.639,509.991 741.492,515.653 743.345,521.062 745.198,526.221 747.051,531.137 748.904,535.815 750.757,540.261 752.609,544.481 754.462,548.483 \n",
" 756.315,552.272 758.168,555.856 760.021,559.241 761.874,562.436 763.727,565.446 765.58,568.28 767.432,570.945 769.285,573.447 771.138,575.794 772.991,577.993 \n",
" 774.844,580.051 776.697,581.974 778.55,583.77 780.403,585.445 782.255,587.005 784.108,588.457 785.961,589.806 787.814,591.058 789.667,592.22 791.52,593.295 \n",
" 793.373,594.29 795.225,595.21 797.078,596.059 798.931,596.842 800.784,597.563 802.637,598.226 804.49,598.836 806.343,599.396 808.196,599.909 810.048,600.379 \n",
" 811.901,600.809 813.754,601.202 815.607,601.561 817.46,601.888 819.313,602.186 821.166,602.457 823.018,602.704 824.871,602.928 826.724,603.131 828.577,603.315 \n",
" 830.43,603.481 832.283,603.632 834.136,603.768 835.989,603.89 837.841,604.001 839.694,604.1 841.547,604.19 843.4,604.27 845.253,604.342 847.106,604.407 \n",
" 848.959,604.464 850.812,604.516 852.664,604.562 854.517,604.603 856.37,604.64 858.223,604.673 860.076,604.702 861.929,604.728 863.782,604.751 865.634,604.771 \n",
" 867.487,604.789 869.34,604.805 871.193,604.819 873.046,604.832 874.899,604.843 876.752,604.853 878.605,604.861 880.457,604.869 882.31,604.875 884.163,604.881 \n",
" 886.016,604.886 887.869,604.89 889.722,604.894 891.575,604.898 893.428,604.901 895.28,604.903 897.133,604.905 898.986,604.907 900.839,604.909 902.692,604.911 \n",
" 904.545,604.912 906.398,604.913 908.25,604.914 910.103,604.915 911.956,604.916 913.809,604.916 915.662,604.917 917.515,604.917 919.368,604.918 921.221,604.918 \n",
" 923.073,604.918 924.926,604.918 926.779,604.919 928.632,604.919 930.485,604.919 932.338,604.919 934.191,604.919 936.043,604.919 937.896,604.919 939.749,604.919 \n",
" 941.602,604.92 943.455,604.92 945.308,604.92 947.161,604.92 949.014,604.92 950.866,604.92 952.719,604.92 954.572,604.92 956.425,604.92 958.278,604.92 \n",
" 960.131,604.92 961.984,604.92 963.837,604.92 965.689,604.92 967.542,604.92 969.395,604.92 971.248,604.92 973.101,604.92 974.954,604.92 976.807,604.92 \n",
" 978.659,604.92 980.512,604.92 982.365,604.92 984.218,604.92 986.071,604.92 987.924,604.92 989.777,604.92 991.63,604.92 993.482,604.92 995.335,604.92 \n",
" 997.188,604.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M1300.47 604.92 L2086.09 604.92 L2086.09 121.312 L1300.47 121.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip413\">\n",
" <rect x=\"1300\" y=\"121\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1322.71,604.92 1322.71,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1507.99,604.92 1507.99,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1693.28,604.92 1693.28,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1878.57,604.92 1878.57,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2063.85,604.92 2063.85,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,604.92 2086.09,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,604.92 1322.71,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1507.99,604.92 1507.99,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1693.28,604.92 1693.28,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1878.57,604.92 1878.57,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2063.85,604.92 2063.85,586.022 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1292.65 656.891 L1322.33 656.891 L1322.33 660.826 L1292.65 660.826 L1292.65 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1336.45 669.785 L1352.77 669.785 L1352.77 673.72 L1330.82 673.72 L1330.82 669.785 Q1333.48 667.03 1338.07 662.4 Q1342.67 657.748 1343.85 656.405 Q1346.1 653.882 1346.98 652.146 Q1347.88 650.387 1347.88 648.697 Q1347.88 645.942 1345.94 644.206 Q1344.02 642.47 1340.91 642.47 Q1338.71 642.47 1336.26 643.234 Q1333.83 643.998 1331.05 645.549 L1331.05 640.827 Q1333.88 639.692 1336.33 639.114 Q1338.78 638.535 1340.82 638.535 Q1346.19 638.535 1349.39 641.22 Q1352.58 643.905 1352.58 648.396 Q1352.58 650.526 1351.77 652.447 Q1350.98 654.345 1348.88 656.938 Q1348.3 657.609 1345.2 660.826 Q1342.09 664.021 1336.45 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1477.75 656.891 L1507.43 656.891 L1507.43 660.826 L1477.75 660.826 L1477.75 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1518.33 669.785 L1525.97 669.785 L1525.97 643.419 L1517.66 645.086 L1517.66 640.827 L1525.92 639.16 L1530.6 639.16 L1530.6 669.785 L1538.24 669.785 L1538.24 673.72 L1518.33 673.72 L1518.33 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1693.28 642.239 Q1689.67 642.239 1687.84 645.803 Q1686.04 649.345 1686.04 656.475 Q1686.04 663.581 1687.84 667.146 Q1689.67 670.687 1693.28 670.687 Q1696.92 670.687 1698.72 667.146 Q1700.55 663.581 1700.55 656.475 Q1700.55 649.345 1698.72 645.803 Q1696.92 642.239 1693.28 642.239 M1693.28 638.535 Q1699.09 638.535 1702.15 643.141 Q1705.23 647.725 1705.23 656.475 Q1705.23 665.201 1702.15 669.808 Q1699.09 674.391 1693.28 674.391 Q1687.47 674.391 1684.39 669.808 Q1681.34 665.201 1681.34 656.475 Q1681.34 647.725 1684.39 643.141 Q1687.47 638.535 1693.28 638.535 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1868.95 669.785 L1876.59 669.785 L1876.59 643.419 L1868.28 645.086 L1868.28 640.827 L1876.54 639.16 L1881.22 639.16 L1881.22 669.785 L1888.86 669.785 L1888.86 673.72 L1868.95 673.72 L1868.95 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2058.51 669.785 L2074.83 669.785 L2074.83 673.72 L2052.88 673.72 L2052.88 669.785 Q2055.54 667.03 2060.13 662.4 Q2064.73 657.748 2065.91 656.405 Q2068.16 653.882 2069.04 652.146 Q2069.94 650.387 2069.94 648.697 Q2069.94 645.942 2068 644.206 Q2066.08 642.47 2062.98 642.47 Q2060.78 642.47 2058.32 643.234 Q2055.89 643.998 2053.11 645.549 L2053.11 640.827 Q2055.94 639.692 2058.39 639.114 Q2060.85 638.535 2062.88 638.535 Q2068.25 638.535 2071.45 641.22 Q2074.64 643.905 2074.64 648.396 Q2074.64 650.526 2073.83 652.447 Q2073.04 654.345 2070.94 656.938 Q2070.36 657.609 2067.26 660.826 Q2064.16 664.021 2058.51 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1707.46 722.536 Q1707.46 724.339 1706.33 725.37 Q1705.2 726.368 1703.92 726.368 Q1702.69 726.368 1702.05 725.66 Q1701.4 724.951 1701.4 724.05 Q1701.4 722.826 1702.31 721.763 Q1703.21 720.7 1704.56 720.475 Q1703.24 719.637 1701.28 719.637 Q1699.99 719.637 1698.86 720.314 Q1697.77 720.99 1697.09 721.86 Q1696.44 722.729 1695.86 723.985 Q1695.32 725.209 1695.09 725.95 Q1694.9 726.658 1694.74 727.431 L1692.48 736.449 Q1691.39 740.732 1691.39 742.246 Q1691.39 744.114 1692.29 745.37 Q1693.19 746.594 1695 746.594 Q1695.7 746.594 1696.51 746.4 Q1697.31 746.175 1698.34 745.595 Q1699.41 744.983 1700.34 744.082 Q1701.31 743.148 1702.24 741.569 Q1703.18 739.991 1703.79 737.962 Q1703.98 737.254 1704.62 737.254 Q1705.43 737.254 1705.43 737.898 Q1705.43 738.446 1704.98 739.605 Q1704.56 740.732 1703.63 742.214 Q1702.72 743.663 1701.53 744.983 Q1700.34 746.272 1698.57 747.173 Q1696.8 748.075 1694.87 748.075 Q1692.1 748.075 1690.26 746.594 Q1688.43 745.112 1687.75 743.051 Q1687.59 743.341 1687.36 743.727 Q1687.14 744.114 1686.46 744.983 Q1685.82 745.821 1685.08 746.465 Q1684.34 747.077 1683.18 747.56 Q1682.05 748.075 1680.82 748.075 Q1679.28 748.075 1677.89 747.624 Q1676.54 747.173 1675.58 746.143 Q1674.61 745.112 1674.61 743.695 Q1674.61 742.117 1675.67 741.022 Q1676.77 739.895 1678.25 739.895 Q1679.18 739.895 1679.92 740.442 Q1680.7 740.99 1680.7 742.181 Q1680.7 743.502 1679.79 744.5 Q1678.89 745.499 1677.6 745.756 Q1678.92 746.594 1680.89 746.594 Q1683.01 746.594 1684.69 744.726 Q1686.36 742.858 1687.17 739.734 Q1689.17 732.23 1689.94 728.88 Q1690.71 725.499 1690.71 724.05 Q1690.71 722.697 1690.36 721.763 Q1690 720.829 1689.39 720.41 Q1688.81 719.959 1688.26 719.798 Q1687.75 719.637 1687.17 719.637 Q1686.2 719.637 1685.11 720.024 Q1684.05 720.41 1682.76 721.312 Q1681.5 722.182 1680.31 723.985 Q1679.12 725.789 1678.31 728.268 Q1678.15 729.009 1677.44 729.009 Q1676.67 728.977 1676.67 728.333 Q1676.67 727.785 1677.09 726.658 Q1677.54 725.499 1678.44 724.05 Q1679.38 722.6 1680.57 721.312 Q1681.79 719.992 1683.56 719.09 Q1685.37 718.188 1687.3 718.188 Q1688.17 718.188 1689.01 718.381 Q1689.87 718.542 1690.91 719.025 Q1691.97 719.508 1692.9 720.571 Q1693.84 721.634 1694.42 723.18 Q1694.8 722.439 1695.32 721.731 Q1695.86 721.022 1696.7 720.153 Q1697.57 719.251 1698.76 718.736 Q1699.99 718.188 1701.34 718.188 Q1702.66 718.188 1703.95 718.542 Q1705.24 718.864 1706.33 719.927 Q1707.46 720.958 1707.46 722.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,604.92 2086.09,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,508.198 2086.09,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,411.477 2086.09,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,314.755 2086.09,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,218.034 2086.09,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip413)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,121.312 2086.09,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,604.92 1300.47,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,604.92 1319.37,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,508.198 1319.37,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,411.477 1319.37,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,314.755 1319.37,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,218.034 1319.37,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,121.312 1319.37,121.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1195.3 590.719 Q1191.69 590.719 1189.86 594.283 Q1188.05 597.825 1188.05 604.955 Q1188.05 612.061 1189.86 615.626 Q1191.69 619.167 1195.3 619.167 Q1198.93 619.167 1200.74 615.626 Q1202.57 612.061 1202.57 604.955 Q1202.57 597.825 1200.74 594.283 Q1198.93 590.719 1195.3 590.719 M1195.3 587.015 Q1201.11 587.015 1204.16 591.621 Q1207.24 596.205 1207.24 604.955 Q1207.24 613.681 1204.16 618.288 Q1201.11 622.871 1195.3 622.871 Q1189.49 622.871 1186.41 618.288 Q1183.35 613.681 1183.35 604.955 Q1183.35 596.205 1186.41 591.621 Q1189.49 587.015 1195.3 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 616.32 L1220.34 616.32 L1220.34 622.2 L1215.46 622.2 L1215.46 616.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 590.719 Q1236.92 590.719 1235.09 594.283 Q1233.28 597.825 1233.28 604.955 Q1233.28 612.061 1235.09 615.626 Q1236.92 619.167 1240.53 619.167 Q1244.16 619.167 1245.97 615.626 Q1247.8 612.061 1247.8 604.955 Q1247.8 597.825 1245.97 594.283 Q1244.16 590.719 1240.53 590.719 M1240.53 587.015 Q1246.34 587.015 1249.39 591.621 Q1252.47 596.205 1252.47 604.955 Q1252.47 613.681 1249.39 618.288 Q1246.34 622.871 1240.53 622.871 Q1234.72 622.871 1231.64 618.288 Q1228.58 613.681 1228.58 604.955 Q1228.58 596.205 1231.64 591.621 Q1234.72 587.015 1240.53 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1196.89 493.997 Q1193.28 493.997 1191.45 497.562 Q1189.65 501.103 1189.65 508.233 Q1189.65 515.339 1191.45 518.904 Q1193.28 522.446 1196.89 522.446 Q1200.53 522.446 1202.33 518.904 Q1204.16 515.339 1204.16 508.233 Q1204.16 501.103 1202.33 497.562 Q1200.53 493.997 1196.89 493.997 M1196.89 490.293 Q1202.7 490.293 1205.76 494.9 Q1208.84 499.483 1208.84 508.233 Q1208.84 516.96 1205.76 521.566 Q1202.7 526.15 1196.89 526.15 Q1191.08 526.15 1188.01 521.566 Q1184.95 516.96 1184.95 508.233 Q1184.95 499.483 1188.01 494.9 Q1191.08 490.293 1196.89 490.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1217.06 519.599 L1221.94 519.599 L1221.94 525.478 L1217.06 525.478 L1217.06 519.599 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1236.15 521.543 L1252.47 521.543 L1252.47 525.478 L1230.53 525.478 L1230.53 521.543 Q1233.19 518.789 1237.77 514.159 Q1242.38 509.506 1243.56 508.164 Q1245.81 505.64 1246.69 503.904 Q1247.59 502.145 1247.59 500.455 Q1247.59 497.701 1245.64 495.965 Q1243.72 494.228 1240.62 494.228 Q1238.42 494.228 1235.97 494.992 Q1233.54 495.756 1230.76 497.307 L1230.76 492.585 Q1233.58 491.451 1236.04 490.872 Q1238.49 490.293 1240.53 490.293 Q1245.9 490.293 1249.09 492.978 Q1252.29 495.664 1252.29 500.154 Q1252.29 502.284 1251.48 504.205 Q1250.69 506.103 1248.58 508.696 Q1248.01 509.367 1244.9 512.585 Q1241.8 515.779 1236.15 521.543 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1194.81 397.275 Q1191.2 397.275 1189.37 400.84 Q1187.57 404.382 1187.57 411.511 Q1187.57 418.618 1189.37 422.183 Q1191.2 425.724 1194.81 425.724 Q1198.45 425.724 1200.25 422.183 Q1202.08 418.618 1202.08 411.511 Q1202.08 404.382 1200.25 400.84 Q1198.45 397.275 1194.81 397.275 M1194.81 393.572 Q1200.62 393.572 1203.68 398.178 Q1206.76 402.762 1206.76 411.511 Q1206.76 420.238 1203.68 424.845 Q1200.62 429.428 1194.81 429.428 Q1189 429.428 1185.92 424.845 Q1182.87 420.238 1182.87 411.511 Q1182.87 402.762 1185.92 398.178 Q1189 393.572 1194.81 393.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1214.97 422.877 L1219.86 422.877 L1219.86 428.757 L1214.97 428.757 L1214.97 422.877 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1242.89 398.271 L1231.08 416.72 L1242.89 416.72 L1242.89 398.271 M1241.66 394.197 L1247.54 394.197 L1247.54 416.72 L1252.47 416.72 L1252.47 420.609 L1247.54 420.609 L1247.54 428.757 L1242.89 428.757 L1242.89 420.609 L1227.29 420.609 L1227.29 416.095 L1241.66 394.197 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.14 300.554 Q1191.52 300.554 1189.7 304.119 Q1187.89 307.66 1187.89 314.79 Q1187.89 321.896 1189.7 325.461 Q1191.52 329.003 1195.14 329.003 Q1198.77 329.003 1200.58 325.461 Q1202.4 321.896 1202.4 314.79 Q1202.4 307.66 1200.58 304.119 Q1198.77 300.554 1195.14 300.554 M1195.14 296.85 Q1200.95 296.85 1204 301.457 Q1207.08 306.04 1207.08 314.79 Q1207.08 323.517 1204 328.123 Q1200.95 332.707 1195.14 332.707 Q1189.33 332.707 1186.25 328.123 Q1183.19 323.517 1183.19 314.79 Q1183.19 306.04 1186.25 301.457 Q1189.33 296.85 1195.14 296.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.3 326.156 L1220.18 326.156 L1220.18 332.035 L1215.3 332.035 L1215.3 326.156 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.95 312.892 Q1237.8 312.892 1235.95 315.045 Q1234.12 317.197 1234.12 320.947 Q1234.12 324.674 1235.95 326.85 Q1237.8 329.003 1240.95 329.003 Q1244.09 329.003 1245.92 326.85 Q1247.77 324.674 1247.77 320.947 Q1247.77 317.197 1245.92 315.045 Q1244.09 312.892 1240.95 312.892 M1250.23 298.239 L1250.23 302.498 Q1248.47 301.665 1246.66 301.225 Q1244.88 300.785 1243.12 300.785 Q1238.49 300.785 1236.04 303.91 Q1233.61 307.035 1233.26 313.355 Q1234.63 311.341 1236.69 310.276 Q1238.75 309.188 1241.22 309.188 Q1246.43 309.188 1249.44 312.359 Q1252.47 315.508 1252.47 320.947 Q1252.47 326.271 1249.32 329.489 Q1246.18 332.707 1240.95 332.707 Q1234.95 332.707 1231.78 328.123 Q1228.61 323.517 1228.61 314.79 Q1228.61 306.596 1232.5 301.734 Q1236.39 296.85 1242.94 296.85 Q1244.7 296.85 1246.48 297.197 Q1248.28 297.545 1250.23 298.239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.39 203.832 Q1191.78 203.832 1189.95 207.397 Q1188.14 210.939 1188.14 218.068 Q1188.14 225.175 1189.95 228.74 Q1191.78 232.281 1195.39 232.281 Q1199.02 232.281 1200.83 228.74 Q1202.66 225.175 1202.66 218.068 Q1202.66 210.939 1200.83 207.397 Q1199.02 203.832 1195.39 203.832 M1195.39 200.129 Q1201.2 200.129 1204.26 204.735 Q1207.33 209.318 1207.33 218.068 Q1207.33 226.795 1204.26 231.402 Q1201.2 235.985 1195.39 235.985 Q1189.58 235.985 1186.5 231.402 Q1183.45 226.795 1183.45 218.068 Q1183.45 209.318 1186.5 204.735 Q1189.58 200.129 1195.39 200.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.55 229.434 L1220.44 229.434 L1220.44 235.314 L1215.55 235.314 L1215.55 229.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.62 218.902 Q1237.29 218.902 1235.37 220.684 Q1233.47 222.467 1233.47 225.591 Q1233.47 228.716 1235.37 230.499 Q1237.29 232.281 1240.62 232.281 Q1243.95 232.281 1245.88 230.499 Q1247.8 228.693 1247.8 225.591 Q1247.8 222.467 1245.88 220.684 Q1243.98 218.902 1240.62 218.902 M1235.95 216.911 Q1232.94 216.17 1231.25 214.11 Q1229.58 212.05 1229.58 209.087 Q1229.58 204.943 1232.52 202.536 Q1235.48 200.129 1240.62 200.129 Q1245.78 200.129 1248.72 202.536 Q1251.66 204.943 1251.66 209.087 Q1251.66 212.05 1249.97 214.11 Q1248.31 216.17 1245.32 216.911 Q1248.7 217.698 1250.57 219.99 Q1252.47 222.281 1252.47 225.591 Q1252.47 230.615 1249.39 233.3 Q1246.34 235.985 1240.62 235.985 Q1234.9 235.985 1231.82 233.3 Q1228.77 230.615 1228.77 225.591 Q1228.77 222.281 1230.67 219.99 Q1232.57 217.698 1235.95 216.911 M1234.23 209.527 Q1234.23 212.212 1235.9 213.717 Q1237.59 215.221 1240.62 215.221 Q1243.63 215.221 1245.32 213.717 Q1247.03 212.212 1247.03 209.527 Q1247.03 206.842 1245.32 205.337 Q1243.63 203.832 1240.62 203.832 Q1237.59 203.832 1235.9 205.337 Q1234.23 206.842 1234.23 209.527 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1186.11 134.657 L1193.75 134.657 L1193.75 108.291 L1185.44 109.958 L1185.44 105.699 L1193.7 104.032 L1198.38 104.032 L1198.38 134.657 L1206.01 134.657 L1206.01 138.592 L1186.11 138.592 L1186.11 134.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 132.713 L1220.34 132.713 L1220.34 138.592 L1215.46 138.592 L1215.46 132.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 107.111 Q1236.92 107.111 1235.09 110.676 Q1233.28 114.217 1233.28 121.347 Q1233.28 128.453 1235.09 132.018 Q1236.92 135.56 1240.53 135.56 Q1244.16 135.56 1245.97 132.018 Q1247.8 128.453 1247.8 121.347 Q1247.8 114.217 1245.97 110.676 Q1244.16 107.111 1240.53 107.111 M1240.53 103.407 Q1246.34 103.407 1249.39 108.014 Q1252.47 112.597 1252.47 121.347 Q1252.47 130.074 1249.39 134.68 Q1246.34 139.263 1240.53 139.263 Q1234.72 139.263 1231.64 134.68 Q1228.58 130.074 1228.58 121.347 Q1228.58 112.597 1231.64 108.014 Q1234.72 103.407 1240.53 103.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1080.71 419.572 Q1082.48 419.572 1083.58 420.699 Q1084.67 421.794 1084.67 423.179 Q1084.67 424.178 1084.06 424.918 Q1083.45 425.627 1082.39 425.627 Q1081.29 425.627 1080.13 424.79 Q1078.97 423.952 1078.81 422.052 Q1077.62 423.308 1077.62 425.305 Q1077.62 426.303 1078.27 427.141 Q1078.88 427.946 1079.88 428.397 Q1080.91 428.88 1086.74 429.975 Q1088.64 430.329 1090.47 430.651 Q1092.31 430.973 1094.24 431.36 L1094.24 425.885 Q1094.24 425.176 1094.27 424.886 Q1094.3 424.596 1094.47 424.371 Q1094.63 424.113 1094.98 424.113 Q1095.88 424.113 1096.11 424.532 Q1096.3 424.918 1096.3 426.078 L1096.3 431.746 L1117.2 435.707 Q1117.81 435.804 1119.75 436.223 Q1121.65 436.609 1124.77 437.543 Q1127.93 438.477 1129.8 439.411 Q1130.86 439.926 1131.86 440.603 Q1132.89 441.247 1133.92 442.181 Q1134.95 443.115 1135.56 444.339 Q1136.2 445.562 1136.2 446.851 Q1136.2 449.041 1134.98 450.747 Q1133.76 452.454 1131.66 452.454 Q1129.89 452.454 1128.8 451.359 Q1127.7 450.232 1127.7 448.847 Q1127.7 447.849 1128.31 447.14 Q1128.93 446.4 1129.99 446.4 Q1130.44 446.4 1130.95 446.561 Q1131.47 446.722 1132.05 447.076 Q1132.66 447.43 1133.08 448.203 Q1133.5 448.976 1133.56 450.039 Q1134.75 448.783 1134.75 446.851 Q1134.75 446.239 1134.5 445.691 Q1134.27 445.144 1133.69 444.693 Q1133.11 444.21 1132.53 443.855 Q1131.99 443.501 1130.92 443.147 Q1129.89 442.793 1129.12 442.567 Q1128.35 442.342 1126.96 442.052 Q1125.58 441.73 1124.74 441.569 Q1123.93 441.408 1122.36 441.118 L1096.3 436.19 L1096.3 440.538 Q1096.3 441.311 1096.27 441.633 Q1096.24 441.923 1096.08 442.149 Q1095.88 442.374 1095.5 442.374 Q1094.88 442.374 1094.63 442.116 Q1094.34 441.826 1094.3 441.504 Q1094.24 441.182 1094.24 440.409 L1094.24 435.836 Q1086.09 434.29 1083.9 433.678 Q1081.58 432.97 1079.97 431.875 Q1078.33 430.78 1077.56 429.556 Q1076.78 428.332 1076.49 427.334 Q1076.17 426.303 1076.17 425.305 Q1076.17 423.05 1077.4 421.311 Q1078.59 419.572 1080.71 419.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1106.19 410.7 Q1095.05 410.7 1086.06 406.545 Q1082.29 404.774 1079.14 402.294 Q1075.98 399.814 1074.59 398.172 Q1073.21 396.529 1073.21 396.078 Q1073.21 395.434 1073.85 395.402 Q1074.18 395.402 1074.98 396.272 Q1085.8 406.9 1106.19 406.867 Q1126.64 406.867 1137.04 396.529 Q1138.17 395.402 1138.52 395.402 Q1139.17 395.402 1139.17 396.078 Q1139.17 396.529 1137.85 398.107 Q1136.53 399.685 1133.5 402.133 Q1130.47 404.581 1126.77 406.352 Q1117.78 410.7 1106.19 410.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1097.88 357.545 Q1099.68 357.545 1100.71 358.672 Q1101.71 359.799 1101.71 361.087 Q1101.71 362.311 1101 362.955 Q1100.29 363.599 1099.39 363.599 Q1098.17 363.599 1097.11 362.697 Q1096.04 361.796 1095.82 360.443 Q1094.98 361.764 1094.98 363.728 Q1094.98 365.016 1095.66 366.144 Q1096.33 367.239 1097.2 367.915 Q1098.07 368.559 1099.33 369.139 Q1100.55 369.686 1101.29 369.912 Q1102 370.105 1102.77 370.266 L1111.79 372.52 Q1116.08 373.615 1117.59 373.615 Q1119.46 373.615 1120.71 372.714 Q1121.94 371.812 1121.94 370.008 Q1121.94 369.3 1121.74 368.495 Q1121.52 367.689 1120.94 366.659 Q1120.33 365.596 1119.42 364.662 Q1118.49 363.696 1116.91 362.762 Q1115.33 361.828 1113.31 361.216 Q1112.6 361.023 1112.6 360.379 Q1112.6 359.574 1113.24 359.574 Q1113.79 359.574 1114.95 360.024 Q1116.08 360.443 1117.56 361.377 Q1119.01 362.279 1120.33 363.47 Q1121.61 364.662 1122.52 366.433 Q1123.42 368.205 1123.42 370.137 Q1123.42 372.907 1121.94 374.742 Q1120.46 376.578 1118.39 377.255 Q1118.68 377.416 1119.07 377.641 Q1119.46 377.866 1120.33 378.543 Q1121.16 379.187 1121.81 379.928 Q1122.42 380.668 1122.9 381.828 Q1123.42 382.955 1123.42 384.179 Q1123.42 385.725 1122.97 387.11 Q1122.52 388.462 1121.49 389.428 Q1120.46 390.395 1119.04 390.395 Q1117.46 390.395 1116.37 389.332 Q1115.24 388.237 1115.24 386.755 Q1115.24 385.821 1115.79 385.081 Q1116.33 384.308 1117.52 384.308 Q1118.85 384.308 1119.84 385.209 Q1120.84 386.111 1121.1 387.399 Q1121.94 386.079 1121.94 384.114 Q1121.94 381.989 1120.07 380.314 Q1118.2 378.639 1115.08 377.834 Q1107.57 375.837 1104.22 375.065 Q1100.84 374.292 1099.39 374.292 Q1098.04 374.292 1097.11 374.646 Q1096.17 375 1095.75 375.612 Q1095.3 376.192 1095.14 376.739 Q1094.98 377.255 1094.98 377.834 Q1094.98 378.8 1095.37 379.895 Q1095.75 380.958 1096.66 382.246 Q1097.52 383.502 1099.33 384.694 Q1101.13 385.886 1103.61 386.691 Q1104.35 386.852 1104.35 387.56 Q1104.32 388.333 1103.68 388.333 Q1103.13 388.333 1102 387.915 Q1100.84 387.464 1099.39 386.562 Q1097.94 385.628 1096.66 384.436 Q1095.33 383.213 1094.43 381.441 Q1093.53 379.638 1093.53 377.705 Q1093.53 376.836 1093.72 375.998 Q1093.89 375.129 1094.37 374.098 Q1094.85 373.036 1095.91 372.102 Q1096.98 371.168 1098.52 370.588 Q1097.78 370.201 1097.07 369.686 Q1096.37 369.139 1095.5 368.301 Q1094.59 367.432 1094.08 366.24 Q1093.53 365.016 1093.53 363.664 Q1093.53 362.343 1093.89 361.055 Q1094.21 359.767 1095.27 358.672 Q1096.3 357.545 1097.88 357.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1121.61 352.116 Q1120.55 353.05 1119.17 353.05 Q1117.78 353.05 1116.75 352.149 Q1115.69 351.215 1115.69 349.54 Q1115.69 347.575 1117.59 346.448 Q1119.46 345.321 1122.61 345.321 Q1126.03 345.321 1129.18 346.706 Q1132.37 348.091 1133.89 349.443 Q1135.4 350.796 1135.4 351.343 Q1135.4 351.988 1134.69 351.988 Q1134.43 351.988 1133.95 351.537 Q1128.86 346.802 1122.61 346.77 Q1121.61 346.77 1121.61 346.899 L1121.74 347.06 Q1122.68 348.187 1122.68 349.54 Q1122.68 351.182 1121.61 352.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1094.98 304.257 Q1095.88 304.257 1096.11 304.675 Q1096.3 305.094 1096.3 306.254 L1096.3 312.437 L1115.75 317.332 Q1117.46 317.719 1118.91 317.719 Q1120.52 317.719 1121.23 317.236 Q1121.94 316.72 1121.94 315.658 Q1121.94 313.564 1120.04 311.31 Q1118.14 309.023 1113.5 307.091 Q1112.89 306.833 1112.76 306.704 Q1112.6 306.543 1112.6 306.125 Q1112.6 305.32 1113.24 305.32 Q1113.47 305.32 1114.5 305.77 Q1115.53 306.189 1117.04 307.123 Q1118.56 308.025 1119.97 309.216 Q1121.39 310.376 1122.42 312.147 Q1123.42 313.919 1123.42 315.819 Q1123.42 318.492 1121.71 320.199 Q1120 321.873 1117.33 321.873 Q1116.46 321.873 1113.69 321.197 Q1110.89 320.521 1096.3 316.849 L1096.3 322.679 Q1096.3 323.484 1096.27 323.806 Q1096.24 324.096 1096.08 324.321 Q1095.88 324.514 1095.5 324.514 Q1094.88 324.514 1094.63 324.257 Q1094.34 323.999 1094.3 323.677 Q1094.24 323.323 1094.24 322.517 L1094.24 316.334 L1083.77 313.758 Q1082.74 313.5 1082.16 312.856 Q1081.55 312.179 1081.49 311.793 Q1081.39 311.406 1081.39 311.117 Q1081.39 310.247 1081.87 309.732 Q1082.32 309.216 1083.16 309.216 Q1083.61 309.216 1094.24 311.922 L1094.24 306.125 Q1094.24 305.384 1094.27 305.094 Q1094.3 304.772 1094.47 304.514 Q1094.63 304.257 1094.98 304.257 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1138.52 299.099 Q1138.2 299.099 1137.4 298.262 Q1126.57 287.634 1106.19 287.634 Q1085.74 287.634 1075.4 297.843 Q1074.21 299.099 1073.85 299.099 Q1073.21 299.099 1073.21 298.455 Q1073.21 298.004 1074.53 296.426 Q1075.85 294.816 1078.88 292.4 Q1081.91 289.952 1085.61 288.149 Q1094.59 283.801 1106.19 283.801 Q1117.33 283.801 1126.32 287.956 Q1130.09 289.727 1133.24 292.207 Q1136.4 294.687 1137.78 296.329 Q1139.17 297.972 1139.17 298.455 Q1139.17 299.099 1138.52 299.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1599.4 39.389 Q1599.4 40.3727 1598.94 40.6186 Q1598.49 40.8294 1597.22 40.8294 L1590.48 40.8294 L1585.14 62.0502 Q1584.71 63.9123 1584.71 65.4933 Q1584.71 67.25 1585.24 68.0229 Q1585.8 68.7958 1586.96 68.7958 Q1589.25 68.7958 1591.71 66.723 Q1594.2 64.6501 1596.31 59.5908 Q1596.59 58.9233 1596.73 58.7827 Q1596.91 58.6071 1597.36 58.6071 Q1598.24 58.6071 1598.24 59.3098 Q1598.24 59.5557 1597.75 60.68 Q1597.29 61.8042 1596.27 63.4555 Q1595.29 65.1068 1593.99 66.6527 Q1592.72 68.1986 1590.79 69.3228 Q1588.86 70.412 1586.79 70.412 Q1583.87 70.412 1582.01 68.5499 Q1580.18 66.6878 1580.18 63.7717 Q1580.18 62.8231 1580.92 59.8016 Q1581.66 56.745 1585.66 40.8294 L1579.3 40.8294 Q1578.43 40.8294 1578.07 40.7943 Q1577.76 40.7592 1577.51 40.5835 Q1577.3 40.3727 1577.3 39.9511 Q1577.3 39.2836 1577.58 39.0025 Q1577.86 38.6863 1578.21 38.6512 Q1578.6 38.5809 1579.48 38.5809 L1586.23 38.5809 L1589.04 27.1624 Q1589.32 26.0382 1590.02 25.4058 Q1590.76 24.7382 1591.18 24.668 Q1591.6 24.5626 1591.92 24.5626 Q1592.87 24.5626 1593.43 25.0896 Q1593.99 25.5814 1593.99 26.4949 Q1593.99 26.9868 1591.04 38.5809 L1597.36 38.5809 Q1598.17 38.5809 1598.49 38.616 Q1598.84 38.6512 1599.12 38.8268 Q1599.4 39.0025 1599.4 39.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1622.97 58.6773 Q1623.04 57.799 1624.41 57.799 L1668.5 57.799 Q1670.58 57.799 1670.61 58.6071 Q1670.61 59.4854 1668.64 59.4503 L1624.9 59.4503 Q1622.97 59.4854 1622.97 58.6773 M1622.97 44.6239 Q1622.97 43.7455 1624.48 43.7807 L1668.43 43.7807 Q1670.58 43.7807 1670.61 44.6239 Q1670.61 45.432 1668.78 45.432 L1624.41 45.432 Q1622.97 45.432 1622.97 44.6239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1698.35 46.5914 Q1698.35 36.0161 1701.02 30.2542 Q1704.74 21.6816 1713.53 21.6816 Q1715.39 21.6816 1717.32 22.2086 Q1719.29 22.7005 1721.75 24.6328 Q1724.24 26.5652 1725.75 29.7272 Q1728.63 35.8405 1728.63 46.5914 Q1728.63 57.0963 1725.96 62.8231 Q1722.06 71.1849 1713.46 71.1849 Q1710.22 71.1849 1706.92 69.5336 Q1703.65 67.8824 1701.58 63.9123 Q1698.35 57.9747 1698.35 46.5914 M1704.32 45.713 Q1704.32 56.5693 1705.09 60.8908 Q1705.97 65.5635 1708.36 67.6013 Q1710.79 69.6039 1713.46 69.6039 Q1716.34 69.6039 1718.73 67.4608 Q1721.15 65.2825 1721.89 60.6097 Q1722.7 56.0072 1722.66 45.713 Q1722.66 35.6999 1721.96 31.6947 Q1721.01 27.0219 1718.48 25.1598 Q1715.99 23.2626 1713.46 23.2626 Q1712.51 23.2626 1711.49 23.5437 Q1710.51 23.8247 1709.06 24.6328 Q1707.62 25.4409 1706.5 27.4435 Q1705.41 29.4461 1704.88 32.4676 Q1704.32 36.3675 1704.32 45.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1735.06 68.4445 Q1733.97 67.2851 1733.97 65.7743 Q1733.97 64.2636 1735.06 63.1745 Q1736.15 62.0502 1737.8 62.0502 Q1739.38 62.0502 1740.44 63.1042 Q1741.53 64.1231 1741.53 65.8095 Q1741.53 67.4608 1740.37 68.5499 Q1739.24 69.6039 1737.8 69.6039 Q1736.15 69.6039 1735.06 68.4445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1746.44 28.5327 L1746.44 26.2841 Q1755.08 26.2841 1759.54 21.6816 Q1760.77 21.6816 1760.98 21.9627 Q1761.19 22.2437 1761.19 23.5437 L1761.19 63.9123 Q1761.19 66.0554 1762.25 66.723 Q1763.3 67.3905 1767.9 67.3905 L1770.19 67.3905 L1770.19 69.6039 Q1767.66 69.3931 1758.52 69.3931 Q1749.39 69.3931 1746.89 69.6039 L1746.89 67.3905 L1749.18 67.3905 Q1753.71 67.3905 1754.8 66.7581 Q1755.89 66.0905 1755.89 63.9123 L1755.89 26.6354 Q1752.13 28.5327 1746.44 28.5327 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1773.64 46.5914 Q1773.64 36.0161 1776.31 30.2542 Q1780.03 21.6816 1788.81 21.6816 Q1790.68 21.6816 1792.61 22.2086 Q1794.58 22.7005 1797.04 24.6328 Q1799.53 26.5652 1801.04 29.7272 Q1803.92 35.8405 1803.92 46.5914 Q1803.92 57.0963 1801.25 62.8231 Q1797.35 71.1849 1788.74 71.1849 Q1785.51 71.1849 1782.21 69.5336 Q1778.94 67.8824 1776.87 63.9123 Q1773.64 57.9747 1773.64 46.5914 M1779.61 45.713 Q1779.61 56.5693 1780.38 60.8908 Q1781.26 65.5635 1783.65 67.6013 Q1786.07 69.6039 1788.74 69.6039 Q1791.62 69.6039 1794.01 67.4608 Q1796.44 65.2825 1797.18 60.6097 Q1797.98 56.0072 1797.95 45.713 Q1797.95 35.6999 1797.25 31.6947 Q1796.3 27.0219 1793.77 25.1598 Q1791.27 23.2626 1788.74 23.2626 Q1787.79 23.2626 1786.78 23.5437 Q1785.79 23.8247 1784.35 24.6328 Q1782.91 25.4409 1781.79 27.4435 Q1780.7 29.4461 1780.17 32.4676 Q1779.61 36.3675 1779.61 45.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip413)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,604.9 1324.56,604.898 1326.41,604.896 1328.27,604.893 1330.12,604.891 1331.97,604.888 1333.82,604.884 1335.68,604.881 1337.53,604.877 1339.38,604.873 \n",
" 1341.24,604.868 1343.09,604.863 1344.94,604.857 1346.79,604.851 1348.65,604.844 1350.5,604.837 1352.35,604.829 1354.21,604.82 1356.06,604.811 1357.91,604.8 \n",
" 1359.76,604.789 1361.62,604.777 1363.47,604.763 1365.32,604.749 1367.18,604.733 1369.03,604.716 1370.88,604.697 1372.73,604.677 1374.59,604.655 1376.44,604.631 \n",
" 1378.29,604.606 1380.15,604.578 1382,604.548 1383.85,604.515 1385.7,604.48 1387.56,604.442 1389.41,604.401 1391.26,604.357 1393.12,604.31 1394.97,604.258 \n",
" 1396.82,604.203 1398.67,604.144 1400.53,604.079 1402.38,604.011 1404.23,603.937 1406.09,603.857 1407.94,603.772 1409.79,603.68 1411.65,603.582 1413.5,603.477 \n",
" 1415.35,603.364 1417.2,603.243 1419.06,603.114 1420.91,602.976 1422.76,602.828 1424.62,602.67 1426.47,602.502 1428.32,602.322 1430.17,602.13 1432.03,601.925 \n",
" 1433.88,601.707 1435.73,601.475 1437.59,601.228 1439.44,600.966 1441.29,600.686 1443.14,600.389 1445,600.074 1446.85,599.74 1448.7,599.385 1450.56,599.009 \n",
" 1452.41,598.61 1454.26,598.188 1456.11,597.742 1457.97,597.269 1459.82,596.77 1461.67,596.242 1463.53,595.684 1465.38,595.096 1467.23,594.476 1469.08,593.821 \n",
" 1470.94,593.132 1472.79,592.406 1474.64,591.643 1476.5,590.839 1478.35,589.995 1480.2,589.107 1482.05,588.176 1483.91,587.198 1485.76,586.172 1487.61,585.098 \n",
" 1489.47,583.972 1491.32,582.793 1493.17,581.559 1495.02,580.269 1496.88,578.921 1498.73,577.513 1500.58,576.043 1502.44,574.509 1504.29,572.91 1506.14,571.243 \n",
" 1507.99,569.508 1509.85,567.701 1511.7,565.823 1513.55,563.869 1515.41,561.84 1517.26,559.733 1519.11,557.547 1520.96,555.279 1522.82,552.93 1524.67,550.496 \n",
" 1526.52,547.977 1528.38,545.371 1530.23,542.676 1532.08,539.893 1533.93,537.019 1535.79,534.053 1537.64,530.995 1539.49,527.843 1541.35,524.597 1543.2,521.256 \n",
" 1545.05,517.82 1546.9,514.288 1548.76,510.66 1550.61,506.936 1552.46,503.115 1554.32,499.199 1556.17,495.186 1558.02,491.079 1559.87,486.876 1561.73,482.58 \n",
" 1563.58,478.19 1565.43,473.709 1567.29,469.137 1569.14,464.476 1570.99,459.728 1572.84,454.894 1574.7,449.977 1576.55,444.979 1578.4,439.902 1580.26,434.749 \n",
" 1582.11,429.522 1583.96,424.226 1585.81,418.863 1587.67,413.436 1589.52,407.949 1591.37,402.407 1593.23,396.812 1595.08,391.17 1596.93,385.485 1598.78,379.761 \n",
" 1600.64,374.004 1602.49,368.217 1604.34,362.407 1606.2,356.578 1608.05,350.737 1609.9,344.888 1611.75,339.037 1613.61,333.191 1615.46,327.355 1617.31,321.535 \n",
" 1619.17,315.738 1621.02,309.97 1622.87,304.237 1624.72,298.546 1626.58,292.904 1628.43,287.316 1630.28,281.79 1632.14,276.332 1633.99,270.949 1635.84,265.647 \n",
" 1637.7,260.433 1639.55,255.315 1641.4,250.297 1643.25,245.387 1645.11,240.592 1646.96,235.917 1648.81,231.369 1650.67,226.954 1652.52,222.678 1654.37,218.546 \n",
" 1656.22,214.566 1658.08,210.741 1659.93,207.078 1661.78,203.582 1663.64,200.257 1665.49,197.109 1667.34,194.141 1669.19,191.359 1671.05,188.766 1672.9,186.366 \n",
" 1674.75,184.163 1676.61,182.16 1678.46,180.359 1680.31,178.764 1682.16,177.377 1684.02,176.2 1685.87,175.234 1687.72,174.481 1689.58,173.943 1691.43,173.62 \n",
" 1693.28,173.512 1695.13,173.62 1696.99,173.943 1698.84,174.481 1700.69,175.234 1702.55,176.2 1704.4,177.377 1706.25,178.764 1708.1,180.359 1709.96,182.16 \n",
" 1711.81,184.163 1713.66,186.366 1715.52,188.766 1717.37,191.359 1719.22,194.141 1721.07,197.109 1722.93,200.257 1724.78,203.582 1726.63,207.078 1728.49,210.741 \n",
" 1730.34,214.566 1732.19,218.546 1734.04,222.678 1735.9,226.954 1737.75,231.369 1739.6,235.917 1741.46,240.592 1743.31,245.387 1745.16,250.297 1747.01,255.315 \n",
" 1748.87,260.433 1750.72,265.647 1752.57,270.949 1754.43,276.332 1756.28,281.79 1758.13,287.316 1759.98,292.904 1761.84,298.546 1763.69,304.237 1765.54,309.97 \n",
" 1767.4,315.738 1769.25,321.535 1771.1,327.355 1772.95,333.191 1774.81,339.037 1776.66,344.888 1778.51,350.737 1780.37,356.578 1782.22,362.407 1784.07,368.217 \n",
" 1785.92,374.004 1787.78,379.761 1789.63,385.485 1791.48,391.17 1793.34,396.812 1795.19,402.407 1797.04,407.949 1798.89,413.436 1800.75,418.863 1802.6,424.226 \n",
" 1804.45,429.522 1806.31,434.749 1808.16,439.902 1810.01,444.979 1811.86,449.977 1813.72,454.894 1815.57,459.728 1817.42,464.476 1819.28,469.137 1821.13,473.709 \n",
" 1822.98,478.19 1824.83,482.58 1826.69,486.876 1828.54,491.079 1830.39,495.186 1832.25,499.199 1834.1,503.115 1835.95,506.936 1837.8,510.66 1839.66,514.288 \n",
" 1841.51,517.82 1843.36,521.256 1845.22,524.597 1847.07,527.843 1848.92,530.995 1850.77,534.053 1852.63,537.019 1854.48,539.893 1856.33,542.676 1858.19,545.371 \n",
" 1860.04,547.977 1861.89,550.496 1863.75,552.93 1865.6,555.279 1867.45,557.547 1869.3,559.733 1871.16,561.84 1873.01,563.869 1874.86,565.823 1876.72,567.701 \n",
" 1878.57,569.508 1880.42,571.243 1882.27,572.91 1884.13,574.509 1885.98,576.043 1887.83,577.513 1889.69,578.921 1891.54,580.269 1893.39,581.559 1895.24,582.793 \n",
" 1897.1,583.972 1898.95,585.098 1900.8,586.172 1902.66,587.198 1904.51,588.176 1906.36,589.107 1908.21,589.995 1910.07,590.839 1911.92,591.643 1913.77,592.406 \n",
" 1915.63,593.132 1917.48,593.821 1919.33,594.476 1921.18,595.096 1923.04,595.684 1924.89,596.242 1926.74,596.77 1928.6,597.269 1930.45,597.742 1932.3,598.188 \n",
" 1934.15,598.61 1936.01,599.009 1937.86,599.385 1939.71,599.74 1941.57,600.074 1943.42,600.389 1945.27,600.686 1947.12,600.966 1948.98,601.228 1950.83,601.475 \n",
" 1952.68,601.707 1954.54,601.925 1956.39,602.13 1958.24,602.322 1960.09,602.502 1961.95,602.67 1963.8,602.828 1965.65,602.976 1967.51,603.114 1969.36,603.243 \n",
" 1971.21,603.364 1973.06,603.477 1974.92,603.582 1976.77,603.68 1978.62,603.772 1980.48,603.857 1982.33,603.937 1984.18,604.011 1986.03,604.079 1987.89,604.144 \n",
" 1989.74,604.203 1991.59,604.258 1993.45,604.31 1995.3,604.357 1997.15,604.401 1999,604.442 2000.86,604.48 2002.71,604.515 2004.56,604.548 2006.42,604.578 \n",
" 2008.27,604.606 2010.12,604.631 2011.97,604.655 2013.83,604.677 2015.68,604.697 2017.53,604.716 2019.39,604.733 2021.24,604.749 2023.09,604.763 2024.94,604.777 \n",
" 2026.8,604.789 2028.65,604.8 2030.5,604.811 2032.36,604.82 2034.21,604.829 2036.06,604.837 2037.91,604.844 2039.77,604.851 2041.62,604.857 2043.47,604.863 \n",
" 2045.33,604.868 2047.18,604.873 2049.03,604.877 2050.88,604.881 2052.74,604.884 2054.59,604.888 2056.44,604.891 2058.3,604.893 2060.15,604.896 2062,604.898 \n",
" 2063.85,604.9 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M2367.14 604.92 L3152.76 604.92 L3152.76 121.312 L2367.14 121.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip414\">\n",
" <rect x=\"2367\" y=\"121\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2389.37,604.92 2389.37,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2574.66,604.92 2574.66,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2759.95,604.92 2759.95,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2945.23,604.92 2945.23,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 3130.52,604.92 3130.52,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,604.92 3152.76,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,604.92 2389.37,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2574.66,604.92 2574.66,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2759.95,604.92 2759.95,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2945.23,604.92 2945.23,586.022 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3130.52,604.92 3130.52,586.022 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2359.32 656.891 L2388.99 656.891 L2388.99 660.826 L2359.32 660.826 L2359.32 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2403.11 669.785 L2419.43 669.785 L2419.43 673.72 L2397.49 673.72 L2397.49 669.785 Q2400.15 667.03 2404.73 662.4 Q2409.34 657.748 2410.52 656.405 Q2412.77 653.882 2413.64 652.146 Q2414.55 650.387 2414.55 648.697 Q2414.55 645.942 2412.6 644.206 Q2410.68 642.47 2407.58 642.47 Q2405.38 642.47 2402.93 643.234 Q2400.5 643.998 2397.72 645.549 L2397.72 640.827 Q2400.54 639.692 2403 639.114 Q2405.45 638.535 2407.49 638.535 Q2412.86 638.535 2416.05 641.22 Q2419.25 643.905 2419.25 648.396 Q2419.25 650.526 2418.44 652.447 Q2417.65 654.345 2415.54 656.938 Q2414.96 657.609 2411.86 660.826 Q2408.76 664.021 2403.11 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2544.42 656.891 L2574.09 656.891 L2574.09 660.826 L2544.42 660.826 L2544.42 656.891 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2585 669.785 L2592.64 669.785 L2592.64 643.419 L2584.33 645.086 L2584.33 640.827 L2592.59 639.16 L2597.26 639.16 L2597.26 669.785 L2604.9 669.785 L2604.9 673.72 L2585 673.72 L2585 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2759.95 642.239 Q2756.34 642.239 2754.51 645.803 Q2752.7 649.345 2752.7 656.475 Q2752.7 663.581 2754.51 667.146 Q2756.34 670.687 2759.95 670.687 Q2763.58 670.687 2765.39 667.146 Q2767.22 663.581 2767.22 656.475 Q2767.22 649.345 2765.39 645.803 Q2763.58 642.239 2759.95 642.239 M2759.95 638.535 Q2765.76 638.535 2768.81 643.141 Q2771.89 647.725 2771.89 656.475 Q2771.89 665.201 2768.81 669.808 Q2765.76 674.391 2759.95 674.391 Q2754.14 674.391 2751.06 669.808 Q2748 665.201 2748 656.475 Q2748 647.725 2751.06 643.141 Q2754.14 638.535 2759.95 638.535 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2935.62 669.785 L2943.26 669.785 L2943.26 643.419 L2934.95 645.086 L2934.95 640.827 L2943.21 639.16 L2947.89 639.16 L2947.89 669.785 L2955.52 669.785 L2955.52 673.72 L2935.62 673.72 L2935.62 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M3125.17 669.785 L3141.49 669.785 L3141.49 673.72 L3119.55 673.72 L3119.55 669.785 Q3122.21 667.03 3126.79 662.4 Q3131.4 657.748 3132.58 656.405 Q3134.83 653.882 3135.71 652.146 Q3136.61 650.387 3136.61 648.697 Q3136.61 645.942 3134.66 644.206 Q3132.74 642.47 3129.64 642.47 Q3127.44 642.47 3124.99 643.234 Q3122.56 643.998 3119.78 645.549 L3119.78 640.827 Q3122.6 639.692 3125.06 639.114 Q3127.51 638.535 3129.55 638.535 Q3134.92 638.535 3138.11 641.22 Q3141.31 643.905 3141.31 648.396 Q3141.31 650.526 3140.5 652.447 Q3139.71 654.345 3137.6 656.938 Q3137.03 657.609 3133.92 660.826 Q3130.82 664.021 3125.17 669.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2774.13 722.536 Q2774.13 724.339 2773 725.37 Q2771.87 726.368 2770.58 726.368 Q2769.36 726.368 2768.72 725.66 Q2768.07 724.951 2768.07 724.05 Q2768.07 722.826 2768.97 721.763 Q2769.87 720.7 2771.23 720.475 Q2769.91 719.637 2767.94 719.637 Q2766.65 719.637 2765.53 720.314 Q2764.43 720.99 2763.76 721.86 Q2763.11 722.729 2762.53 723.985 Q2761.98 725.209 2761.76 725.95 Q2761.57 726.658 2761.4 727.431 L2759.15 736.449 Q2758.05 740.732 2758.05 742.246 Q2758.05 744.114 2758.96 745.37 Q2759.86 746.594 2761.66 746.594 Q2762.37 746.594 2763.18 746.4 Q2763.98 746.175 2765.01 745.595 Q2766.07 744.983 2767.01 744.082 Q2767.97 743.148 2768.91 741.569 Q2769.84 739.991 2770.45 737.962 Q2770.65 737.254 2771.29 737.254 Q2772.1 737.254 2772.1 737.898 Q2772.1 738.446 2771.65 739.605 Q2771.23 740.732 2770.29 742.214 Q2769.39 743.663 2768.2 744.983 Q2767.01 746.272 2765.24 747.173 Q2763.47 748.075 2761.53 748.075 Q2758.76 748.075 2756.93 746.594 Q2755.09 745.112 2754.42 743.051 Q2754.25 743.341 2754.03 743.727 Q2753.8 744.114 2753.13 744.983 Q2752.48 745.821 2751.74 746.465 Q2751 747.077 2749.84 747.56 Q2748.72 748.075 2747.49 748.075 Q2745.95 748.075 2744.56 747.624 Q2743.21 747.173 2742.24 746.143 Q2741.28 745.112 2741.28 743.695 Q2741.28 742.117 2742.34 741.022 Q2743.43 739.895 2744.91 739.895 Q2745.85 739.895 2746.59 740.442 Q2747.36 740.99 2747.36 742.181 Q2747.36 743.502 2746.46 744.5 Q2745.56 745.499 2744.27 745.756 Q2745.59 746.594 2747.56 746.594 Q2749.68 746.594 2751.36 744.726 Q2753.03 742.858 2753.84 739.734 Q2755.83 732.23 2756.61 728.88 Q2757.38 725.499 2757.38 724.05 Q2757.38 722.697 2757.02 721.763 Q2756.67 720.829 2756.06 720.41 Q2755.48 719.959 2754.93 719.798 Q2754.42 719.637 2753.84 719.637 Q2752.87 719.637 2751.77 720.024 Q2750.71 720.41 2749.42 721.312 Q2748.17 722.182 2746.98 723.985 Q2745.78 725.789 2744.98 728.268 Q2744.82 729.009 2744.11 729.009 Q2743.34 728.977 2743.34 728.333 Q2743.34 727.785 2743.76 726.658 Q2744.21 725.499 2745.11 724.05 Q2746.04 722.6 2747.23 721.312 Q2748.46 719.992 2750.23 719.09 Q2752.03 718.188 2753.96 718.188 Q2754.83 718.188 2755.67 718.381 Q2756.54 718.542 2757.57 719.025 Q2758.63 719.508 2759.57 720.571 Q2760.5 721.634 2761.08 723.18 Q2761.47 722.439 2761.98 721.731 Q2762.53 721.022 2763.37 720.153 Q2764.24 719.251 2765.43 718.736 Q2766.65 718.188 2768.01 718.188 Q2769.33 718.188 2770.62 718.542 Q2771.9 718.864 2773 719.927 Q2774.13 720.958 2774.13 722.536 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,604.92 3152.76,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,508.198 3152.76,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,411.477 3152.76,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,314.755 3152.76,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,218.034 3152.76,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip414)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,121.312 3152.76,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,604.92 2367.14,121.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,604.92 2386.04,604.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,508.198 2386.04,508.198 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,411.477 2386.04,411.477 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,314.755 2386.04,314.755 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,218.034 2386.04,218.034 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,121.312 2386.04,121.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2261.96 590.719 Q2258.35 590.719 2256.52 594.283 Q2254.72 597.825 2254.72 604.955 Q2254.72 612.061 2256.52 615.626 Q2258.35 619.167 2261.96 619.167 Q2265.6 619.167 2267.4 615.626 Q2269.23 612.061 2269.23 604.955 Q2269.23 597.825 2267.4 594.283 Q2265.6 590.719 2261.96 590.719 M2261.96 587.015 Q2267.77 587.015 2270.83 591.621 Q2273.91 596.205 2273.91 604.955 Q2273.91 613.681 2270.83 618.288 Q2267.77 622.871 2261.96 622.871 Q2256.15 622.871 2253.08 618.288 Q2250.02 613.681 2250.02 604.955 Q2250.02 596.205 2253.08 591.621 Q2256.15 587.015 2261.96 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 616.32 L2287.01 616.32 L2287.01 622.2 L2282.13 622.2 L2282.13 616.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 590.719 Q2303.58 590.719 2301.76 594.283 Q2299.95 597.825 2299.95 604.955 Q2299.95 612.061 2301.76 615.626 Q2303.58 619.167 2307.2 619.167 Q2310.83 619.167 2312.64 615.626 Q2314.46 612.061 2314.46 604.955 Q2314.46 597.825 2312.64 594.283 Q2310.83 590.719 2307.2 590.719 M2307.2 587.015 Q2313.01 587.015 2316.06 591.621 Q2319.14 596.205 2319.14 604.955 Q2319.14 613.681 2316.06 618.288 Q2313.01 622.871 2307.2 622.871 Q2301.39 622.871 2298.31 618.288 Q2295.25 613.681 2295.25 604.955 Q2295.25 596.205 2298.31 591.621 Q2301.39 587.015 2307.2 587.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2263.56 493.997 Q2259.95 493.997 2258.12 497.562 Q2256.32 501.103 2256.32 508.233 Q2256.32 515.339 2258.12 518.904 Q2259.95 522.446 2263.56 522.446 Q2267.2 522.446 2269 518.904 Q2270.83 515.339 2270.83 508.233 Q2270.83 501.103 2269 497.562 Q2267.2 493.997 2263.56 493.997 M2263.56 490.293 Q2269.37 490.293 2272.43 494.9 Q2275.51 499.483 2275.51 508.233 Q2275.51 516.96 2272.43 521.566 Q2269.37 526.15 2263.56 526.15 Q2257.75 526.15 2254.67 521.566 Q2251.62 516.96 2251.62 508.233 Q2251.62 499.483 2254.67 494.9 Q2257.75 490.293 2263.56 490.293 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2283.72 519.599 L2288.61 519.599 L2288.61 525.478 L2283.72 525.478 L2283.72 519.599 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2302.82 521.543 L2319.14 521.543 L2319.14 525.478 L2297.2 525.478 L2297.2 521.543 Q2299.86 518.789 2304.44 514.159 Q2309.05 509.506 2310.23 508.164 Q2312.47 505.64 2313.35 503.904 Q2314.26 502.145 2314.26 500.455 Q2314.26 497.701 2312.31 495.965 Q2310.39 494.228 2307.29 494.228 Q2305.09 494.228 2302.64 494.992 Q2300.2 495.756 2297.43 497.307 L2297.43 492.585 Q2300.25 491.451 2302.7 490.872 Q2305.16 490.293 2307.2 490.293 Q2312.57 490.293 2315.76 492.978 Q2318.95 495.664 2318.95 500.154 Q2318.95 502.284 2318.14 504.205 Q2317.36 506.103 2315.25 508.696 Q2314.67 509.367 2311.57 512.585 Q2308.47 515.779 2302.82 521.543 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.48 397.275 Q2257.87 397.275 2256.04 400.84 Q2254.23 404.382 2254.23 411.511 Q2254.23 418.618 2256.04 422.183 Q2257.87 425.724 2261.48 425.724 Q2265.11 425.724 2266.92 422.183 Q2268.75 418.618 2268.75 411.511 Q2268.75 404.382 2266.92 400.84 Q2265.11 397.275 2261.48 397.275 M2261.48 393.572 Q2267.29 393.572 2270.34 398.178 Q2273.42 402.762 2273.42 411.511 Q2273.42 420.238 2270.34 424.845 Q2267.29 429.428 2261.48 429.428 Q2255.67 429.428 2252.59 424.845 Q2249.53 420.238 2249.53 411.511 Q2249.53 402.762 2252.59 398.178 Q2255.67 393.572 2261.48 393.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.64 422.877 L2286.52 422.877 L2286.52 428.757 L2281.64 428.757 L2281.64 422.877 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2309.56 398.271 L2297.75 416.72 L2309.56 416.72 L2309.56 398.271 M2308.33 394.197 L2314.21 394.197 L2314.21 416.72 L2319.14 416.72 L2319.14 420.609 L2314.21 420.609 L2314.21 428.757 L2309.56 428.757 L2309.56 420.609 L2293.95 420.609 L2293.95 416.095 L2308.33 394.197 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.8 300.554 Q2258.19 300.554 2256.36 304.119 Q2254.56 307.66 2254.56 314.79 Q2254.56 321.896 2256.36 325.461 Q2258.19 329.003 2261.8 329.003 Q2265.44 329.003 2267.24 325.461 Q2269.07 321.896 2269.07 314.79 Q2269.07 307.66 2267.24 304.119 Q2265.44 300.554 2261.8 300.554 M2261.8 296.85 Q2267.61 296.85 2270.67 301.457 Q2273.75 306.04 2273.75 314.79 Q2273.75 323.517 2270.67 328.123 Q2267.61 332.707 2261.8 332.707 Q2255.99 332.707 2252.91 328.123 Q2249.86 323.517 2249.86 314.79 Q2249.86 306.04 2252.91 301.457 Q2255.99 296.85 2261.8 296.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.96 326.156 L2286.85 326.156 L2286.85 332.035 L2281.96 332.035 L2281.96 326.156 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.61 312.892 Q2304.46 312.892 2302.61 315.045 Q2300.78 317.197 2300.78 320.947 Q2300.78 324.674 2302.61 326.85 Q2304.46 329.003 2307.61 329.003 Q2310.76 329.003 2312.59 326.85 Q2314.44 324.674 2314.44 320.947 Q2314.44 317.197 2312.59 315.045 Q2310.76 312.892 2307.61 312.892 M2316.89 298.239 L2316.89 302.498 Q2315.13 301.665 2313.33 301.225 Q2311.55 300.785 2309.79 300.785 Q2305.16 300.785 2302.7 303.91 Q2300.27 307.035 2299.93 313.355 Q2301.29 311.341 2303.35 310.276 Q2305.41 309.188 2307.89 309.188 Q2313.1 309.188 2316.11 312.359 Q2319.14 315.508 2319.14 320.947 Q2319.14 326.271 2315.99 329.489 Q2312.84 332.707 2307.61 332.707 Q2301.62 332.707 2298.45 328.123 Q2295.27 323.517 2295.27 314.79 Q2295.27 306.596 2299.16 301.734 Q2303.05 296.85 2309.6 296.85 Q2311.36 296.85 2313.14 297.197 Q2314.95 297.545 2316.89 298.239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2262.06 203.832 Q2258.45 203.832 2256.62 207.397 Q2254.81 210.939 2254.81 218.068 Q2254.81 225.175 2256.62 228.74 Q2258.45 232.281 2262.06 232.281 Q2265.69 232.281 2267.5 228.74 Q2269.33 225.175 2269.33 218.068 Q2269.33 210.939 2267.5 207.397 Q2265.69 203.832 2262.06 203.832 M2262.06 200.129 Q2267.87 200.129 2270.92 204.735 Q2274 209.318 2274 218.068 Q2274 226.795 2270.92 231.402 Q2267.87 235.985 2262.06 235.985 Q2256.25 235.985 2253.17 231.402 Q2250.11 226.795 2250.11 218.068 Q2250.11 209.318 2253.17 204.735 Q2256.25 200.129 2262.06 200.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.22 229.434 L2287.1 229.434 L2287.1 235.314 L2282.22 235.314 L2282.22 229.434 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.29 218.902 Q2303.95 218.902 2302.03 220.684 Q2300.14 222.467 2300.14 225.591 Q2300.14 228.716 2302.03 230.499 Q2303.95 232.281 2307.29 232.281 Q2310.62 232.281 2312.54 230.499 Q2314.46 228.693 2314.46 225.591 Q2314.46 222.467 2312.54 220.684 Q2310.64 218.902 2307.29 218.902 M2302.61 216.911 Q2299.6 216.17 2297.91 214.11 Q2296.25 212.05 2296.25 209.087 Q2296.25 204.943 2299.19 202.536 Q2302.15 200.129 2307.29 200.129 Q2312.45 200.129 2315.39 202.536 Q2318.33 204.943 2318.33 209.087 Q2318.33 212.05 2316.64 214.11 Q2314.97 216.17 2311.99 216.911 Q2315.37 217.698 2317.24 219.99 Q2319.14 222.281 2319.14 225.591 Q2319.14 230.615 2316.06 233.3 Q2313.01 235.985 2307.29 235.985 Q2301.57 235.985 2298.49 233.3 Q2295.44 230.615 2295.44 225.591 Q2295.44 222.281 2297.33 219.99 Q2299.23 217.698 2302.61 216.911 M2300.9 209.527 Q2300.9 212.212 2302.57 213.717 Q2304.26 215.221 2307.29 215.221 Q2310.3 215.221 2311.99 213.717 Q2313.7 212.212 2313.7 209.527 Q2313.7 206.842 2311.99 205.337 Q2310.3 203.832 2307.29 203.832 Q2304.26 203.832 2302.57 205.337 Q2300.9 206.842 2300.9 209.527 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2252.77 134.657 L2260.41 134.657 L2260.41 108.291 L2252.1 109.958 L2252.1 105.699 L2260.37 104.032 L2265.04 104.032 L2265.04 134.657 L2272.68 134.657 L2272.68 138.592 L2252.77 138.592 L2252.77 134.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 132.713 L2287.01 132.713 L2287.01 138.592 L2282.13 138.592 L2282.13 132.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 107.111 Q2303.58 107.111 2301.76 110.676 Q2299.95 114.217 2299.95 121.347 Q2299.95 128.453 2301.76 132.018 Q2303.58 135.56 2307.2 135.56 Q2310.83 135.56 2312.64 132.018 Q2314.46 128.453 2314.46 121.347 Q2314.46 114.217 2312.64 110.676 Q2310.83 107.111 2307.2 107.111 M2307.2 103.407 Q2313.01 103.407 2316.06 108.014 Q2319.14 112.597 2319.14 121.347 Q2319.14 130.074 2316.06 134.68 Q2313.01 139.263 2307.2 139.263 Q2301.39 139.263 2298.31 134.68 Q2295.25 130.074 2295.25 121.347 Q2295.25 112.597 2298.31 108.014 Q2301.39 103.407 2307.2 103.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2147.38 419.572 Q2149.15 419.572 2150.25 420.699 Q2151.34 421.794 2151.34 423.179 Q2151.34 424.178 2150.73 424.918 Q2150.12 425.627 2149.05 425.627 Q2147.96 425.627 2146.8 424.79 Q2145.64 423.952 2145.48 422.052 Q2144.29 423.308 2144.29 425.305 Q2144.29 426.303 2144.93 427.141 Q2145.54 427.946 2146.54 428.397 Q2147.57 428.88 2153.4 429.975 Q2155.3 430.329 2157.14 430.651 Q2158.97 430.973 2160.91 431.36 L2160.91 425.885 Q2160.91 425.176 2160.94 424.886 Q2160.97 424.596 2161.13 424.371 Q2161.29 424.113 2161.65 424.113 Q2162.55 424.113 2162.77 424.532 Q2162.97 424.918 2162.97 426.078 L2162.97 431.746 L2183.87 435.707 Q2184.48 435.804 2186.41 436.223 Q2188.31 436.609 2191.44 437.543 Q2194.59 438.477 2196.46 439.411 Q2197.52 439.926 2198.52 440.603 Q2199.55 441.247 2200.58 442.181 Q2201.61 443.115 2202.23 444.339 Q2202.87 445.562 2202.87 446.851 Q2202.87 449.041 2201.65 450.747 Q2200.42 452.454 2198.33 452.454 Q2196.56 452.454 2195.46 451.359 Q2194.37 450.232 2194.37 448.847 Q2194.37 447.849 2194.98 447.14 Q2195.59 446.4 2196.66 446.4 Q2197.11 446.4 2197.62 446.561 Q2198.14 446.722 2198.72 447.076 Q2199.33 447.43 2199.75 448.203 Q2200.17 448.976 2200.23 450.039 Q2201.42 448.783 2201.42 446.851 Q2201.42 446.239 2201.16 445.691 Q2200.94 445.144 2200.36 444.693 Q2199.78 444.21 2199.2 443.855 Q2198.65 443.501 2197.59 443.147 Q2196.56 442.793 2195.79 442.567 Q2195.01 442.342 2193.63 442.052 Q2192.24 441.73 2191.41 441.569 Q2190.6 441.408 2189.02 441.118 L2162.97 436.19 L2162.97 440.538 Q2162.97 441.311 2162.94 441.633 Q2162.9 441.923 2162.74 442.149 Q2162.55 442.374 2162.16 442.374 Q2161.55 442.374 2161.29 442.116 Q2161 441.826 2160.97 441.504 Q2160.91 441.182 2160.91 440.409 L2160.91 435.836 Q2152.76 434.29 2150.57 433.678 Q2148.25 432.97 2146.64 431.875 Q2145 430.78 2144.22 429.556 Q2143.45 428.332 2143.16 427.334 Q2142.84 426.303 2142.84 425.305 Q2142.84 423.05 2144.06 421.311 Q2145.25 419.572 2147.38 419.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2172.86 410.7 Q2161.71 410.7 2152.73 406.545 Q2148.96 404.774 2145.8 402.294 Q2142.65 399.814 2141.26 398.172 Q2139.88 396.529 2139.88 396.078 Q2139.88 395.434 2140.52 395.402 Q2140.84 395.402 2141.65 396.272 Q2152.47 406.9 2172.86 406.867 Q2193.31 406.867 2203.71 396.529 Q2204.84 395.402 2205.19 395.402 Q2205.83 395.402 2205.83 396.078 Q2205.83 396.529 2204.51 398.107 Q2203.19 399.685 2200.17 402.133 Q2197.14 404.581 2193.43 406.352 Q2184.45 410.7 2172.86 410.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2164.55 357.545 Q2166.35 357.545 2167.38 358.672 Q2168.38 359.799 2168.38 361.087 Q2168.38 362.311 2167.67 362.955 Q2166.96 363.599 2166.06 363.599 Q2164.84 363.599 2163.77 362.697 Q2162.71 361.796 2162.48 360.443 Q2161.65 361.764 2161.65 363.728 Q2161.65 365.016 2162.32 366.144 Q2163 367.239 2163.87 367.915 Q2164.74 368.559 2166 369.139 Q2167.22 369.686 2167.96 369.912 Q2168.67 370.105 2169.44 370.266 L2178.46 372.52 Q2182.74 373.615 2184.26 373.615 Q2186.12 373.615 2187.38 372.714 Q2188.6 371.812 2188.6 370.008 Q2188.6 369.3 2188.41 368.495 Q2188.18 367.689 2187.61 366.659 Q2186.99 365.596 2186.09 364.662 Q2185.16 363.696 2183.58 362.762 Q2182 361.828 2179.97 361.216 Q2179.26 361.023 2179.26 360.379 Q2179.26 359.574 2179.91 359.574 Q2180.46 359.574 2181.62 360.024 Q2182.74 360.443 2184.22 361.377 Q2185.67 362.279 2186.99 363.47 Q2188.28 364.662 2189.18 366.433 Q2190.09 368.205 2190.09 370.137 Q2190.09 372.907 2188.6 374.742 Q2187.12 376.578 2185.06 377.255 Q2185.35 377.416 2185.74 377.641 Q2186.12 377.866 2186.99 378.543 Q2187.83 379.187 2188.47 379.928 Q2189.09 380.668 2189.57 381.828 Q2190.09 382.955 2190.09 384.179 Q2190.09 385.725 2189.63 387.11 Q2189.18 388.462 2188.15 389.428 Q2187.12 390.395 2185.71 390.395 Q2184.13 390.395 2183.03 389.332 Q2181.9 388.237 2181.9 386.755 Q2181.9 385.821 2182.45 385.081 Q2183 384.308 2184.19 384.308 Q2185.51 384.308 2186.51 385.209 Q2187.51 386.111 2187.77 387.399 Q2188.6 386.079 2188.6 384.114 Q2188.6 381.989 2186.74 380.314 Q2184.87 378.639 2181.74 377.834 Q2174.24 375.837 2170.89 375.065 Q2167.51 374.292 2166.06 374.292 Q2164.71 374.292 2163.77 374.646 Q2162.84 375 2162.42 375.612 Q2161.97 376.192 2161.81 376.739 Q2161.65 377.255 2161.65 377.834 Q2161.65 378.8 2162.03 379.895 Q2162.42 380.958 2163.32 382.246 Q2164.19 383.502 2166 384.694 Q2167.8 385.886 2170.28 386.691 Q2171.02 386.852 2171.02 387.56 Q2170.99 388.333 2170.34 388.333 Q2169.8 388.333 2168.67 387.915 Q2167.51 387.464 2166.06 386.562 Q2164.61 385.628 2163.32 384.436 Q2162 383.213 2161.1 381.441 Q2160.2 379.638 2160.2 377.705 Q2160.2 376.836 2160.39 375.998 Q2160.55 375.129 2161.04 374.098 Q2161.52 373.036 2162.58 372.102 Q2163.64 371.168 2165.19 370.588 Q2164.45 370.201 2163.74 369.686 Q2163.03 369.139 2162.16 368.301 Q2161.26 367.432 2160.75 366.24 Q2160.2 365.016 2160.2 363.664 Q2160.2 362.343 2160.55 361.055 Q2160.87 359.767 2161.94 358.672 Q2162.97 357.545 2164.55 357.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2188.28 352.116 Q2187.22 353.05 2185.83 353.05 Q2184.45 353.05 2183.42 352.149 Q2182.36 351.215 2182.36 349.54 Q2182.36 347.575 2184.26 346.448 Q2186.12 345.321 2189.28 345.321 Q2192.69 345.321 2195.85 346.706 Q2199.04 348.091 2200.55 349.443 Q2202.07 350.796 2202.07 351.343 Q2202.07 351.988 2201.36 351.988 Q2201.1 351.988 2200.62 351.537 Q2195.53 346.802 2189.28 346.77 Q2188.28 346.77 2188.28 346.899 L2188.41 347.06 Q2189.34 348.187 2189.34 349.54 Q2189.34 351.182 2188.28 352.116 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2161.65 304.257 Q2162.55 304.257 2162.77 304.675 Q2162.97 305.094 2162.97 306.254 L2162.97 312.437 L2182.42 317.332 Q2184.13 317.719 2185.58 317.719 Q2187.19 317.719 2187.9 317.236 Q2188.6 316.72 2188.6 315.658 Q2188.6 313.564 2186.7 311.31 Q2184.8 309.023 2180.17 307.091 Q2179.55 306.833 2179.43 306.704 Q2179.26 306.543 2179.26 306.125 Q2179.26 305.32 2179.91 305.32 Q2180.13 305.32 2181.16 305.77 Q2182.19 306.189 2183.71 307.123 Q2185.22 308.025 2186.64 309.216 Q2188.06 310.376 2189.09 312.147 Q2190.09 313.919 2190.09 315.819 Q2190.09 318.492 2188.38 320.199 Q2186.67 321.873 2184 321.873 Q2183.13 321.873 2180.36 321.197 Q2177.56 320.521 2162.97 316.849 L2162.97 322.679 Q2162.97 323.484 2162.94 323.806 Q2162.9 324.096 2162.74 324.321 Q2162.55 324.514 2162.16 324.514 Q2161.55 324.514 2161.29 324.257 Q2161 323.999 2160.97 323.677 Q2160.91 323.323 2160.91 322.517 L2160.91 316.334 L2150.44 313.758 Q2149.41 313.5 2148.83 312.856 Q2148.22 312.179 2148.15 311.793 Q2148.06 311.406 2148.06 311.117 Q2148.06 310.247 2148.54 309.732 Q2148.99 309.216 2149.83 309.216 Q2150.28 309.216 2160.91 311.922 L2160.91 306.125 Q2160.91 305.384 2160.94 305.094 Q2160.97 304.772 2161.13 304.514 Q2161.29 304.257 2161.65 304.257 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2205.19 299.099 Q2204.87 299.099 2204.06 298.262 Q2193.24 287.634 2172.86 287.634 Q2152.4 287.634 2142.07 297.843 Q2140.87 299.099 2140.52 299.099 Q2139.88 299.099 2139.88 298.455 Q2139.88 298.004 2141.2 296.426 Q2142.52 294.816 2145.54 292.4 Q2148.57 289.952 2152.28 288.149 Q2161.26 283.801 2172.86 283.801 Q2184 283.801 2192.98 287.956 Q2196.75 289.727 2199.91 292.207 Q2203.06 294.687 2204.45 296.329 Q2205.83 297.972 2205.83 298.455 Q2205.83 299.099 2205.19 299.099 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2665.09 39.389 Q2665.09 40.3727 2664.63 40.6186 Q2664.18 40.8294 2662.91 40.8294 L2656.17 40.8294 L2650.83 62.0502 Q2650.4 63.9123 2650.4 65.4933 Q2650.4 67.25 2650.93 68.0229 Q2651.49 68.7958 2652.65 68.7958 Q2654.94 68.7958 2657.4 66.723 Q2659.89 64.6501 2662 59.5908 Q2662.28 58.9233 2662.42 58.7827 Q2662.6 58.6071 2663.05 58.6071 Q2663.93 58.6071 2663.93 59.3098 Q2663.93 59.5557 2663.44 60.68 Q2662.98 61.8042 2661.96 63.4555 Q2660.98 65.1068 2659.68 66.6527 Q2658.41 68.1986 2656.48 69.3228 Q2654.55 70.412 2652.48 70.412 Q2649.56 70.412 2647.7 68.5499 Q2645.87 66.6878 2645.87 63.7717 Q2645.87 62.8231 2646.61 59.8016 Q2647.35 56.745 2651.35 40.8294 L2644.99 40.8294 Q2644.11 40.8294 2643.76 40.7943 Q2643.45 40.7592 2643.2 40.5835 Q2642.99 40.3727 2642.99 39.9511 Q2642.99 39.2836 2643.27 39.0025 Q2643.55 38.6863 2643.9 38.6512 Q2644.29 38.5809 2645.17 38.5809 L2651.91 38.5809 L2654.73 27.1624 Q2655.01 26.0382 2655.71 25.4058 Q2656.45 24.7382 2656.87 24.668 Q2657.29 24.5626 2657.61 24.5626 Q2658.55 24.5626 2659.12 25.0896 Q2659.68 25.5814 2659.68 26.4949 Q2659.68 26.9868 2656.73 38.5809 L2663.05 38.5809 Q2663.86 38.5809 2664.18 38.616 Q2664.53 38.6512 2664.81 38.8268 Q2665.09 39.0025 2665.09 39.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2688.66 58.6773 Q2688.73 57.799 2690.1 57.799 L2734.19 57.799 Q2736.27 57.799 2736.3 58.6071 Q2736.3 59.4854 2734.33 59.4503 L2690.59 59.4503 Q2688.66 59.4854 2688.66 58.6773 M2688.66 44.6239 Q2688.66 43.7455 2690.17 43.7807 L2734.12 43.7807 Q2736.27 43.7807 2736.3 44.6239 Q2736.3 45.432 2734.47 45.432 L2690.1 45.432 Q2688.66 45.432 2688.66 44.6239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2764.04 46.5914 Q2764.04 36.0161 2766.71 30.2542 Q2770.43 21.6816 2779.22 21.6816 Q2781.08 21.6816 2783.01 22.2086 Q2784.98 22.7005 2787.44 24.6328 Q2789.93 26.5652 2791.44 29.7272 Q2794.32 35.8405 2794.32 46.5914 Q2794.32 57.0963 2791.65 62.8231 Q2787.75 71.1849 2779.15 71.1849 Q2775.91 71.1849 2772.61 69.5336 Q2769.34 67.8824 2767.27 63.9123 Q2764.04 57.9747 2764.04 46.5914 M2770.01 45.713 Q2770.01 56.5693 2770.78 60.8908 Q2771.66 65.5635 2774.05 67.6013 Q2776.48 69.6039 2779.15 69.6039 Q2782.03 69.6039 2784.42 67.4608 Q2786.84 65.2825 2787.58 60.6097 Q2788.39 56.0072 2788.35 45.713 Q2788.35 35.6999 2787.65 31.6947 Q2786.7 27.0219 2784.17 25.1598 Q2781.68 23.2626 2779.15 23.2626 Q2778.2 23.2626 2777.18 23.5437 Q2776.19 23.8247 2774.75 24.6328 Q2773.31 25.4409 2772.19 27.4435 Q2771.1 29.4461 2770.57 32.4676 Q2770.01 36.3675 2770.01 45.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2800.75 68.4445 Q2799.66 67.2851 2799.66 65.7743 Q2799.66 64.2636 2800.75 63.1745 Q2801.84 62.0502 2803.49 62.0502 Q2805.07 62.0502 2806.13 63.1042 Q2807.22 64.1231 2807.22 65.8095 Q2807.22 67.4608 2806.06 68.5499 Q2804.93 69.6039 2803.49 69.6039 Q2801.84 69.6039 2800.75 68.4445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2812.13 28.5327 L2812.13 26.2841 Q2820.77 26.2841 2825.23 21.6816 Q2826.46 21.6816 2826.67 21.9627 Q2826.88 22.2437 2826.88 23.5437 L2826.88 63.9123 Q2826.88 66.0554 2827.94 66.723 Q2828.99 67.3905 2833.59 67.3905 L2835.88 67.3905 L2835.88 69.6039 Q2833.35 69.3931 2824.21 69.3931 Q2815.08 69.3931 2812.58 69.6039 L2812.58 67.3905 L2814.87 67.3905 Q2819.4 67.3905 2820.49 66.7581 Q2821.58 66.0905 2821.58 63.9123 L2821.58 26.6354 Q2817.82 28.5327 2812.13 28.5327 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2841.28 58.0098 Q2841.28 55.8667 2842.44 55.0586 Q2843.6 54.2154 2844.83 54.2154 Q2846.48 54.2154 2847.43 55.2694 Q2848.41 56.2883 2848.41 57.7287 Q2848.41 59.1692 2847.43 60.2232 Q2846.48 61.2421 2844.83 61.2421 Q2844.02 61.2421 2843.6 61.1016 Q2844.55 64.4041 2847.43 66.7932 Q2850.34 69.1823 2854.17 69.1823 Q2858.99 69.1823 2861.87 64.5095 Q2863.59 61.488 2863.59 54.637 Q2863.59 48.594 2862.29 45.5725 Q2860.29 40.97 2856.18 40.97 Q2850.34 40.97 2846.9 45.9941 Q2846.48 46.6265 2845.99 46.6616 Q2845.29 46.6616 2845.11 46.2752 Q2844.97 45.8536 2844.97 44.7644 L2844.97 23.4734 Q2844.97 21.7519 2845.67 21.7519 Q2845.95 21.7519 2846.55 21.9627 Q2851.08 23.9653 2856.11 24.0004 Q2861.27 24.0004 2865.91 21.8924 Q2866.26 21.6816 2866.47 21.6816 Q2867.17 21.6816 2867.21 22.4897 Q2867.21 22.7707 2866.61 23.6139 Q2866.05 24.422 2864.82 25.5112 Q2863.59 26.5652 2862.01 27.5841 Q2860.43 28.6029 2858.11 29.3056 Q2855.83 29.9731 2853.3 29.9731 Q2850.27 29.9731 2847.18 29.0245 L2847.18 43.0429 Q2850.91 39.389 2856.32 39.389 Q2862.08 39.389 2866.05 44.0266 Q2870.02 48.6643 2870.02 55.1288 Q2870.02 61.9096 2865.31 66.5473 Q2860.64 71.1849 2854.31 71.1849 Q2848.55 71.1849 2844.9 67.0743 Q2841.28 62.9637 2841.28 58.0098 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip414)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,604.472 2391.23,604.441 2393.08,604.408 2394.93,604.373 2396.79,604.336 2398.64,604.297 2400.49,604.255 2402.34,604.211 2404.2,604.164 2406.05,604.114 \n",
" 2407.9,604.061 2409.76,604.005 2411.61,603.946 2413.46,603.883 2415.31,603.817 2417.17,603.746 2419.02,603.672 2420.87,603.593 2422.73,603.51 2424.58,603.422 \n",
" 2426.43,603.329 2428.28,603.231 2430.14,603.127 2431.99,603.018 2433.84,602.903 2435.7,602.781 2437.55,602.653 2439.4,602.518 2441.25,602.376 2443.11,602.226 \n",
" 2444.96,602.069 2446.81,601.903 2448.67,601.729 2450.52,601.546 2452.37,601.353 2454.22,601.151 2456.08,600.938 2457.93,600.715 2459.78,600.481 2461.64,600.236 \n",
" 2463.49,599.978 2465.34,599.709 2467.19,599.426 2469.05,599.13 2470.9,598.82 2472.75,598.495 2474.61,598.156 2476.46,597.8 2478.31,597.429 2480.16,597.041 \n",
" 2482.02,596.636 2483.87,596.213 2485.72,595.771 2487.58,595.31 2489.43,594.829 2491.28,594.327 2493.13,593.805 2494.99,593.26 2496.84,592.693 2498.69,592.102 \n",
" 2500.55,591.488 2502.4,590.848 2504.25,590.183 2506.1,589.492 2507.96,588.774 2509.81,588.028 2511.66,587.254 2513.52,586.45 2515.37,585.616 2517.22,584.751 \n",
" 2519.07,583.854 2520.93,582.925 2522.78,581.962 2524.63,580.965 2526.49,579.934 2528.34,578.866 2530.19,577.762 2532.04,576.621 2533.9,575.442 2535.75,574.223 \n",
" 2537.6,572.965 2539.46,571.667 2541.31,570.327 2543.16,568.945 2545.01,567.52 2546.87,566.052 2548.72,564.54 2550.57,562.983 2552.43,561.381 2554.28,559.732 \n",
" 2556.13,558.037 2557.99,556.294 2559.84,554.503 2561.69,552.664 2563.54,550.775 2565.4,548.837 2567.25,546.849 2569.1,544.811 2570.96,542.722 2572.81,540.582 \n",
" 2574.66,538.39 2576.51,536.146 2578.37,533.851 2580.22,531.503 2582.07,529.103 2583.93,526.651 2585.78,524.146 2587.63,521.589 2589.48,518.979 2591.34,516.318 \n",
" 2593.19,513.604 2595.04,510.839 2596.9,508.022 2598.75,505.154 2600.6,502.236 2602.45,499.267 2604.31,496.249 2606.16,493.182 2608.01,490.067 2609.87,486.904 \n",
" 2611.72,483.694 2613.57,480.439 2615.42,477.138 2617.28,473.794 2619.13,470.408 2620.98,466.979 2622.84,463.511 2624.69,460.004 2626.54,456.459 2628.39,452.878 \n",
" 2630.25,449.263 2632.1,445.615 2633.95,441.935 2635.81,438.227 2637.66,434.49 2639.51,430.728 2641.36,426.943 2643.22,423.135 2645.07,419.308 2646.92,415.464 \n",
" 2648.78,411.605 2650.63,407.732 2652.48,403.849 2654.33,399.958 2656.19,396.062 2658.04,392.162 2659.89,388.261 2661.75,384.363 2663.6,380.469 2665.45,376.583 \n",
" 2667.3,372.707 2669.16,368.843 2671.01,364.996 2672.86,361.167 2674.72,357.359 2676.57,353.576 2678.42,349.82 2680.27,346.094 2682.13,342.401 2683.98,338.744 \n",
" 2685.83,335.127 2687.69,331.551 2689.54,328.02 2691.39,324.537 2693.24,321.105 2695.1,317.727 2696.95,314.405 2698.8,311.143 2700.66,307.943 2702.51,304.808 \n",
" 2704.36,301.741 2706.21,298.745 2708.07,295.823 2709.92,292.976 2711.77,290.209 2713.63,287.522 2715.48,284.92 2717.33,282.403 2719.18,279.975 2721.04,277.638 \n",
" 2722.89,275.394 2724.74,273.245 2726.6,271.193 2728.45,269.241 2730.3,267.39 2732.15,265.641 2734.01,263.997 2735.86,262.46 2737.71,261.03 2739.57,259.709 \n",
" 2741.42,258.499 2743.27,257.4 2745.12,256.414 2746.98,255.542 2748.83,254.784 2750.68,254.141 2752.54,253.615 2754.39,253.205 2756.24,252.911 2758.09,252.735 \n",
" 2759.95,252.677 2761.8,252.735 2763.65,252.911 2765.51,253.205 2767.36,253.615 2769.21,254.141 2771.06,254.784 2772.92,255.542 2774.77,256.414 2776.62,257.4 \n",
" 2778.48,258.499 2780.33,259.709 2782.18,261.03 2784.04,262.46 2785.89,263.997 2787.74,265.641 2789.59,267.39 2791.45,269.241 2793.3,271.193 2795.15,273.245 \n",
" 2797.01,275.394 2798.86,277.638 2800.71,279.975 2802.56,282.403 2804.42,284.92 2806.27,287.522 2808.12,290.209 2809.98,292.976 2811.83,295.823 2813.68,298.745 \n",
" 2815.53,301.741 2817.39,304.808 2819.24,307.943 2821.09,311.143 2822.95,314.405 2824.8,317.727 2826.65,321.105 2828.5,324.537 2830.36,328.02 2832.21,331.551 \n",
" 2834.06,335.127 2835.92,338.744 2837.77,342.401 2839.62,346.094 2841.47,349.82 2843.33,353.576 2845.18,357.359 2847.03,361.167 2848.89,364.996 2850.74,368.843 \n",
" 2852.59,372.707 2854.44,376.583 2856.3,380.469 2858.15,384.363 2860,388.261 2861.86,392.162 2863.71,396.062 2865.56,399.958 2867.41,403.849 2869.27,407.732 \n",
" 2871.12,411.605 2872.97,415.464 2874.83,419.308 2876.68,423.135 2878.53,426.943 2880.38,430.728 2882.24,434.49 2884.09,438.227 2885.94,441.935 2887.8,445.615 \n",
" 2889.65,449.263 2891.5,452.878 2893.35,456.459 2895.21,460.004 2897.06,463.511 2898.91,466.979 2900.77,470.408 2902.62,473.794 2904.47,477.138 2906.32,480.439 \n",
" 2908.18,483.694 2910.03,486.904 2911.88,490.067 2913.74,493.182 2915.59,496.249 2917.44,499.267 2919.29,502.236 2921.15,505.154 2923,508.022 2924.85,510.839 \n",
" 2926.71,513.604 2928.56,516.318 2930.41,518.979 2932.26,521.589 2934.12,524.146 2935.97,526.651 2937.82,529.103 2939.68,531.503 2941.53,533.851 2943.38,536.146 \n",
" 2945.23,538.39 2947.09,540.582 2948.94,542.722 2950.79,544.811 2952.65,546.849 2954.5,548.837 2956.35,550.775 2958.2,552.664 2960.06,554.503 2961.91,556.294 \n",
" 2963.76,558.037 2965.62,559.732 2967.47,561.381 2969.32,562.983 2971.17,564.54 2973.03,566.052 2974.88,567.52 2976.73,568.945 2978.59,570.327 2980.44,571.667 \n",
" 2982.29,572.965 2984.14,574.223 2986,575.442 2987.85,576.621 2989.7,577.762 2991.56,578.866 2993.41,579.934 2995.26,580.965 2997.11,581.962 2998.97,582.925 \n",
" 3000.82,583.854 3002.67,584.751 3004.53,585.616 3006.38,586.45 3008.23,587.254 3010.09,588.028 3011.94,588.774 3013.79,589.492 3015.64,590.183 3017.5,590.848 \n",
" 3019.35,591.488 3021.2,592.102 3023.06,592.693 3024.91,593.26 3026.76,593.805 3028.61,594.327 3030.47,594.829 3032.32,595.31 3034.17,595.771 3036.03,596.213 \n",
" 3037.88,596.636 3039.73,597.041 3041.58,597.429 3043.44,597.8 3045.29,598.156 3047.14,598.495 3049,598.82 3050.85,599.13 3052.7,599.426 3054.55,599.709 \n",
" 3056.41,599.978 3058.26,600.236 3060.11,600.481 3061.97,600.715 3063.82,600.938 3065.67,601.151 3067.52,601.353 3069.38,601.546 3071.23,601.729 3073.08,601.903 \n",
" 3074.94,602.069 3076.79,602.226 3078.64,602.376 3080.49,602.518 3082.35,602.653 3084.2,602.781 3086.05,602.903 3087.91,603.018 3089.76,603.127 3091.61,603.231 \n",
" 3093.46,603.329 3095.32,603.422 3097.17,603.51 3099.02,603.593 3100.88,603.672 3102.73,603.746 3104.58,603.817 3106.43,603.883 3108.29,603.946 3110.14,604.005 \n",
" 3111.99,604.061 3113.85,604.114 3115.7,604.164 3117.55,604.211 3119.4,604.255 3121.26,604.297 3123.11,604.336 3124.96,604.373 3126.82,604.408 3128.67,604.441 \n",
" 3130.52,604.472 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M233.806 1404.92 L1019.42 1404.92 L1019.42 921.312 L233.806 921.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip415\">\n",
" <rect x=\"233\" y=\"921\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 256.041,1404.92 256.041,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 441.328,1404.92 441.328,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 626.614,1404.92 626.614,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 811.901,1404.92 811.901,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 997.188,1404.92 997.188,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1404.92 1019.42,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,1404.92 256.041,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 441.328,1404.92 441.328,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 626.614,1404.92 626.614,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 811.901,1404.92 811.901,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 997.188,1404.92 997.188,1386.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M225.983 1456.89 L255.659 1456.89 L255.659 1460.83 L225.983 1460.83 L225.983 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M269.779 1469.78 L286.098 1469.78 L286.098 1473.72 L264.154 1473.72 L264.154 1469.78 Q266.816 1467.03 271.399 1462.4 Q276.006 1457.75 277.186 1456.41 Q279.432 1453.88 280.311 1452.15 Q281.214 1450.39 281.214 1448.7 Q281.214 1445.94 279.27 1444.21 Q277.348 1442.47 274.247 1442.47 Q272.048 1442.47 269.594 1443.23 Q267.163 1444 264.386 1445.55 L264.386 1440.83 Q267.21 1439.69 269.663 1439.11 Q272.117 1438.53 274.154 1438.53 Q279.524 1438.53 282.719 1441.22 Q285.913 1443.91 285.913 1448.4 Q285.913 1450.53 285.103 1452.45 Q284.316 1454.34 282.21 1456.94 Q281.631 1457.61 278.529 1460.83 Q275.427 1464.02 269.779 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M411.085 1456.89 L440.76 1456.89 L440.76 1460.83 L411.085 1460.83 L411.085 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M451.663 1469.78 L459.302 1469.78 L459.302 1443.42 L450.992 1445.09 L450.992 1440.83 L459.256 1439.16 L463.932 1439.16 L463.932 1469.78 L471.57 1469.78 L471.57 1473.72 L451.663 1473.72 L451.663 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M626.614 1442.24 Q623.003 1442.24 621.175 1445.8 Q619.369 1449.34 619.369 1456.47 Q619.369 1463.58 621.175 1467.15 Q623.003 1470.69 626.614 1470.69 Q630.249 1470.69 632.054 1467.15 Q633.883 1463.58 633.883 1456.47 Q633.883 1449.34 632.054 1445.8 Q630.249 1442.24 626.614 1442.24 M626.614 1438.53 Q632.425 1438.53 635.48 1443.14 Q638.559 1447.72 638.559 1456.47 Q638.559 1465.2 635.48 1469.81 Q632.425 1474.39 626.614 1474.39 Q620.804 1474.39 617.726 1469.81 Q614.67 1465.2 614.67 1456.47 Q614.67 1447.72 617.726 1443.14 Q620.804 1438.53 626.614 1438.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M802.283 1469.78 L809.922 1469.78 L809.922 1443.42 L801.612 1445.09 L801.612 1440.83 L809.876 1439.16 L814.552 1439.16 L814.552 1469.78 L822.191 1469.78 L822.191 1473.72 L802.283 1473.72 L802.283 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M991.841 1469.78 L1008.16 1469.78 L1008.16 1473.72 L986.216 1473.72 L986.216 1469.78 Q988.878 1467.03 993.461 1462.4 Q998.068 1457.75 999.248 1456.41 Q1001.49 1453.88 1002.37 1452.15 Q1003.28 1450.39 1003.28 1448.7 Q1003.28 1445.94 1001.33 1444.21 Q999.41 1442.47 996.309 1442.47 Q994.109 1442.47 991.656 1443.23 Q989.225 1444 986.447 1445.55 L986.447 1440.83 Q989.272 1439.69 991.725 1439.11 Q994.179 1438.53 996.216 1438.53 Q1001.59 1438.53 1004.78 1441.22 Q1007.98 1443.91 1007.98 1448.4 Q1007.98 1450.53 1007.16 1452.45 Q1006.38 1454.34 1004.27 1456.94 Q1003.69 1457.61 1000.59 1460.83 Q997.489 1464.02 991.841 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M640.792 1522.54 Q640.792 1524.34 639.665 1525.37 Q638.538 1526.37 637.25 1526.37 Q636.026 1526.37 635.382 1525.66 Q634.738 1524.95 634.738 1524.05 Q634.738 1522.83 635.639 1521.76 Q636.541 1520.7 637.894 1520.47 Q636.573 1519.64 634.609 1519.64 Q633.321 1519.64 632.193 1520.31 Q631.098 1520.99 630.422 1521.86 Q629.778 1522.73 629.198 1523.99 Q628.651 1525.21 628.425 1525.95 Q628.232 1526.66 628.071 1527.43 L625.817 1536.45 Q624.722 1540.73 624.722 1542.25 Q624.722 1544.11 625.623 1545.37 Q626.525 1546.59 628.329 1546.59 Q629.037 1546.59 629.842 1546.4 Q630.647 1546.17 631.678 1545.6 Q632.741 1544.98 633.675 1544.08 Q634.641 1543.15 635.575 1541.57 Q636.509 1539.99 637.121 1537.96 Q637.314 1537.25 637.958 1537.25 Q638.763 1537.25 638.763 1537.9 Q638.763 1538.45 638.312 1539.6 Q637.894 1540.73 636.96 1542.21 Q636.058 1543.66 634.866 1544.98 Q633.675 1546.27 631.903 1547.17 Q630.132 1548.08 628.2 1548.08 Q625.43 1548.08 623.594 1546.59 Q621.759 1545.11 621.082 1543.05 Q620.921 1543.34 620.696 1543.73 Q620.47 1544.11 619.794 1544.98 Q619.15 1545.82 618.409 1546.46 Q617.668 1547.08 616.509 1547.56 Q615.382 1548.08 614.158 1548.08 Q612.612 1548.08 611.227 1547.62 Q609.875 1547.17 608.908 1546.14 Q607.942 1545.11 607.942 1543.7 Q607.942 1542.12 609.005 1541.02 Q610.1 1539.89 611.582 1539.89 Q612.516 1539.89 613.256 1540.44 Q614.029 1540.99 614.029 1542.18 Q614.029 1543.5 613.127 1544.5 Q612.226 1545.5 610.937 1545.76 Q612.258 1546.59 614.222 1546.59 Q616.348 1546.59 618.023 1544.73 Q619.697 1542.86 620.503 1539.73 Q622.499 1532.23 623.272 1528.88 Q624.045 1525.5 624.045 1524.05 Q624.045 1522.7 623.691 1521.76 Q623.337 1520.83 622.725 1520.41 Q622.145 1519.96 621.598 1519.8 Q621.082 1519.64 620.503 1519.64 Q619.536 1519.64 618.441 1520.02 Q617.379 1520.41 616.09 1521.31 Q614.834 1522.18 613.643 1523.99 Q612.451 1525.79 611.646 1528.27 Q611.485 1529.01 610.776 1529.01 Q610.003 1528.98 610.003 1528.33 Q610.003 1527.79 610.422 1526.66 Q610.873 1525.5 611.775 1524.05 Q612.709 1522.6 613.9 1521.31 Q615.124 1519.99 616.896 1519.09 Q618.699 1518.19 620.631 1518.19 Q621.501 1518.19 622.338 1518.38 Q623.208 1518.54 624.238 1519.03 Q625.301 1519.51 626.235 1520.57 Q627.169 1521.63 627.749 1523.18 Q628.135 1522.44 628.651 1521.73 Q629.198 1521.02 630.036 1520.15 Q630.905 1519.25 632.097 1518.74 Q633.321 1518.19 634.673 1518.19 Q635.994 1518.19 637.282 1518.54 Q638.57 1518.86 639.665 1519.93 Q640.792 1520.96 640.792 1522.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1404.92 1019.42,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1308.2 1019.42,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1211.48 1019.42,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1114.76 1019.42,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1018.03 1019.42,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip415)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,921.312 1019.42,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1404.92 233.806,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1404.92 252.704,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1308.2 252.704,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1211.48 252.704,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1114.76 252.704,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1018.03 252.704,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,921.312 252.704,921.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M128.631 1390.72 Q125.02 1390.72 123.191 1394.28 Q121.385 1397.82 121.385 1404.95 Q121.385 1412.06 123.191 1415.63 Q125.02 1419.17 128.631 1419.17 Q132.265 1419.17 134.07 1415.63 Q135.899 1412.06 135.899 1404.95 Q135.899 1397.82 134.07 1394.28 Q132.265 1390.72 128.631 1390.72 M128.631 1387.01 Q134.441 1387.01 137.496 1391.62 Q140.575 1396.2 140.575 1404.95 Q140.575 1413.68 137.496 1418.29 Q134.441 1422.87 128.631 1422.87 Q122.82 1422.87 119.742 1418.29 Q116.686 1413.68 116.686 1404.95 Q116.686 1396.2 119.742 1391.62 Q122.82 1387.01 128.631 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 1416.32 L153.677 1416.32 L153.677 1422.2 L148.793 1422.2 L148.793 1416.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 1390.72 Q170.251 1390.72 168.422 1394.28 Q166.617 1397.82 166.617 1404.95 Q166.617 1412.06 168.422 1415.63 Q170.251 1419.17 173.862 1419.17 Q177.496 1419.17 179.302 1415.63 Q181.13 1412.06 181.13 1404.95 Q181.13 1397.82 179.302 1394.28 Q177.496 1390.72 173.862 1390.72 M173.862 1387.01 Q179.672 1387.01 182.728 1391.62 Q185.806 1396.2 185.806 1404.95 Q185.806 1413.68 182.728 1418.29 Q179.672 1422.87 173.862 1422.87 Q168.052 1422.87 164.973 1418.29 Q161.918 1413.68 161.918 1404.95 Q161.918 1396.2 164.973 1391.62 Q168.052 1387.01 173.862 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M130.228 1294 Q126.617 1294 124.788 1297.56 Q122.983 1301.1 122.983 1308.23 Q122.983 1315.34 124.788 1318.9 Q126.617 1322.45 130.228 1322.45 Q133.862 1322.45 135.668 1318.9 Q137.496 1315.34 137.496 1308.23 Q137.496 1301.1 135.668 1297.56 Q133.862 1294 130.228 1294 M130.228 1290.29 Q136.038 1290.29 139.094 1294.9 Q142.172 1299.48 142.172 1308.23 Q142.172 1316.96 139.094 1321.57 Q136.038 1326.15 130.228 1326.15 Q124.418 1326.15 121.339 1321.57 Q118.283 1316.96 118.283 1308.23 Q118.283 1299.48 121.339 1294.9 Q124.418 1290.29 130.228 1290.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M150.39 1319.6 L155.274 1319.6 L155.274 1325.48 L150.39 1325.48 L150.39 1319.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M169.487 1321.54 L185.806 1321.54 L185.806 1325.48 L163.862 1325.48 L163.862 1321.54 Q166.524 1318.79 171.107 1314.16 Q175.714 1309.51 176.894 1308.16 Q179.14 1305.64 180.019 1303.9 Q180.922 1302.15 180.922 1300.46 Q180.922 1297.7 178.978 1295.96 Q177.056 1294.23 173.954 1294.23 Q171.755 1294.23 169.302 1294.99 Q166.871 1295.76 164.093 1297.31 L164.093 1292.58 Q166.917 1291.45 169.371 1290.87 Q171.825 1290.29 173.862 1290.29 Q179.232 1290.29 182.427 1292.98 Q185.621 1295.66 185.621 1300.15 Q185.621 1302.28 184.811 1304.21 Q184.024 1306.1 181.917 1308.7 Q181.339 1309.37 178.237 1312.58 Q175.135 1315.78 169.487 1321.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.145 1197.28 Q124.533 1197.28 122.705 1200.84 Q120.899 1204.38 120.899 1211.51 Q120.899 1218.62 122.705 1222.18 Q124.533 1225.72 128.145 1225.72 Q131.779 1225.72 133.584 1222.18 Q135.413 1218.62 135.413 1211.51 Q135.413 1204.38 133.584 1200.84 Q131.779 1197.28 128.145 1197.28 M128.145 1193.57 Q133.955 1193.57 137.01 1198.18 Q140.089 1202.76 140.089 1211.51 Q140.089 1220.24 137.01 1224.84 Q133.955 1229.43 128.145 1229.43 Q122.334 1229.43 119.256 1224.84 Q116.2 1220.24 116.2 1211.51 Q116.2 1202.76 119.256 1198.18 Q122.334 1193.57 128.145 1193.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.306 1222.88 L153.191 1222.88 L153.191 1228.76 L148.306 1228.76 L148.306 1222.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M176.223 1198.27 L164.417 1216.72 L176.223 1216.72 L176.223 1198.27 M174.996 1194.2 L180.876 1194.2 L180.876 1216.72 L185.806 1216.72 L185.806 1220.61 L180.876 1220.61 L180.876 1228.76 L176.223 1228.76 L176.223 1220.61 L160.621 1220.61 L160.621 1216.09 L174.996 1194.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.469 1100.55 Q124.858 1100.55 123.029 1104.12 Q121.223 1107.66 121.223 1114.79 Q121.223 1121.9 123.029 1125.46 Q124.858 1129 128.469 1129 Q132.103 1129 133.908 1125.46 Q135.737 1121.9 135.737 1114.79 Q135.737 1107.66 133.908 1104.12 Q132.103 1100.55 128.469 1100.55 M128.469 1096.85 Q134.279 1096.85 137.334 1101.46 Q140.413 1106.04 140.413 1114.79 Q140.413 1123.52 137.334 1128.12 Q134.279 1132.71 128.469 1132.71 Q122.658 1132.71 119.58 1128.12 Q116.524 1123.52 116.524 1114.79 Q116.524 1106.04 119.58 1101.46 Q122.658 1096.85 128.469 1096.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.631 1126.16 L153.515 1126.16 L153.515 1132.04 L148.631 1132.04 L148.631 1126.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M174.279 1112.89 Q171.13 1112.89 169.279 1115.04 Q167.45 1117.2 167.45 1120.95 Q167.45 1124.67 169.279 1126.85 Q171.13 1129 174.279 1129 Q177.427 1129 179.255 1126.85 Q181.107 1124.67 181.107 1120.95 Q181.107 1117.2 179.255 1115.04 Q177.427 1112.89 174.279 1112.89 M183.561 1098.24 L183.561 1102.5 Q181.802 1101.67 179.996 1101.23 Q178.214 1100.79 176.454 1100.79 Q171.825 1100.79 169.371 1103.91 Q166.941 1107.04 166.593 1113.35 Q167.959 1111.34 170.019 1110.28 Q172.079 1109.19 174.556 1109.19 Q179.765 1109.19 182.774 1112.36 Q185.806 1115.51 185.806 1120.95 Q185.806 1126.27 182.658 1129.49 Q179.51 1132.71 174.279 1132.71 Q168.283 1132.71 165.112 1128.12 Q161.941 1123.52 161.941 1114.79 Q161.941 1106.6 165.83 1101.73 Q169.718 1096.85 176.269 1096.85 Q178.029 1096.85 179.811 1097.2 Q181.616 1097.54 183.561 1098.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.723 1003.83 Q125.112 1003.83 123.283 1007.4 Q121.478 1010.94 121.478 1018.07 Q121.478 1025.17 123.283 1028.74 Q125.112 1032.28 128.723 1032.28 Q132.357 1032.28 134.163 1028.74 Q135.992 1025.17 135.992 1018.07 Q135.992 1010.94 134.163 1007.4 Q132.357 1003.83 128.723 1003.83 M128.723 1000.13 Q134.533 1000.13 137.589 1004.74 Q140.668 1009.32 140.668 1018.07 Q140.668 1026.8 137.589 1031.4 Q134.533 1035.98 128.723 1035.98 Q122.913 1035.98 119.834 1031.4 Q116.779 1026.8 116.779 1018.07 Q116.779 1009.32 119.834 1004.74 Q122.913 1000.13 128.723 1000.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.885 1029.43 L153.769 1029.43 L153.769 1035.31 L148.885 1035.31 L148.885 1029.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.954 1018.9 Q170.621 1018.9 168.7 1020.68 Q166.802 1022.47 166.802 1025.59 Q166.802 1028.72 168.7 1030.5 Q170.621 1032.28 173.954 1032.28 Q177.288 1032.28 179.209 1030.5 Q181.13 1028.69 181.13 1025.59 Q181.13 1022.47 179.209 1020.68 Q177.311 1018.9 173.954 1018.9 M169.279 1016.91 Q166.269 1016.17 164.58 1014.11 Q162.913 1012.05 162.913 1009.09 Q162.913 1004.94 165.853 1002.54 Q168.816 1000.13 173.954 1000.13 Q179.116 1000.13 182.056 1002.54 Q184.996 1004.94 184.996 1009.09 Q184.996 1012.05 183.306 1014.11 Q181.64 1016.17 178.654 1016.91 Q182.033 1017.7 183.908 1019.99 Q185.806 1022.28 185.806 1025.59 Q185.806 1030.61 182.728 1033.3 Q179.672 1035.98 173.954 1035.98 Q168.237 1035.98 165.158 1033.3 Q162.103 1030.61 162.103 1025.59 Q162.103 1022.28 164.001 1019.99 Q165.899 1017.7 169.279 1016.91 M167.566 1009.53 Q167.566 1012.21 169.232 1013.72 Q170.922 1015.22 173.954 1015.22 Q176.964 1015.22 178.654 1013.72 Q180.366 1012.21 180.366 1009.53 Q180.366 1006.84 178.654 1005.34 Q176.964 1003.83 173.954 1003.83 Q170.922 1003.83 169.232 1005.34 Q167.566 1006.84 167.566 1009.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M119.441 934.657 L127.08 934.657 L127.08 908.291 L118.77 909.958 L118.77 905.699 L127.033 904.032 L131.709 904.032 L131.709 934.657 L139.348 934.657 L139.348 938.592 L119.441 938.592 L119.441 934.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 932.713 L153.677 932.713 L153.677 938.592 L148.793 938.592 L148.793 932.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 907.111 Q170.251 907.111 168.422 910.676 Q166.617 914.217 166.617 921.347 Q166.617 928.453 168.422 932.018 Q170.251 935.56 173.862 935.56 Q177.496 935.56 179.302 932.018 Q181.13 928.453 181.13 921.347 Q181.13 914.217 179.302 910.676 Q177.496 907.111 173.862 907.111 M173.862 903.407 Q179.672 903.407 182.728 908.014 Q185.806 912.597 185.806 921.347 Q185.806 930.074 182.728 934.68 Q179.672 939.263 173.862 939.263 Q168.052 939.263 164.973 934.68 Q161.918 930.074 161.918 921.347 Q161.918 912.597 164.973 908.014 Q168.052 903.407 173.862 903.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.0468 1219.57 Q15.8182 1219.57 16.9132 1220.7 Q18.0082 1221.79 18.0082 1223.18 Q18.0082 1224.18 17.3962 1224.92 Q16.7843 1225.63 15.7215 1225.63 Q14.6265 1225.63 13.4671 1224.79 Q12.3077 1223.95 12.1467 1222.05 Q10.9551 1223.31 10.9551 1225.3 Q10.9551 1226.3 11.5992 1227.14 Q12.2111 1227.95 13.2095 1228.4 Q14.2401 1228.88 20.0693 1229.97 Q21.9695 1230.33 23.8052 1230.65 Q25.6409 1230.97 27.5733 1231.36 L27.5733 1225.88 Q27.5733 1225.18 27.6055 1224.89 Q27.6377 1224.6 27.7987 1224.37 Q27.9598 1224.11 28.314 1224.11 Q29.2158 1224.11 29.4412 1224.53 Q29.6345 1224.92 29.6345 1226.08 L29.6345 1231.75 L50.5361 1235.71 Q51.148 1235.8 53.0803 1236.22 Q54.9805 1236.61 58.1045 1237.54 Q61.2606 1238.48 63.1286 1239.41 Q64.1914 1239.93 65.1897 1240.6 Q66.2203 1241.25 67.2509 1242.18 Q68.2815 1243.11 68.8934 1244.34 Q69.5375 1245.56 69.5375 1246.85 Q69.5375 1249.04 68.3137 1250.75 Q67.0899 1252.45 64.9965 1252.45 Q63.2252 1252.45 62.1302 1251.36 Q61.0352 1250.23 61.0352 1248.85 Q61.0352 1247.85 61.6471 1247.14 Q62.259 1246.4 63.3218 1246.4 Q63.7727 1246.4 64.288 1246.56 Q64.8033 1246.72 65.383 1247.08 Q65.9949 1247.43 66.4136 1248.2 Q66.8322 1248.98 66.8967 1250.04 Q68.0883 1248.78 68.0883 1246.85 Q68.0883 1246.24 67.8306 1245.69 Q67.6052 1245.14 67.0255 1244.69 Q66.4458 1244.21 65.8661 1243.86 Q65.3186 1243.5 64.2558 1243.15 Q63.2252 1242.79 62.4522 1242.57 Q61.6793 1242.34 60.2945 1242.05 Q58.9096 1241.73 58.0722 1241.57 Q57.2671 1241.41 55.689 1241.12 L29.6345 1236.19 L29.6345 1240.54 Q29.6345 1241.31 29.6023 1241.63 Q29.5701 1241.92 29.409 1242.15 Q29.2158 1242.37 28.8293 1242.37 Q28.2174 1242.37 27.9598 1242.12 Q27.6699 1241.83 27.6377 1241.5 Q27.5733 1241.18 27.5733 1240.41 L27.5733 1235.84 Q19.4252 1234.29 17.2352 1233.68 Q14.9164 1232.97 13.3061 1231.87 Q11.6636 1230.78 10.8907 1229.56 Q10.1177 1228.33 9.82787 1227.33 Q9.50581 1226.3 9.50581 1225.3 Q9.50581 1223.05 10.7296 1221.31 Q11.9212 1219.57 14.0468 1219.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M39.5217 1210.7 Q28.3784 1210.7 19.393 1206.55 Q15.6249 1204.77 12.4687 1202.29 Q9.31258 1199.81 7.92772 1198.17 Q6.54287 1196.53 6.54287 1196.08 Q6.54287 1195.43 7.18699 1195.4 Q7.50905 1195.4 8.31419 1196.27 Q19.1354 1206.9 39.5217 1206.87 Q59.9724 1206.87 70.3749 1196.53 Q71.5021 1195.4 71.8564 1195.4 Q72.5005 1195.4 72.5005 1196.08 Q72.5005 1196.53 71.18 1198.11 Q69.8596 1199.69 66.8322 1202.13 Q63.8049 1204.58 60.1012 1206.35 Q51.1158 1210.7 39.5217 1210.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M31.2126 1157.54 Q33.0161 1157.54 34.0467 1158.67 Q35.0451 1159.8 35.0451 1161.09 Q35.0451 1162.31 34.3365 1162.96 Q33.628 1163.6 32.7262 1163.6 Q31.5024 1163.6 30.4396 1162.7 Q29.3768 1161.8 29.1514 1160.44 Q28.314 1161.76 28.314 1163.73 Q28.314 1165.02 28.9904 1166.14 Q29.6667 1167.24 30.5362 1167.91 Q31.4058 1168.56 32.6618 1169.14 Q33.8856 1169.69 34.6264 1169.91 Q35.3349 1170.1 36.1079 1170.27 L45.1255 1172.52 Q49.4089 1173.62 50.9225 1173.62 Q52.7905 1173.62 54.0465 1172.71 Q55.2703 1171.81 55.2703 1170.01 Q55.2703 1169.3 55.0771 1168.49 Q54.8517 1167.69 54.272 1166.66 Q53.66 1165.6 52.7583 1164.66 Q51.8243 1163.7 50.2462 1162.76 Q48.6681 1161.83 46.6392 1161.22 Q45.9306 1161.02 45.9306 1160.38 Q45.9306 1159.57 46.5748 1159.57 Q47.1223 1159.57 48.2817 1160.02 Q49.4089 1160.44 50.8903 1161.38 Q52.3396 1162.28 53.66 1163.47 Q54.9483 1164.66 55.85 1166.43 Q56.7518 1168.2 56.7518 1170.14 Q56.7518 1172.91 55.2703 1174.74 Q53.7889 1176.58 51.7277 1177.25 Q52.0175 1177.42 52.404 1177.64 Q52.7905 1177.87 53.66 1178.54 Q54.4974 1179.19 55.1415 1179.93 Q55.7534 1180.67 56.2365 1181.83 Q56.7518 1182.95 56.7518 1184.18 Q56.7518 1185.72 56.3009 1187.11 Q55.85 1188.46 54.8195 1189.43 Q53.7889 1190.39 52.3718 1190.39 Q50.7937 1190.39 49.6987 1189.33 Q48.5715 1188.24 48.5715 1186.76 Q48.5715 1185.82 49.119 1185.08 Q49.6665 1184.31 50.8581 1184.31 Q52.1786 1184.31 53.177 1185.21 Q54.1753 1186.11 54.433 1187.4 Q55.2703 1186.08 55.2703 1184.11 Q55.2703 1181.99 53.4024 1180.31 Q51.5345 1178.64 48.4105 1177.83 Q40.9065 1175.84 37.5571 1175.06 Q34.1755 1174.29 32.7262 1174.29 Q31.3736 1174.29 30.4396 1174.65 Q29.5057 1175 29.087 1175.61 Q28.6361 1176.19 28.4751 1176.74 Q28.314 1177.25 28.314 1177.83 Q28.314 1178.8 28.7005 1179.9 Q29.087 1180.96 29.9887 1182.25 Q30.8583 1183.5 32.6618 1184.69 Q34.4654 1185.89 36.9452 1186.69 Q37.6859 1186.85 37.6859 1187.56 Q37.6537 1188.33 37.0096 1188.33 Q36.4621 1188.33 35.3349 1187.91 Q34.1755 1187.46 32.7262 1186.56 Q31.277 1185.63 29.9887 1184.44 Q28.6683 1183.21 27.7665 1181.44 Q26.8648 1179.64 26.8648 1177.71 Q26.8648 1176.84 27.058 1176 Q27.219 1175.13 27.7021 1174.1 Q28.1852 1173.04 29.248 1172.1 Q30.3108 1171.17 31.8567 1170.59 Q31.1159 1170.2 30.4074 1169.69 Q29.6989 1169.14 28.8293 1168.3 Q27.9276 1167.43 27.4123 1166.24 Q26.8648 1165.02 26.8648 1163.66 Q26.8648 1162.34 27.219 1161.05 Q27.5411 1159.77 28.6039 1158.67 Q29.6345 1157.54 31.2126 1157.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M54.9483 1152.12 Q53.8855 1153.05 52.5006 1153.05 Q51.1158 1153.05 50.0852 1152.15 Q49.0224 1151.21 49.0224 1149.54 Q49.0224 1147.58 50.9225 1146.45 Q52.7905 1145.32 55.9467 1145.32 Q59.3605 1145.32 62.5167 1146.71 Q65.705 1148.09 67.2187 1149.44 Q68.7324 1150.8 68.7324 1151.34 Q68.7324 1151.99 68.0239 1151.99 Q67.7662 1151.99 67.2831 1151.54 Q62.1946 1146.8 55.9467 1146.77 Q54.9483 1146.77 54.9483 1146.9 L55.0771 1147.06 Q56.0111 1148.19 56.0111 1149.54 Q56.0111 1151.18 54.9483 1152.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M28.314 1104.26 Q29.2158 1104.26 29.4412 1104.68 Q29.6345 1105.09 29.6345 1106.25 L29.6345 1112.44 L49.0868 1117.33 Q50.7937 1117.72 52.243 1117.72 Q53.8533 1117.72 54.5618 1117.24 Q55.2703 1116.72 55.2703 1115.66 Q55.2703 1113.56 53.3702 1111.31 Q51.47 1109.02 46.8324 1107.09 Q46.2205 1106.83 46.0917 1106.7 Q45.9306 1106.54 45.9306 1106.12 Q45.9306 1105.32 46.5748 1105.32 Q46.8002 1105.32 47.8308 1105.77 Q48.8614 1106.19 50.375 1107.12 Q51.8887 1108.02 53.3058 1109.22 Q54.7228 1110.38 55.7534 1112.15 Q56.7518 1113.92 56.7518 1115.82 Q56.7518 1118.49 55.0449 1120.2 Q53.338 1121.87 50.6649 1121.87 Q49.7953 1121.87 47.0256 1121.2 Q44.2237 1120.52 29.6345 1116.85 L29.6345 1122.68 Q29.6345 1123.48 29.6023 1123.81 Q29.5701 1124.1 29.409 1124.32 Q29.2158 1124.51 28.8293 1124.51 Q28.2174 1124.51 27.9598 1124.26 Q27.6699 1124 27.6377 1123.68 Q27.5733 1123.32 27.5733 1122.52 L27.5733 1116.33 L17.1064 1113.76 Q16.0758 1113.5 15.4961 1112.86 Q14.8842 1112.18 14.8198 1111.79 Q14.7232 1111.41 14.7232 1111.12 Q14.7232 1110.25 15.2062 1109.73 Q15.6571 1109.22 16.4945 1109.22 Q16.9454 1109.22 27.5733 1111.92 L27.5733 1106.12 Q27.5733 1105.38 27.6055 1105.09 Q27.6377 1104.77 27.7987 1104.51 Q27.9598 1104.26 28.314 1104.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M71.8564 1099.1 Q71.5343 1099.1 70.7292 1098.26 Q59.908 1087.63 39.5217 1087.63 Q19.071 1087.63 8.73287 1097.84 Q7.54125 1099.1 7.18699 1099.1 Q6.54287 1099.1 6.54287 1098.45 Q6.54287 1098 7.86331 1096.43 Q9.18375 1094.82 12.2111 1092.4 Q15.2385 1089.95 18.9421 1088.15 Q27.9276 1083.8 39.5217 1083.8 Q50.6649 1083.8 59.6503 1087.96 Q63.4184 1089.73 66.5746 1092.21 Q69.7308 1094.69 71.1156 1096.33 Q72.5005 1097.97 72.5005 1098.45 Q72.5005 1099.1 71.8564 1099.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M524.71 839.389 Q524.71 840.373 524.253 840.619 Q523.797 840.829 522.532 840.829 L515.786 840.829 L510.446 862.05 Q510.024 863.912 510.024 865.493 Q510.024 867.25 510.551 868.023 Q511.113 868.796 512.273 868.796 Q514.557 868.796 517.016 866.723 Q519.51 864.65 521.618 859.591 Q521.899 858.923 522.04 858.783 Q522.216 858.607 522.672 858.607 Q523.551 858.607 523.551 859.31 Q523.551 859.556 523.059 860.68 Q522.602 861.804 521.583 863.456 Q520.6 865.107 519.3 866.653 Q518.035 868.199 516.102 869.323 Q514.17 870.412 512.097 870.412 Q509.181 870.412 507.319 868.55 Q505.492 866.688 505.492 863.772 Q505.492 862.823 506.23 859.802 Q506.968 856.745 510.973 840.829 L504.614 840.829 Q503.735 840.829 503.384 840.794 Q503.068 840.759 502.822 840.584 Q502.611 840.373 502.611 839.951 Q502.611 839.284 502.892 839.002 Q503.173 838.686 503.525 838.651 Q503.911 838.581 504.789 838.581 L511.535 838.581 L514.346 827.162 Q514.627 826.038 515.329 825.406 Q516.067 824.738 516.489 824.668 Q516.91 824.563 517.227 824.563 Q518.175 824.563 518.737 825.09 Q519.3 825.581 519.3 826.495 Q519.3 826.987 516.348 838.581 L522.672 838.581 Q523.48 838.581 523.797 838.616 Q524.148 838.651 524.429 838.827 Q524.71 839.002 524.71 839.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M548.28 858.677 Q548.35 857.799 549.72 857.799 L593.813 857.799 Q595.886 857.799 595.921 858.607 Q595.921 859.485 593.954 859.45 L550.212 859.45 Q548.28 859.485 548.28 858.677 M548.28 844.624 Q548.28 843.746 549.791 843.781 L593.743 843.781 Q595.886 843.781 595.921 844.624 Q595.921 845.432 594.094 845.432 L549.72 845.432 Q548.28 845.432 548.28 844.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M623.659 846.591 Q623.659 836.016 626.329 830.254 Q630.054 821.682 638.837 821.682 Q640.699 821.682 642.631 822.209 Q644.599 822.7 647.058 824.633 Q649.553 826.565 651.063 829.727 Q653.944 835.84 653.944 846.591 Q653.944 857.096 651.274 862.823 Q647.374 871.185 638.767 871.185 Q635.534 871.185 632.232 869.534 Q628.964 867.882 626.892 863.912 Q623.659 857.975 623.659 846.591 M629.632 845.713 Q629.632 856.569 630.405 860.891 Q631.283 865.564 633.672 867.601 Q636.097 869.604 638.767 869.604 Q641.648 869.604 644.037 867.461 Q646.461 865.282 647.199 860.61 Q648.007 856.007 647.972 845.713 Q647.972 835.7 647.269 831.695 Q646.32 827.022 643.791 825.16 Q641.296 823.263 638.767 823.263 Q637.818 823.263 636.799 823.544 Q635.815 823.825 634.375 824.633 Q632.934 825.441 631.81 827.444 Q630.721 829.446 630.194 832.468 Q629.632 836.367 629.632 845.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M660.373 868.445 Q659.284 867.285 659.284 865.774 Q659.284 864.264 660.373 863.174 Q661.462 862.05 663.114 862.05 Q664.695 862.05 665.749 863.104 Q666.838 864.123 666.838 865.809 Q666.838 867.461 665.679 868.55 Q664.554 869.604 663.114 869.604 Q661.462 869.604 660.373 868.445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M679.08 869.604 Q679.08 868.304 679.185 867.918 Q679.326 867.531 679.888 866.934 L693.695 851.545 Q701.249 843.043 701.249 835.63 Q701.249 830.816 698.719 827.373 Q696.225 823.93 691.622 823.93 Q688.46 823.93 685.79 825.863 Q683.12 827.795 681.89 831.238 Q682.101 831.168 682.839 831.168 Q684.631 831.168 685.615 832.292 Q686.633 833.416 686.633 834.927 Q686.633 836.859 685.369 837.808 Q684.139 838.721 682.909 838.721 Q682.417 838.721 681.75 838.616 Q681.117 838.511 680.099 837.527 Q679.08 836.508 679.08 834.716 Q679.08 829.692 682.874 825.687 Q686.704 821.682 692.536 821.682 Q699.141 821.682 703.463 825.617 Q707.819 829.516 707.819 835.63 Q707.819 837.773 707.152 839.74 Q706.519 841.673 705.641 843.183 Q704.798 844.694 702.479 847.118 Q700.16 849.543 698.298 851.264 Q696.436 852.986 692.255 856.64 L684.631 864.053 L697.595 864.053 Q703.919 864.053 704.411 863.491 Q705.114 862.472 705.992 857.096 L707.819 857.096 L705.781 869.604 L679.08 869.604 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M714.993 846.591 Q714.993 836.016 717.663 830.254 Q721.387 821.682 730.17 821.682 Q732.033 821.682 733.965 822.209 Q735.932 822.7 738.392 824.633 Q740.886 826.565 742.397 829.727 Q745.278 835.84 745.278 846.591 Q745.278 857.096 742.608 862.823 Q738.708 871.185 730.1 871.185 Q726.868 871.185 723.565 869.534 Q720.298 867.882 718.225 863.912 Q714.993 857.975 714.993 846.591 M720.965 845.713 Q720.965 856.569 721.738 860.891 Q722.617 865.564 725.006 867.601 Q727.43 869.604 730.1 869.604 Q732.981 869.604 735.37 867.461 Q737.794 865.282 738.532 860.61 Q739.34 856.007 739.305 845.713 Q739.305 835.7 738.603 831.695 Q737.654 827.022 735.124 825.16 Q732.63 823.263 730.1 823.263 Q729.152 823.263 728.133 823.544 Q727.149 823.825 725.709 824.633 Q724.268 825.441 723.144 827.444 Q722.055 829.446 721.528 832.468 Q720.965 836.367 720.965 845.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip415)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,1402.86 257.894,1402.76 259.746,1402.65 261.599,1402.53 263.452,1402.41 265.305,1402.29 267.158,1402.16 269.011,1402.02 270.864,1401.88 272.717,1401.73 \n",
" 274.569,1401.57 276.422,1401.41 278.275,1401.24 280.128,1401.06 281.981,1400.88 283.834,1400.69 285.687,1400.49 287.539,1400.28 289.392,1400.06 291.245,1399.84 \n",
" 293.098,1399.61 294.951,1399.36 296.804,1399.11 298.657,1398.84 300.51,1398.57 302.362,1398.28 304.215,1397.99 306.068,1397.68 307.921,1397.36 309.774,1397.03 \n",
" 311.627,1396.69 313.48,1396.33 315.332,1395.96 317.185,1395.58 319.038,1395.18 320.891,1394.77 322.744,1394.34 324.597,1393.9 326.45,1393.45 328.303,1392.97 \n",
" 330.155,1392.49 332.008,1391.98 333.861,1391.46 335.714,1390.92 337.567,1390.36 339.42,1389.78 341.273,1389.18 343.126,1388.57 344.978,1387.93 346.831,1387.28 \n",
" 348.684,1386.6 350.537,1385.9 352.39,1385.18 354.243,1384.44 356.096,1383.68 357.948,1382.89 359.801,1382.08 361.654,1381.25 363.507,1380.39 365.36,1379.5 \n",
" 367.213,1378.6 369.066,1377.66 370.919,1376.7 372.771,1375.71 374.624,1374.7 376.477,1373.66 378.33,1372.59 380.183,1371.49 382.036,1370.37 383.889,1369.21 \n",
" 385.741,1368.03 387.594,1366.81 389.447,1365.57 391.3,1364.3 393.153,1362.99 395.006,1361.65 396.859,1360.29 398.712,1358.89 400.564,1357.46 402.417,1355.99 \n",
" 404.27,1354.5 406.123,1352.97 407.976,1351.4 409.829,1349.81 411.682,1348.18 413.535,1346.52 415.387,1344.82 417.24,1343.09 419.093,1341.33 420.946,1339.53 \n",
" 422.799,1337.7 424.652,1335.83 426.505,1333.93 428.357,1332 430.21,1330.03 432.063,1328.03 433.916,1326 435.769,1323.93 437.622,1321.83 439.475,1319.69 \n",
" 441.328,1317.52 443.18,1315.32 445.033,1313.09 446.886,1310.82 448.739,1308.52 450.592,1306.19 452.445,1303.83 454.298,1301.44 456.151,1299.02 458.003,1296.57 \n",
" 459.856,1294.09 461.709,1291.58 463.562,1289.05 465.415,1286.49 467.268,1283.9 469.121,1281.28 470.973,1278.64 472.826,1275.98 474.679,1273.29 476.532,1270.58 \n",
" 478.385,1267.85 480.238,1265.1 482.091,1262.33 483.944,1259.54 485.796,1256.73 487.649,1253.91 489.502,1251.07 491.355,1248.22 493.208,1245.35 495.061,1242.47 \n",
" 496.914,1239.58 498.766,1236.69 500.619,1233.78 502.472,1230.87 504.325,1227.95 506.178,1225.03 508.031,1222.1 509.884,1219.18 511.737,1216.25 513.589,1213.33 \n",
" 515.442,1210.41 517.295,1207.5 519.148,1204.59 521.001,1201.69 522.854,1198.8 524.707,1195.92 526.56,1193.05 528.412,1190.2 530.265,1187.36 532.118,1184.54 \n",
" 533.971,1181.74 535.824,1178.96 537.677,1176.2 539.53,1173.47 541.382,1170.77 543.235,1168.09 545.088,1165.44 546.941,1162.82 548.794,1160.23 550.647,1157.68 \n",
" 552.5,1155.16 554.353,1152.69 556.205,1150.25 558.058,1147.85 559.911,1145.49 561.764,1143.18 563.617,1140.91 565.47,1138.69 567.323,1136.52 569.175,1134.4 \n",
" 571.028,1132.33 572.881,1130.31 574.734,1128.35 576.587,1126.44 578.44,1124.59 580.293,1122.79 582.146,1121.06 583.998,1119.39 585.851,1117.78 587.704,1116.23 \n",
" 589.557,1114.75 591.41,1113.33 593.263,1111.98 595.116,1110.69 596.969,1109.48 598.821,1108.33 600.674,1107.25 602.527,1106.24 604.38,1105.31 606.233,1104.45 \n",
" 608.086,1103.66 609.939,1102.94 611.791,1102.3 613.644,1101.73 615.497,1101.24 617.35,1100.82 619.203,1100.48 621.056,1100.21 622.909,1100.02 624.762,1099.91 \n",
" 626.614,1099.87 628.467,1099.91 630.32,1100.02 632.173,1100.21 634.026,1100.48 635.879,1100.82 637.732,1101.24 639.584,1101.73 641.437,1102.3 643.29,1102.94 \n",
" 645.143,1103.66 646.996,1104.45 648.849,1105.31 650.702,1106.24 652.555,1107.25 654.407,1108.33 656.26,1109.48 658.113,1110.69 659.966,1111.98 661.819,1113.33 \n",
" 663.672,1114.75 665.525,1116.23 667.378,1117.78 669.23,1119.39 671.083,1121.06 672.936,1122.79 674.789,1124.59 676.642,1126.44 678.495,1128.35 680.348,1130.31 \n",
" 682.2,1132.33 684.053,1134.4 685.906,1136.52 687.759,1138.69 689.612,1140.91 691.465,1143.18 693.318,1145.49 695.171,1147.85 697.023,1150.25 698.876,1152.69 \n",
" 700.729,1155.16 702.582,1157.68 704.435,1160.23 706.288,1162.82 708.141,1165.44 709.994,1168.09 711.846,1170.77 713.699,1173.47 715.552,1176.2 717.405,1178.96 \n",
" 719.258,1181.74 721.111,1184.54 722.964,1187.36 724.816,1190.2 726.669,1193.05 728.522,1195.92 730.375,1198.8 732.228,1201.69 734.081,1204.59 735.934,1207.5 \n",
" 737.787,1210.41 739.639,1213.33 741.492,1216.25 743.345,1219.18 745.198,1222.1 747.051,1225.03 748.904,1227.95 750.757,1230.87 752.609,1233.78 754.462,1236.69 \n",
" 756.315,1239.58 758.168,1242.47 760.021,1245.35 761.874,1248.22 763.727,1251.07 765.58,1253.91 767.432,1256.73 769.285,1259.54 771.138,1262.33 772.991,1265.1 \n",
" 774.844,1267.85 776.697,1270.58 778.55,1273.29 780.403,1275.98 782.255,1278.64 784.108,1281.28 785.961,1283.9 787.814,1286.49 789.667,1289.05 791.52,1291.58 \n",
" 793.373,1294.09 795.225,1296.57 797.078,1299.02 798.931,1301.44 800.784,1303.83 802.637,1306.19 804.49,1308.52 806.343,1310.82 808.196,1313.09 810.048,1315.32 \n",
" 811.901,1317.52 813.754,1319.69 815.607,1321.83 817.46,1323.93 819.313,1326 821.166,1328.03 823.018,1330.03 824.871,1332 826.724,1333.93 828.577,1335.83 \n",
" 830.43,1337.7 832.283,1339.53 834.136,1341.33 835.989,1343.09 837.841,1344.82 839.694,1346.52 841.547,1348.18 843.4,1349.81 845.253,1351.4 847.106,1352.97 \n",
" 848.959,1354.5 850.812,1355.99 852.664,1357.46 854.517,1358.89 856.37,1360.29 858.223,1361.65 860.076,1362.99 861.929,1364.3 863.782,1365.57 865.634,1366.81 \n",
" 867.487,1368.03 869.34,1369.21 871.193,1370.37 873.046,1371.49 874.899,1372.59 876.752,1373.66 878.605,1374.7 880.457,1375.71 882.31,1376.7 884.163,1377.66 \n",
" 886.016,1378.6 887.869,1379.5 889.722,1380.39 891.575,1381.25 893.428,1382.08 895.28,1382.89 897.133,1383.68 898.986,1384.44 900.839,1385.18 902.692,1385.9 \n",
" 904.545,1386.6 906.398,1387.28 908.25,1387.93 910.103,1388.57 911.956,1389.18 913.809,1389.78 915.662,1390.36 917.515,1390.92 919.368,1391.46 921.221,1391.98 \n",
" 923.073,1392.49 924.926,1392.97 926.779,1393.45 928.632,1393.9 930.485,1394.34 932.338,1394.77 934.191,1395.18 936.043,1395.58 937.896,1395.96 939.749,1396.33 \n",
" 941.602,1396.69 943.455,1397.03 945.308,1397.36 947.161,1397.68 949.014,1397.99 950.866,1398.28 952.719,1398.57 954.572,1398.84 956.425,1399.11 958.278,1399.36 \n",
" 960.131,1399.61 961.984,1399.84 963.837,1400.06 965.689,1400.28 967.542,1400.49 969.395,1400.69 971.248,1400.88 973.101,1401.06 974.954,1401.24 976.807,1401.41 \n",
" 978.659,1401.57 980.512,1401.73 982.365,1401.88 984.218,1402.02 986.071,1402.16 987.924,1402.29 989.777,1402.41 991.63,1402.53 993.482,1402.65 995.335,1402.76 \n",
" 997.188,1402.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M1300.47 1404.92 L2086.09 1404.92 L2086.09 921.312 L1300.47 921.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip416\">\n",
" <rect x=\"1300\" y=\"921\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1322.71,1404.92 1322.71,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1507.99,1404.92 1507.99,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1693.28,1404.92 1693.28,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1878.57,1404.92 1878.57,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2063.85,1404.92 2063.85,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1404.92 2086.09,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,1404.92 1322.71,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1507.99,1404.92 1507.99,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1693.28,1404.92 1693.28,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1878.57,1404.92 1878.57,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2063.85,1404.92 2063.85,1386.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1292.65 1456.89 L1322.33 1456.89 L1322.33 1460.83 L1292.65 1460.83 L1292.65 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1336.45 1469.78 L1352.77 1469.78 L1352.77 1473.72 L1330.82 1473.72 L1330.82 1469.78 Q1333.48 1467.03 1338.07 1462.4 Q1342.67 1457.75 1343.85 1456.41 Q1346.1 1453.88 1346.98 1452.15 Q1347.88 1450.39 1347.88 1448.7 Q1347.88 1445.94 1345.94 1444.21 Q1344.02 1442.47 1340.91 1442.47 Q1338.71 1442.47 1336.26 1443.23 Q1333.83 1444 1331.05 1445.55 L1331.05 1440.83 Q1333.88 1439.69 1336.33 1439.11 Q1338.78 1438.53 1340.82 1438.53 Q1346.19 1438.53 1349.39 1441.22 Q1352.58 1443.91 1352.58 1448.4 Q1352.58 1450.53 1351.77 1452.45 Q1350.98 1454.34 1348.88 1456.94 Q1348.3 1457.61 1345.2 1460.83 Q1342.09 1464.02 1336.45 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1477.75 1456.89 L1507.43 1456.89 L1507.43 1460.83 L1477.75 1460.83 L1477.75 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1518.33 1469.78 L1525.97 1469.78 L1525.97 1443.42 L1517.66 1445.09 L1517.66 1440.83 L1525.92 1439.16 L1530.6 1439.16 L1530.6 1469.78 L1538.24 1469.78 L1538.24 1473.72 L1518.33 1473.72 L1518.33 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1693.28 1442.24 Q1689.67 1442.24 1687.84 1445.8 Q1686.04 1449.34 1686.04 1456.47 Q1686.04 1463.58 1687.84 1467.15 Q1689.67 1470.69 1693.28 1470.69 Q1696.92 1470.69 1698.72 1467.15 Q1700.55 1463.58 1700.55 1456.47 Q1700.55 1449.34 1698.72 1445.8 Q1696.92 1442.24 1693.28 1442.24 M1693.28 1438.53 Q1699.09 1438.53 1702.15 1443.14 Q1705.23 1447.72 1705.23 1456.47 Q1705.23 1465.2 1702.15 1469.81 Q1699.09 1474.39 1693.28 1474.39 Q1687.47 1474.39 1684.39 1469.81 Q1681.34 1465.2 1681.34 1456.47 Q1681.34 1447.72 1684.39 1443.14 Q1687.47 1438.53 1693.28 1438.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1868.95 1469.78 L1876.59 1469.78 L1876.59 1443.42 L1868.28 1445.09 L1868.28 1440.83 L1876.54 1439.16 L1881.22 1439.16 L1881.22 1469.78 L1888.86 1469.78 L1888.86 1473.72 L1868.95 1473.72 L1868.95 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2058.51 1469.78 L2074.83 1469.78 L2074.83 1473.72 L2052.88 1473.72 L2052.88 1469.78 Q2055.54 1467.03 2060.13 1462.4 Q2064.73 1457.75 2065.91 1456.41 Q2068.16 1453.88 2069.04 1452.15 Q2069.94 1450.39 2069.94 1448.7 Q2069.94 1445.94 2068 1444.21 Q2066.08 1442.47 2062.98 1442.47 Q2060.78 1442.47 2058.32 1443.23 Q2055.89 1444 2053.11 1445.55 L2053.11 1440.83 Q2055.94 1439.69 2058.39 1439.11 Q2060.85 1438.53 2062.88 1438.53 Q2068.25 1438.53 2071.45 1441.22 Q2074.64 1443.91 2074.64 1448.4 Q2074.64 1450.53 2073.83 1452.45 Q2073.04 1454.34 2070.94 1456.94 Q2070.36 1457.61 2067.26 1460.83 Q2064.16 1464.02 2058.51 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1707.46 1522.54 Q1707.46 1524.34 1706.33 1525.37 Q1705.2 1526.37 1703.92 1526.37 Q1702.69 1526.37 1702.05 1525.66 Q1701.4 1524.95 1701.4 1524.05 Q1701.4 1522.83 1702.31 1521.76 Q1703.21 1520.7 1704.56 1520.47 Q1703.24 1519.64 1701.28 1519.64 Q1699.99 1519.64 1698.86 1520.31 Q1697.77 1520.99 1697.09 1521.86 Q1696.44 1522.73 1695.86 1523.99 Q1695.32 1525.21 1695.09 1525.95 Q1694.9 1526.66 1694.74 1527.43 L1692.48 1536.45 Q1691.39 1540.73 1691.39 1542.25 Q1691.39 1544.11 1692.29 1545.37 Q1693.19 1546.59 1695 1546.59 Q1695.7 1546.59 1696.51 1546.4 Q1697.31 1546.17 1698.34 1545.6 Q1699.41 1544.98 1700.34 1544.08 Q1701.31 1543.15 1702.24 1541.57 Q1703.18 1539.99 1703.79 1537.96 Q1703.98 1537.25 1704.62 1537.25 Q1705.43 1537.25 1705.43 1537.9 Q1705.43 1538.45 1704.98 1539.6 Q1704.56 1540.73 1703.63 1542.21 Q1702.72 1543.66 1701.53 1544.98 Q1700.34 1546.27 1698.57 1547.17 Q1696.8 1548.08 1694.87 1548.08 Q1692.1 1548.08 1690.26 1546.59 Q1688.43 1545.11 1687.75 1543.05 Q1687.59 1543.34 1687.36 1543.73 Q1687.14 1544.11 1686.46 1544.98 Q1685.82 1545.82 1685.08 1546.46 Q1684.34 1547.08 1683.18 1547.56 Q1682.05 1548.08 1680.82 1548.08 Q1679.28 1548.08 1677.89 1547.62 Q1676.54 1547.17 1675.58 1546.14 Q1674.61 1545.11 1674.61 1543.7 Q1674.61 1542.12 1675.67 1541.02 Q1676.77 1539.89 1678.25 1539.89 Q1679.18 1539.89 1679.92 1540.44 Q1680.7 1540.99 1680.7 1542.18 Q1680.7 1543.5 1679.79 1544.5 Q1678.89 1545.5 1677.6 1545.76 Q1678.92 1546.59 1680.89 1546.59 Q1683.01 1546.59 1684.69 1544.73 Q1686.36 1542.86 1687.17 1539.73 Q1689.17 1532.23 1689.94 1528.88 Q1690.71 1525.5 1690.71 1524.05 Q1690.71 1522.7 1690.36 1521.76 Q1690 1520.83 1689.39 1520.41 Q1688.81 1519.96 1688.26 1519.8 Q1687.75 1519.64 1687.17 1519.64 Q1686.2 1519.64 1685.11 1520.02 Q1684.05 1520.41 1682.76 1521.31 Q1681.5 1522.18 1680.31 1523.99 Q1679.12 1525.79 1678.31 1528.27 Q1678.15 1529.01 1677.44 1529.01 Q1676.67 1528.98 1676.67 1528.33 Q1676.67 1527.79 1677.09 1526.66 Q1677.54 1525.5 1678.44 1524.05 Q1679.38 1522.6 1680.57 1521.31 Q1681.79 1519.99 1683.56 1519.09 Q1685.37 1518.19 1687.3 1518.19 Q1688.17 1518.19 1689.01 1518.38 Q1689.87 1518.54 1690.91 1519.03 Q1691.97 1519.51 1692.9 1520.57 Q1693.84 1521.63 1694.42 1523.18 Q1694.8 1522.44 1695.32 1521.73 Q1695.86 1521.02 1696.7 1520.15 Q1697.57 1519.25 1698.76 1518.74 Q1699.99 1518.19 1701.34 1518.19 Q1702.66 1518.19 1703.95 1518.54 Q1705.24 1518.86 1706.33 1519.93 Q1707.46 1520.96 1707.46 1522.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1404.92 2086.09,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1308.2 2086.09,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1211.48 2086.09,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1114.76 2086.09,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1018.03 2086.09,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip416)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,921.312 2086.09,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1404.92 1300.47,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1404.92 1319.37,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1308.2 1319.37,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1211.48 1319.37,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1114.76 1319.37,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1018.03 1319.37,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,921.312 1319.37,921.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1195.3 1390.72 Q1191.69 1390.72 1189.86 1394.28 Q1188.05 1397.82 1188.05 1404.95 Q1188.05 1412.06 1189.86 1415.63 Q1191.69 1419.17 1195.3 1419.17 Q1198.93 1419.17 1200.74 1415.63 Q1202.57 1412.06 1202.57 1404.95 Q1202.57 1397.82 1200.74 1394.28 Q1198.93 1390.72 1195.3 1390.72 M1195.3 1387.01 Q1201.11 1387.01 1204.16 1391.62 Q1207.24 1396.2 1207.24 1404.95 Q1207.24 1413.68 1204.16 1418.29 Q1201.11 1422.87 1195.3 1422.87 Q1189.49 1422.87 1186.41 1418.29 Q1183.35 1413.68 1183.35 1404.95 Q1183.35 1396.2 1186.41 1391.62 Q1189.49 1387.01 1195.3 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 1416.32 L1220.34 1416.32 L1220.34 1422.2 L1215.46 1422.2 L1215.46 1416.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 1390.72 Q1236.92 1390.72 1235.09 1394.28 Q1233.28 1397.82 1233.28 1404.95 Q1233.28 1412.06 1235.09 1415.63 Q1236.92 1419.17 1240.53 1419.17 Q1244.16 1419.17 1245.97 1415.63 Q1247.8 1412.06 1247.8 1404.95 Q1247.8 1397.82 1245.97 1394.28 Q1244.16 1390.72 1240.53 1390.72 M1240.53 1387.01 Q1246.34 1387.01 1249.39 1391.62 Q1252.47 1396.2 1252.47 1404.95 Q1252.47 1413.68 1249.39 1418.29 Q1246.34 1422.87 1240.53 1422.87 Q1234.72 1422.87 1231.64 1418.29 Q1228.58 1413.68 1228.58 1404.95 Q1228.58 1396.2 1231.64 1391.62 Q1234.72 1387.01 1240.53 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1196.89 1294 Q1193.28 1294 1191.45 1297.56 Q1189.65 1301.1 1189.65 1308.23 Q1189.65 1315.34 1191.45 1318.9 Q1193.28 1322.45 1196.89 1322.45 Q1200.53 1322.45 1202.33 1318.9 Q1204.16 1315.34 1204.16 1308.23 Q1204.16 1301.1 1202.33 1297.56 Q1200.53 1294 1196.89 1294 M1196.89 1290.29 Q1202.7 1290.29 1205.76 1294.9 Q1208.84 1299.48 1208.84 1308.23 Q1208.84 1316.96 1205.76 1321.57 Q1202.7 1326.15 1196.89 1326.15 Q1191.08 1326.15 1188.01 1321.57 Q1184.95 1316.96 1184.95 1308.23 Q1184.95 1299.48 1188.01 1294.9 Q1191.08 1290.29 1196.89 1290.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1217.06 1319.6 L1221.94 1319.6 L1221.94 1325.48 L1217.06 1325.48 L1217.06 1319.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1236.15 1321.54 L1252.47 1321.54 L1252.47 1325.48 L1230.53 1325.48 L1230.53 1321.54 Q1233.19 1318.79 1237.77 1314.16 Q1242.38 1309.51 1243.56 1308.16 Q1245.81 1305.64 1246.69 1303.9 Q1247.59 1302.15 1247.59 1300.46 Q1247.59 1297.7 1245.64 1295.96 Q1243.72 1294.23 1240.62 1294.23 Q1238.42 1294.23 1235.97 1294.99 Q1233.54 1295.76 1230.76 1297.31 L1230.76 1292.58 Q1233.58 1291.45 1236.04 1290.87 Q1238.49 1290.29 1240.53 1290.29 Q1245.9 1290.29 1249.09 1292.98 Q1252.29 1295.66 1252.29 1300.15 Q1252.29 1302.28 1251.48 1304.21 Q1250.69 1306.1 1248.58 1308.7 Q1248.01 1309.37 1244.9 1312.58 Q1241.8 1315.78 1236.15 1321.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1194.81 1197.28 Q1191.2 1197.28 1189.37 1200.84 Q1187.57 1204.38 1187.57 1211.51 Q1187.57 1218.62 1189.37 1222.18 Q1191.2 1225.72 1194.81 1225.72 Q1198.45 1225.72 1200.25 1222.18 Q1202.08 1218.62 1202.08 1211.51 Q1202.08 1204.38 1200.25 1200.84 Q1198.45 1197.28 1194.81 1197.28 M1194.81 1193.57 Q1200.62 1193.57 1203.68 1198.18 Q1206.76 1202.76 1206.76 1211.51 Q1206.76 1220.24 1203.68 1224.84 Q1200.62 1229.43 1194.81 1229.43 Q1189 1229.43 1185.92 1224.84 Q1182.87 1220.24 1182.87 1211.51 Q1182.87 1202.76 1185.92 1198.18 Q1189 1193.57 1194.81 1193.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1214.97 1222.88 L1219.86 1222.88 L1219.86 1228.76 L1214.97 1228.76 L1214.97 1222.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1242.89 1198.27 L1231.08 1216.72 L1242.89 1216.72 L1242.89 1198.27 M1241.66 1194.2 L1247.54 1194.2 L1247.54 1216.72 L1252.47 1216.72 L1252.47 1220.61 L1247.54 1220.61 L1247.54 1228.76 L1242.89 1228.76 L1242.89 1220.61 L1227.29 1220.61 L1227.29 1216.09 L1241.66 1194.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.14 1100.55 Q1191.52 1100.55 1189.7 1104.12 Q1187.89 1107.66 1187.89 1114.79 Q1187.89 1121.9 1189.7 1125.46 Q1191.52 1129 1195.14 1129 Q1198.77 1129 1200.58 1125.46 Q1202.4 1121.9 1202.4 1114.79 Q1202.4 1107.66 1200.58 1104.12 Q1198.77 1100.55 1195.14 1100.55 M1195.14 1096.85 Q1200.95 1096.85 1204 1101.46 Q1207.08 1106.04 1207.08 1114.79 Q1207.08 1123.52 1204 1128.12 Q1200.95 1132.71 1195.14 1132.71 Q1189.33 1132.71 1186.25 1128.12 Q1183.19 1123.52 1183.19 1114.79 Q1183.19 1106.04 1186.25 1101.46 Q1189.33 1096.85 1195.14 1096.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.3 1126.16 L1220.18 1126.16 L1220.18 1132.04 L1215.3 1132.04 L1215.3 1126.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.95 1112.89 Q1237.8 1112.89 1235.95 1115.04 Q1234.12 1117.2 1234.12 1120.95 Q1234.12 1124.67 1235.95 1126.85 Q1237.8 1129 1240.95 1129 Q1244.09 1129 1245.92 1126.85 Q1247.77 1124.67 1247.77 1120.95 Q1247.77 1117.2 1245.92 1115.04 Q1244.09 1112.89 1240.95 1112.89 M1250.23 1098.24 L1250.23 1102.5 Q1248.47 1101.67 1246.66 1101.23 Q1244.88 1100.79 1243.12 1100.79 Q1238.49 1100.79 1236.04 1103.91 Q1233.61 1107.04 1233.26 1113.35 Q1234.63 1111.34 1236.69 1110.28 Q1238.75 1109.19 1241.22 1109.19 Q1246.43 1109.19 1249.44 1112.36 Q1252.47 1115.51 1252.47 1120.95 Q1252.47 1126.27 1249.32 1129.49 Q1246.18 1132.71 1240.95 1132.71 Q1234.95 1132.71 1231.78 1128.12 Q1228.61 1123.52 1228.61 1114.79 Q1228.61 1106.6 1232.5 1101.73 Q1236.39 1096.85 1242.94 1096.85 Q1244.7 1096.85 1246.48 1097.2 Q1248.28 1097.54 1250.23 1098.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.39 1003.83 Q1191.78 1003.83 1189.95 1007.4 Q1188.14 1010.94 1188.14 1018.07 Q1188.14 1025.17 1189.95 1028.74 Q1191.78 1032.28 1195.39 1032.28 Q1199.02 1032.28 1200.83 1028.74 Q1202.66 1025.17 1202.66 1018.07 Q1202.66 1010.94 1200.83 1007.4 Q1199.02 1003.83 1195.39 1003.83 M1195.39 1000.13 Q1201.2 1000.13 1204.26 1004.74 Q1207.33 1009.32 1207.33 1018.07 Q1207.33 1026.8 1204.26 1031.4 Q1201.2 1035.98 1195.39 1035.98 Q1189.58 1035.98 1186.5 1031.4 Q1183.45 1026.8 1183.45 1018.07 Q1183.45 1009.32 1186.5 1004.74 Q1189.58 1000.13 1195.39 1000.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.55 1029.43 L1220.44 1029.43 L1220.44 1035.31 L1215.55 1035.31 L1215.55 1029.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.62 1018.9 Q1237.29 1018.9 1235.37 1020.68 Q1233.47 1022.47 1233.47 1025.59 Q1233.47 1028.72 1235.37 1030.5 Q1237.29 1032.28 1240.62 1032.28 Q1243.95 1032.28 1245.88 1030.5 Q1247.8 1028.69 1247.8 1025.59 Q1247.8 1022.47 1245.88 1020.68 Q1243.98 1018.9 1240.62 1018.9 M1235.95 1016.91 Q1232.94 1016.17 1231.25 1014.11 Q1229.58 1012.05 1229.58 1009.09 Q1229.58 1004.94 1232.52 1002.54 Q1235.48 1000.13 1240.62 1000.13 Q1245.78 1000.13 1248.72 1002.54 Q1251.66 1004.94 1251.66 1009.09 Q1251.66 1012.05 1249.97 1014.11 Q1248.31 1016.17 1245.32 1016.91 Q1248.7 1017.7 1250.57 1019.99 Q1252.47 1022.28 1252.47 1025.59 Q1252.47 1030.61 1249.39 1033.3 Q1246.34 1035.98 1240.62 1035.98 Q1234.9 1035.98 1231.82 1033.3 Q1228.77 1030.61 1228.77 1025.59 Q1228.77 1022.28 1230.67 1019.99 Q1232.57 1017.7 1235.95 1016.91 M1234.23 1009.53 Q1234.23 1012.21 1235.9 1013.72 Q1237.59 1015.22 1240.62 1015.22 Q1243.63 1015.22 1245.32 1013.72 Q1247.03 1012.21 1247.03 1009.53 Q1247.03 1006.84 1245.32 1005.34 Q1243.63 1003.83 1240.62 1003.83 Q1237.59 1003.83 1235.9 1005.34 Q1234.23 1006.84 1234.23 1009.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1186.11 934.657 L1193.75 934.657 L1193.75 908.291 L1185.44 909.958 L1185.44 905.699 L1193.7 904.032 L1198.38 904.032 L1198.38 934.657 L1206.01 934.657 L1206.01 938.592 L1186.11 938.592 L1186.11 934.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 932.713 L1220.34 932.713 L1220.34 938.592 L1215.46 938.592 L1215.46 932.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 907.111 Q1236.92 907.111 1235.09 910.676 Q1233.28 914.217 1233.28 921.347 Q1233.28 928.453 1235.09 932.018 Q1236.92 935.56 1240.53 935.56 Q1244.16 935.56 1245.97 932.018 Q1247.8 928.453 1247.8 921.347 Q1247.8 914.217 1245.97 910.676 Q1244.16 907.111 1240.53 907.111 M1240.53 903.407 Q1246.34 903.407 1249.39 908.014 Q1252.47 912.597 1252.47 921.347 Q1252.47 930.074 1249.39 934.68 Q1246.34 939.263 1240.53 939.263 Q1234.72 939.263 1231.64 934.68 Q1228.58 930.074 1228.58 921.347 Q1228.58 912.597 1231.64 908.014 Q1234.72 903.407 1240.53 903.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1080.71 1219.57 Q1082.48 1219.57 1083.58 1220.7 Q1084.67 1221.79 1084.67 1223.18 Q1084.67 1224.18 1084.06 1224.92 Q1083.45 1225.63 1082.39 1225.63 Q1081.29 1225.63 1080.13 1224.79 Q1078.97 1223.95 1078.81 1222.05 Q1077.62 1223.31 1077.62 1225.3 Q1077.62 1226.3 1078.27 1227.14 Q1078.88 1227.95 1079.88 1228.4 Q1080.91 1228.88 1086.74 1229.97 Q1088.64 1230.33 1090.47 1230.65 Q1092.31 1230.97 1094.24 1231.36 L1094.24 1225.88 Q1094.24 1225.18 1094.27 1224.89 Q1094.3 1224.6 1094.47 1224.37 Q1094.63 1224.11 1094.98 1224.11 Q1095.88 1224.11 1096.11 1224.53 Q1096.3 1224.92 1096.3 1226.08 L1096.3 1231.75 L1117.2 1235.71 Q1117.81 1235.8 1119.75 1236.22 Q1121.65 1236.61 1124.77 1237.54 Q1127.93 1238.48 1129.8 1239.41 Q1130.86 1239.93 1131.86 1240.6 Q1132.89 1241.25 1133.92 1242.18 Q1134.95 1243.11 1135.56 1244.34 Q1136.2 1245.56 1136.2 1246.85 Q1136.2 1249.04 1134.98 1250.75 Q1133.76 1252.45 1131.66 1252.45 Q1129.89 1252.45 1128.8 1251.36 Q1127.7 1250.23 1127.7 1248.85 Q1127.7 1247.85 1128.31 1247.14 Q1128.93 1246.4 1129.99 1246.4 Q1130.44 1246.4 1130.95 1246.56 Q1131.47 1246.72 1132.05 1247.08 Q1132.66 1247.43 1133.08 1248.2 Q1133.5 1248.98 1133.56 1250.04 Q1134.75 1248.78 1134.75 1246.85 Q1134.75 1246.24 1134.5 1245.69 Q1134.27 1245.14 1133.69 1244.69 Q1133.11 1244.21 1132.53 1243.86 Q1131.99 1243.5 1130.92 1243.15 Q1129.89 1242.79 1129.12 1242.57 Q1128.35 1242.34 1126.96 1242.05 Q1125.58 1241.73 1124.74 1241.57 Q1123.93 1241.41 1122.36 1241.12 L1096.3 1236.19 L1096.3 1240.54 Q1096.3 1241.31 1096.27 1241.63 Q1096.24 1241.92 1096.08 1242.15 Q1095.88 1242.37 1095.5 1242.37 Q1094.88 1242.37 1094.63 1242.12 Q1094.34 1241.83 1094.3 1241.5 Q1094.24 1241.18 1094.24 1240.41 L1094.24 1235.84 Q1086.09 1234.29 1083.9 1233.68 Q1081.58 1232.97 1079.97 1231.87 Q1078.33 1230.78 1077.56 1229.56 Q1076.78 1228.33 1076.49 1227.33 Q1076.17 1226.3 1076.17 1225.3 Q1076.17 1223.05 1077.4 1221.31 Q1078.59 1219.57 1080.71 1219.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1106.19 1210.7 Q1095.05 1210.7 1086.06 1206.55 Q1082.29 1204.77 1079.14 1202.29 Q1075.98 1199.81 1074.59 1198.17 Q1073.21 1196.53 1073.21 1196.08 Q1073.21 1195.43 1073.85 1195.4 Q1074.18 1195.4 1074.98 1196.27 Q1085.8 1206.9 1106.19 1206.87 Q1126.64 1206.87 1137.04 1196.53 Q1138.17 1195.4 1138.52 1195.4 Q1139.17 1195.4 1139.17 1196.08 Q1139.17 1196.53 1137.85 1198.11 Q1136.53 1199.69 1133.5 1202.13 Q1130.47 1204.58 1126.77 1206.35 Q1117.78 1210.7 1106.19 1210.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1097.88 1157.54 Q1099.68 1157.54 1100.71 1158.67 Q1101.71 1159.8 1101.71 1161.09 Q1101.71 1162.31 1101 1162.96 Q1100.29 1163.6 1099.39 1163.6 Q1098.17 1163.6 1097.11 1162.7 Q1096.04 1161.8 1095.82 1160.44 Q1094.98 1161.76 1094.98 1163.73 Q1094.98 1165.02 1095.66 1166.14 Q1096.33 1167.24 1097.2 1167.91 Q1098.07 1168.56 1099.33 1169.14 Q1100.55 1169.69 1101.29 1169.91 Q1102 1170.1 1102.77 1170.27 L1111.79 1172.52 Q1116.08 1173.62 1117.59 1173.62 Q1119.46 1173.62 1120.71 1172.71 Q1121.94 1171.81 1121.94 1170.01 Q1121.94 1169.3 1121.74 1168.49 Q1121.52 1167.69 1120.94 1166.66 Q1120.33 1165.6 1119.42 1164.66 Q1118.49 1163.7 1116.91 1162.76 Q1115.33 1161.83 1113.31 1161.22 Q1112.6 1161.02 1112.6 1160.38 Q1112.6 1159.57 1113.24 1159.57 Q1113.79 1159.57 1114.95 1160.02 Q1116.08 1160.44 1117.56 1161.38 Q1119.01 1162.28 1120.33 1163.47 Q1121.61 1164.66 1122.52 1166.43 Q1123.42 1168.2 1123.42 1170.14 Q1123.42 1172.91 1121.94 1174.74 Q1120.46 1176.58 1118.39 1177.25 Q1118.68 1177.42 1119.07 1177.64 Q1119.46 1177.87 1120.33 1178.54 Q1121.16 1179.19 1121.81 1179.93 Q1122.42 1180.67 1122.9 1181.83 Q1123.42 1182.95 1123.42 1184.18 Q1123.42 1185.72 1122.97 1187.11 Q1122.52 1188.46 1121.49 1189.43 Q1120.46 1190.39 1119.04 1190.39 Q1117.46 1190.39 1116.37 1189.33 Q1115.24 1188.24 1115.24 1186.76 Q1115.24 1185.82 1115.79 1185.08 Q1116.33 1184.31 1117.52 1184.31 Q1118.85 1184.31 1119.84 1185.21 Q1120.84 1186.11 1121.1 1187.4 Q1121.94 1186.08 1121.94 1184.11 Q1121.94 1181.99 1120.07 1180.31 Q1118.2 1178.64 1115.08 1177.83 Q1107.57 1175.84 1104.22 1175.06 Q1100.84 1174.29 1099.39 1174.29 Q1098.04 1174.29 1097.11 1174.65 Q1096.17 1175 1095.75 1175.61 Q1095.3 1176.19 1095.14 1176.74 Q1094.98 1177.25 1094.98 1177.83 Q1094.98 1178.8 1095.37 1179.9 Q1095.75 1180.96 1096.66 1182.25 Q1097.52 1183.5 1099.33 1184.69 Q1101.13 1185.89 1103.61 1186.69 Q1104.35 1186.85 1104.35 1187.56 Q1104.32 1188.33 1103.68 1188.33 Q1103.13 1188.33 1102 1187.91 Q1100.84 1187.46 1099.39 1186.56 Q1097.94 1185.63 1096.66 1184.44 Q1095.33 1183.21 1094.43 1181.44 Q1093.53 1179.64 1093.53 1177.71 Q1093.53 1176.84 1093.72 1176 Q1093.89 1175.13 1094.37 1174.1 Q1094.85 1173.04 1095.91 1172.1 Q1096.98 1171.17 1098.52 1170.59 Q1097.78 1170.2 1097.07 1169.69 Q1096.37 1169.14 1095.5 1168.3 Q1094.59 1167.43 1094.08 1166.24 Q1093.53 1165.02 1093.53 1163.66 Q1093.53 1162.34 1093.89 1161.05 Q1094.21 1159.77 1095.27 1158.67 Q1096.3 1157.54 1097.88 1157.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1121.61 1152.12 Q1120.55 1153.05 1119.17 1153.05 Q1117.78 1153.05 1116.75 1152.15 Q1115.69 1151.21 1115.69 1149.54 Q1115.69 1147.58 1117.59 1146.45 Q1119.46 1145.32 1122.61 1145.32 Q1126.03 1145.32 1129.18 1146.71 Q1132.37 1148.09 1133.89 1149.44 Q1135.4 1150.8 1135.4 1151.34 Q1135.4 1151.99 1134.69 1151.99 Q1134.43 1151.99 1133.95 1151.54 Q1128.86 1146.8 1122.61 1146.77 Q1121.61 1146.77 1121.61 1146.9 L1121.74 1147.06 Q1122.68 1148.19 1122.68 1149.54 Q1122.68 1151.18 1121.61 1152.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1094.98 1104.26 Q1095.88 1104.26 1096.11 1104.68 Q1096.3 1105.09 1096.3 1106.25 L1096.3 1112.44 L1115.75 1117.33 Q1117.46 1117.72 1118.91 1117.72 Q1120.52 1117.72 1121.23 1117.24 Q1121.94 1116.72 1121.94 1115.66 Q1121.94 1113.56 1120.04 1111.31 Q1118.14 1109.02 1113.5 1107.09 Q1112.89 1106.83 1112.76 1106.7 Q1112.6 1106.54 1112.6 1106.12 Q1112.6 1105.32 1113.24 1105.32 Q1113.47 1105.32 1114.5 1105.77 Q1115.53 1106.19 1117.04 1107.12 Q1118.56 1108.02 1119.97 1109.22 Q1121.39 1110.38 1122.42 1112.15 Q1123.42 1113.92 1123.42 1115.82 Q1123.42 1118.49 1121.71 1120.2 Q1120 1121.87 1117.33 1121.87 Q1116.46 1121.87 1113.69 1121.2 Q1110.89 1120.52 1096.3 1116.85 L1096.3 1122.68 Q1096.3 1123.48 1096.27 1123.81 Q1096.24 1124.1 1096.08 1124.32 Q1095.88 1124.51 1095.5 1124.51 Q1094.88 1124.51 1094.63 1124.26 Q1094.34 1124 1094.3 1123.68 Q1094.24 1123.32 1094.24 1122.52 L1094.24 1116.33 L1083.77 1113.76 Q1082.74 1113.5 1082.16 1112.86 Q1081.55 1112.18 1081.49 1111.79 Q1081.39 1111.41 1081.39 1111.12 Q1081.39 1110.25 1081.87 1109.73 Q1082.32 1109.22 1083.16 1109.22 Q1083.61 1109.22 1094.24 1111.92 L1094.24 1106.12 Q1094.24 1105.38 1094.27 1105.09 Q1094.3 1104.77 1094.47 1104.51 Q1094.63 1104.26 1094.98 1104.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1138.52 1099.1 Q1138.2 1099.1 1137.4 1098.26 Q1126.57 1087.63 1106.19 1087.63 Q1085.74 1087.63 1075.4 1097.84 Q1074.21 1099.1 1073.85 1099.1 Q1073.21 1099.1 1073.21 1098.45 Q1073.21 1098 1074.53 1096.43 Q1075.85 1094.82 1078.88 1092.4 Q1081.91 1089.95 1085.61 1088.15 Q1094.59 1083.8 1106.19 1083.8 Q1117.33 1083.8 1126.32 1087.96 Q1130.09 1089.73 1133.24 1092.21 Q1136.4 1094.69 1137.78 1096.33 Q1139.17 1097.97 1139.17 1098.45 Q1139.17 1099.1 1138.52 1099.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1591.38 839.389 Q1591.38 840.373 1590.92 840.619 Q1590.46 840.829 1589.2 840.829 L1582.45 840.829 L1577.11 862.05 Q1576.69 863.912 1576.69 865.493 Q1576.69 867.25 1577.22 868.023 Q1577.78 868.796 1578.94 868.796 Q1581.22 868.796 1583.68 866.723 Q1586.18 864.65 1588.29 859.591 Q1588.57 858.923 1588.71 858.783 Q1588.88 858.607 1589.34 858.607 Q1590.22 858.607 1590.22 859.31 Q1590.22 859.556 1589.73 860.68 Q1589.27 861.804 1588.25 863.456 Q1587.27 865.107 1585.97 866.653 Q1584.7 868.199 1582.77 869.323 Q1580.84 870.412 1578.76 870.412 Q1575.85 870.412 1573.99 868.55 Q1572.16 866.688 1572.16 863.772 Q1572.16 862.823 1572.9 859.802 Q1573.63 856.745 1577.64 840.829 L1571.28 840.829 Q1570.4 840.829 1570.05 840.794 Q1569.73 840.759 1569.49 840.584 Q1569.28 840.373 1569.28 839.951 Q1569.28 839.284 1569.56 839.002 Q1569.84 838.686 1570.19 838.651 Q1570.58 838.581 1571.46 838.581 L1578.2 838.581 L1581.01 827.162 Q1581.29 826.038 1582 825.406 Q1582.73 824.738 1583.16 824.668 Q1583.58 824.563 1583.89 824.563 Q1584.84 824.563 1585.4 825.09 Q1585.97 825.581 1585.97 826.495 Q1585.97 826.987 1583.02 838.581 L1589.34 838.581 Q1590.15 838.581 1590.46 838.616 Q1590.81 838.651 1591.1 838.827 Q1591.38 839.002 1591.38 839.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1614.95 858.677 Q1615.02 857.799 1616.39 857.799 L1660.48 857.799 Q1662.55 857.799 1662.59 858.607 Q1662.59 859.485 1660.62 859.45 L1616.88 859.45 Q1614.95 859.485 1614.95 858.677 M1614.95 844.624 Q1614.95 843.746 1616.46 843.781 L1660.41 843.781 Q1662.55 843.781 1662.59 844.624 Q1662.59 845.432 1660.76 845.432 L1616.39 845.432 Q1614.95 845.432 1614.95 844.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1690.33 846.591 Q1690.33 836.016 1693 830.254 Q1696.72 821.682 1705.5 821.682 Q1707.37 821.682 1709.3 822.209 Q1711.27 822.7 1713.72 824.633 Q1716.22 826.565 1717.73 829.727 Q1720.61 835.84 1720.61 846.591 Q1720.61 857.096 1717.94 862.823 Q1714.04 871.185 1705.43 871.185 Q1702.2 871.185 1698.9 869.534 Q1695.63 867.882 1693.56 863.912 Q1690.33 857.975 1690.33 846.591 M1696.3 845.713 Q1696.3 856.569 1697.07 860.891 Q1697.95 865.564 1700.34 867.601 Q1702.76 869.604 1705.43 869.604 Q1708.31 869.604 1710.7 867.461 Q1713.13 865.282 1713.87 860.61 Q1714.67 856.007 1714.64 845.713 Q1714.64 835.7 1713.94 831.695 Q1712.99 827.022 1710.46 825.16 Q1707.96 823.263 1705.43 823.263 Q1704.48 823.263 1703.47 823.544 Q1702.48 823.825 1701.04 824.633 Q1699.6 825.441 1698.48 827.444 Q1697.39 829.446 1696.86 832.468 Q1696.3 836.367 1696.3 845.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1727.04 868.445 Q1725.95 867.285 1725.95 865.774 Q1725.95 864.264 1727.04 863.174 Q1728.13 862.05 1729.78 862.05 Q1731.36 862.05 1732.42 863.104 Q1733.5 864.123 1733.5 865.809 Q1733.5 867.461 1732.35 868.55 Q1731.22 869.604 1729.78 869.604 Q1728.13 869.604 1727.04 868.445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1745.75 869.604 Q1745.75 868.304 1745.85 867.918 Q1745.99 867.531 1746.55 866.934 L1760.36 851.545 Q1767.92 843.043 1767.92 835.63 Q1767.92 830.816 1765.39 827.373 Q1762.89 823.93 1758.29 823.93 Q1755.13 823.93 1752.46 825.863 Q1749.79 827.795 1748.56 831.238 Q1748.77 831.168 1749.51 831.168 Q1751.3 831.168 1752.28 832.292 Q1753.3 833.416 1753.3 834.927 Q1753.3 836.859 1752.04 837.808 Q1750.81 838.721 1749.58 838.721 Q1749.08 838.721 1748.42 838.616 Q1747.78 838.511 1746.77 837.527 Q1745.75 836.508 1745.75 834.716 Q1745.75 829.692 1749.54 825.687 Q1753.37 821.682 1759.2 821.682 Q1765.81 821.682 1770.13 825.617 Q1774.49 829.516 1774.49 835.63 Q1774.49 837.773 1773.82 839.74 Q1773.19 841.673 1772.31 843.183 Q1771.46 844.694 1769.15 847.118 Q1766.83 849.543 1764.96 851.264 Q1763.1 852.986 1758.92 856.64 L1751.3 864.053 L1764.26 864.053 Q1770.59 864.053 1771.08 863.491 Q1771.78 862.472 1772.66 857.096 L1774.49 857.096 L1772.45 869.604 L1745.75 869.604 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1781.66 858.01 Q1781.66 855.867 1782.82 855.059 Q1783.98 854.215 1785.21 854.215 Q1786.86 854.215 1787.81 855.269 Q1788.79 856.288 1788.79 857.729 Q1788.79 859.169 1787.81 860.223 Q1786.86 861.242 1785.21 861.242 Q1784.4 861.242 1783.98 861.102 Q1784.93 864.404 1787.81 866.793 Q1790.72 869.182 1794.55 869.182 Q1799.37 869.182 1802.25 864.51 Q1803.97 861.488 1803.97 854.637 Q1803.97 848.594 1802.67 845.572 Q1800.67 840.97 1796.56 840.97 Q1790.72 840.97 1787.28 845.994 Q1786.86 846.626 1786.37 846.662 Q1785.66 846.662 1785.49 846.275 Q1785.35 845.854 1785.35 844.764 L1785.35 823.473 Q1785.35 821.752 1786.05 821.752 Q1786.33 821.752 1786.93 821.963 Q1791.46 823.965 1796.49 824 Q1801.65 824 1806.29 821.892 Q1806.64 821.682 1806.85 821.682 Q1807.55 821.682 1807.59 822.49 Q1807.59 822.771 1806.99 823.614 Q1806.43 824.422 1805.2 825.511 Q1803.97 826.565 1802.39 827.584 Q1800.81 828.603 1798.49 829.306 Q1796.2 829.973 1793.68 829.973 Q1790.65 829.973 1787.56 829.025 L1787.56 843.043 Q1791.29 839.389 1796.7 839.389 Q1802.46 839.389 1806.43 844.027 Q1810.4 848.664 1810.4 855.129 Q1810.4 861.91 1805.69 866.547 Q1801.02 871.185 1794.69 871.185 Q1788.93 871.185 1785.28 867.074 Q1781.66 862.964 1781.66 858.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip416)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,1399.92 1324.56,1399.72 1326.41,1399.51 1328.27,1399.29 1330.12,1399.06 1331.97,1398.83 1333.82,1398.59 1335.68,1398.34 1337.53,1398.08 1339.38,1397.81 \n",
" 1341.24,1397.54 1343.09,1397.25 1344.94,1396.96 1346.79,1396.66 1348.65,1396.34 1350.5,1396.02 1352.35,1395.68 1354.21,1395.34 1356.06,1394.98 1357.91,1394.61 \n",
" 1359.76,1394.23 1361.62,1393.84 1363.47,1393.44 1365.32,1393.03 1367.18,1392.6 1369.03,1392.16 1370.88,1391.71 1372.73,1391.24 1374.59,1390.76 1376.44,1390.26 \n",
" 1378.29,1389.76 1380.15,1389.23 1382,1388.7 1383.85,1388.14 1385.7,1387.57 1387.56,1386.99 1389.41,1386.39 1391.26,1385.78 1393.12,1385.14 1394.97,1384.49 \n",
" 1396.82,1383.83 1398.67,1383.14 1400.53,1382.44 1402.38,1381.72 1404.23,1380.99 1406.09,1380.23 1407.94,1379.45 1409.79,1378.66 1411.65,1377.85 1413.5,1377.01 \n",
" 1415.35,1376.16 1417.2,1375.29 1419.06,1374.4 1420.91,1373.48 1422.76,1372.55 1424.62,1371.59 1426.47,1370.61 1428.32,1369.62 1430.17,1368.59 1432.03,1367.55 \n",
" 1433.88,1366.49 1435.73,1365.4 1437.59,1364.29 1439.44,1363.16 1441.29,1362 1443.14,1360.82 1445,1359.62 1446.85,1358.39 1448.7,1357.14 1450.56,1355.87 \n",
" 1452.41,1354.57 1454.26,1353.25 1456.11,1351.91 1457.97,1350.54 1459.82,1349.15 1461.67,1347.73 1463.53,1346.29 1465.38,1344.82 1467.23,1343.33 1469.08,1341.81 \n",
" 1470.94,1340.27 1472.79,1338.71 1474.64,1337.12 1476.5,1335.51 1478.35,1333.88 1480.2,1332.21 1482.05,1330.53 1483.91,1328.82 1485.76,1327.09 1487.61,1325.34 \n",
" 1489.47,1323.56 1491.32,1321.76 1493.17,1319.93 1495.02,1318.08 1496.88,1316.22 1498.73,1314.32 1500.58,1312.41 1502.44,1310.48 1504.29,1308.52 1506.14,1306.54 \n",
" 1507.99,1304.55 1509.85,1302.53 1511.7,1300.49 1513.55,1298.43 1515.41,1296.36 1517.26,1294.27 1519.11,1292.15 1520.96,1290.03 1522.82,1287.88 1524.67,1285.72 \n",
" 1526.52,1283.54 1528.38,1281.35 1530.23,1279.14 1532.08,1276.92 1533.93,1274.69 1535.79,1272.44 1537.64,1270.18 1539.49,1267.92 1541.35,1265.64 1543.2,1263.35 \n",
" 1545.05,1261.05 1546.9,1258.74 1548.76,1256.43 1550.61,1254.11 1552.46,1251.79 1554.32,1249.46 1556.17,1247.12 1558.02,1244.79 1559.87,1242.45 1561.73,1240.11 \n",
" 1563.58,1237.77 1565.43,1235.43 1567.29,1233.09 1569.14,1230.75 1570.99,1228.42 1572.84,1226.09 1574.7,1223.77 1576.55,1221.46 1578.4,1219.15 1580.26,1216.85 \n",
" 1582.11,1214.56 1583.96,1212.28 1585.81,1210.02 1587.67,1207.76 1589.52,1205.52 1591.37,1203.29 1593.23,1201.09 1595.08,1198.89 1596.93,1196.72 1598.78,1194.56 \n",
" 1600.64,1192.43 1602.49,1190.31 1604.34,1188.22 1606.2,1186.15 1608.05,1184.11 1609.9,1182.09 1611.75,1180.1 1613.61,1178.13 1615.46,1176.2 1617.31,1174.29 \n",
" 1619.17,1172.42 1621.02,1170.57 1622.87,1168.76 1624.72,1166.98 1626.58,1165.24 1628.43,1163.53 1630.28,1161.86 1632.14,1160.23 1633.99,1158.63 1635.84,1157.07 \n",
" 1637.7,1155.56 1639.55,1154.08 1641.4,1152.65 1643.25,1151.26 1645.11,1149.91 1646.96,1148.6 1648.81,1147.35 1650.67,1146.13 1652.52,1144.96 1654.37,1143.84 \n",
" 1656.22,1142.77 1658.08,1141.75 1659.93,1140.77 1661.78,1139.85 1663.64,1138.97 1665.49,1138.14 1667.34,1137.37 1669.19,1136.65 1671.05,1135.97 1672.9,1135.35 \n",
" 1674.75,1134.79 1676.61,1134.27 1678.46,1133.81 1680.31,1133.41 1682.16,1133.05 1684.02,1132.75 1685.87,1132.51 1687.72,1132.32 1689.58,1132.18 1691.43,1132.1 \n",
" 1693.28,1132.07 1695.13,1132.1 1696.99,1132.18 1698.84,1132.32 1700.69,1132.51 1702.55,1132.75 1704.4,1133.05 1706.25,1133.41 1708.1,1133.81 1709.96,1134.27 \n",
" 1711.81,1134.79 1713.66,1135.35 1715.52,1135.97 1717.37,1136.65 1719.22,1137.37 1721.07,1138.14 1722.93,1138.97 1724.78,1139.85 1726.63,1140.77 1728.49,1141.75 \n",
" 1730.34,1142.77 1732.19,1143.84 1734.04,1144.96 1735.9,1146.13 1737.75,1147.35 1739.6,1148.6 1741.46,1149.91 1743.31,1151.26 1745.16,1152.65 1747.01,1154.08 \n",
" 1748.87,1155.56 1750.72,1157.07 1752.57,1158.63 1754.43,1160.23 1756.28,1161.86 1758.13,1163.53 1759.98,1165.24 1761.84,1166.98 1763.69,1168.76 1765.54,1170.57 \n",
" 1767.4,1172.42 1769.25,1174.29 1771.1,1176.2 1772.95,1178.13 1774.81,1180.1 1776.66,1182.09 1778.51,1184.11 1780.37,1186.15 1782.22,1188.22 1784.07,1190.31 \n",
" 1785.92,1192.43 1787.78,1194.56 1789.63,1196.72 1791.48,1198.89 1793.34,1201.09 1795.19,1203.29 1797.04,1205.52 1798.89,1207.76 1800.75,1210.02 1802.6,1212.28 \n",
" 1804.45,1214.56 1806.31,1216.85 1808.16,1219.15 1810.01,1221.46 1811.86,1223.77 1813.72,1226.09 1815.57,1228.42 1817.42,1230.75 1819.28,1233.09 1821.13,1235.43 \n",
" 1822.98,1237.77 1824.83,1240.11 1826.69,1242.45 1828.54,1244.79 1830.39,1247.12 1832.25,1249.46 1834.1,1251.79 1835.95,1254.11 1837.8,1256.43 1839.66,1258.74 \n",
" 1841.51,1261.05 1843.36,1263.35 1845.22,1265.64 1847.07,1267.92 1848.92,1270.18 1850.77,1272.44 1852.63,1274.69 1854.48,1276.92 1856.33,1279.14 1858.19,1281.35 \n",
" 1860.04,1283.54 1861.89,1285.72 1863.75,1287.88 1865.6,1290.03 1867.45,1292.15 1869.3,1294.27 1871.16,1296.36 1873.01,1298.43 1874.86,1300.49 1876.72,1302.53 \n",
" 1878.57,1304.55 1880.42,1306.54 1882.27,1308.52 1884.13,1310.48 1885.98,1312.41 1887.83,1314.32 1889.69,1316.22 1891.54,1318.08 1893.39,1319.93 1895.24,1321.76 \n",
" 1897.1,1323.56 1898.95,1325.34 1900.8,1327.09 1902.66,1328.82 1904.51,1330.53 1906.36,1332.21 1908.21,1333.88 1910.07,1335.51 1911.92,1337.12 1913.77,1338.71 \n",
" 1915.63,1340.27 1917.48,1341.81 1919.33,1343.33 1921.18,1344.82 1923.04,1346.29 1924.89,1347.73 1926.74,1349.15 1928.6,1350.54 1930.45,1351.91 1932.3,1353.25 \n",
" 1934.15,1354.57 1936.01,1355.87 1937.86,1357.14 1939.71,1358.39 1941.57,1359.62 1943.42,1360.82 1945.27,1362 1947.12,1363.16 1948.98,1364.29 1950.83,1365.4 \n",
" 1952.68,1366.49 1954.54,1367.55 1956.39,1368.59 1958.24,1369.62 1960.09,1370.61 1961.95,1371.59 1963.8,1372.55 1965.65,1373.48 1967.51,1374.4 1969.36,1375.29 \n",
" 1971.21,1376.16 1973.06,1377.01 1974.92,1377.85 1976.77,1378.66 1978.62,1379.45 1980.48,1380.23 1982.33,1380.99 1984.18,1381.72 1986.03,1382.44 1987.89,1383.14 \n",
" 1989.74,1383.83 1991.59,1384.49 1993.45,1385.14 1995.3,1385.78 1997.15,1386.39 1999,1386.99 2000.86,1387.57 2002.71,1388.14 2004.56,1388.7 2006.42,1389.23 \n",
" 2008.27,1389.76 2010.12,1390.26 2011.97,1390.76 2013.83,1391.24 2015.68,1391.71 2017.53,1392.16 2019.39,1392.6 2021.24,1393.03 2023.09,1393.44 2024.94,1393.84 \n",
" 2026.8,1394.23 2028.65,1394.61 2030.5,1394.98 2032.36,1395.34 2034.21,1395.68 2036.06,1396.02 2037.91,1396.34 2039.77,1396.66 2041.62,1396.96 2043.47,1397.25 \n",
" 2045.33,1397.54 2047.18,1397.81 2049.03,1398.08 2050.88,1398.34 2052.74,1398.59 2054.59,1398.83 2056.44,1399.06 2058.3,1399.29 2060.15,1399.51 2062,1399.72 \n",
" 2063.85,1399.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M2367.14 1404.92 L3152.76 1404.92 L3152.76 921.312 L2367.14 921.312 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip417\">\n",
" <rect x=\"2367\" y=\"921\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2389.37,1404.92 2389.37,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2574.66,1404.92 2574.66,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2759.95,1404.92 2759.95,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2945.23,1404.92 2945.23,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 3130.52,1404.92 3130.52,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1404.92 3152.76,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,1404.92 2389.37,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2574.66,1404.92 2574.66,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2759.95,1404.92 2759.95,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2945.23,1404.92 2945.23,1386.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3130.52,1404.92 3130.52,1386.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2359.32 1456.89 L2388.99 1456.89 L2388.99 1460.83 L2359.32 1460.83 L2359.32 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2403.11 1469.78 L2419.43 1469.78 L2419.43 1473.72 L2397.49 1473.72 L2397.49 1469.78 Q2400.15 1467.03 2404.73 1462.4 Q2409.34 1457.75 2410.52 1456.41 Q2412.77 1453.88 2413.64 1452.15 Q2414.55 1450.39 2414.55 1448.7 Q2414.55 1445.94 2412.6 1444.21 Q2410.68 1442.47 2407.58 1442.47 Q2405.38 1442.47 2402.93 1443.23 Q2400.5 1444 2397.72 1445.55 L2397.72 1440.83 Q2400.54 1439.69 2403 1439.11 Q2405.45 1438.53 2407.49 1438.53 Q2412.86 1438.53 2416.05 1441.22 Q2419.25 1443.91 2419.25 1448.4 Q2419.25 1450.53 2418.44 1452.45 Q2417.65 1454.34 2415.54 1456.94 Q2414.96 1457.61 2411.86 1460.83 Q2408.76 1464.02 2403.11 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2544.42 1456.89 L2574.09 1456.89 L2574.09 1460.83 L2544.42 1460.83 L2544.42 1456.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2585 1469.78 L2592.64 1469.78 L2592.64 1443.42 L2584.33 1445.09 L2584.33 1440.83 L2592.59 1439.16 L2597.26 1439.16 L2597.26 1469.78 L2604.9 1469.78 L2604.9 1473.72 L2585 1473.72 L2585 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2759.95 1442.24 Q2756.34 1442.24 2754.51 1445.8 Q2752.7 1449.34 2752.7 1456.47 Q2752.7 1463.58 2754.51 1467.15 Q2756.34 1470.69 2759.95 1470.69 Q2763.58 1470.69 2765.39 1467.15 Q2767.22 1463.58 2767.22 1456.47 Q2767.22 1449.34 2765.39 1445.8 Q2763.58 1442.24 2759.95 1442.24 M2759.95 1438.53 Q2765.76 1438.53 2768.81 1443.14 Q2771.89 1447.72 2771.89 1456.47 Q2771.89 1465.2 2768.81 1469.81 Q2765.76 1474.39 2759.95 1474.39 Q2754.14 1474.39 2751.06 1469.81 Q2748 1465.2 2748 1456.47 Q2748 1447.72 2751.06 1443.14 Q2754.14 1438.53 2759.95 1438.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2935.62 1469.78 L2943.26 1469.78 L2943.26 1443.42 L2934.95 1445.09 L2934.95 1440.83 L2943.21 1439.16 L2947.89 1439.16 L2947.89 1469.78 L2955.52 1469.78 L2955.52 1473.72 L2935.62 1473.72 L2935.62 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M3125.17 1469.78 L3141.49 1469.78 L3141.49 1473.72 L3119.55 1473.72 L3119.55 1469.78 Q3122.21 1467.03 3126.79 1462.4 Q3131.4 1457.75 3132.58 1456.41 Q3134.83 1453.88 3135.71 1452.15 Q3136.61 1450.39 3136.61 1448.7 Q3136.61 1445.94 3134.66 1444.21 Q3132.74 1442.47 3129.64 1442.47 Q3127.44 1442.47 3124.99 1443.23 Q3122.56 1444 3119.78 1445.55 L3119.78 1440.83 Q3122.6 1439.69 3125.06 1439.11 Q3127.51 1438.53 3129.55 1438.53 Q3134.92 1438.53 3138.11 1441.22 Q3141.31 1443.91 3141.31 1448.4 Q3141.31 1450.53 3140.5 1452.45 Q3139.71 1454.34 3137.6 1456.94 Q3137.03 1457.61 3133.92 1460.83 Q3130.82 1464.02 3125.17 1469.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2774.13 1522.54 Q2774.13 1524.34 2773 1525.37 Q2771.87 1526.37 2770.58 1526.37 Q2769.36 1526.37 2768.72 1525.66 Q2768.07 1524.95 2768.07 1524.05 Q2768.07 1522.83 2768.97 1521.76 Q2769.87 1520.7 2771.23 1520.47 Q2769.91 1519.64 2767.94 1519.64 Q2766.65 1519.64 2765.53 1520.31 Q2764.43 1520.99 2763.76 1521.86 Q2763.11 1522.73 2762.53 1523.99 Q2761.98 1525.21 2761.76 1525.95 Q2761.57 1526.66 2761.4 1527.43 L2759.15 1536.45 Q2758.05 1540.73 2758.05 1542.25 Q2758.05 1544.11 2758.96 1545.37 Q2759.86 1546.59 2761.66 1546.59 Q2762.37 1546.59 2763.18 1546.4 Q2763.98 1546.17 2765.01 1545.6 Q2766.07 1544.98 2767.01 1544.08 Q2767.97 1543.15 2768.91 1541.57 Q2769.84 1539.99 2770.45 1537.96 Q2770.65 1537.25 2771.29 1537.25 Q2772.1 1537.25 2772.1 1537.9 Q2772.1 1538.45 2771.65 1539.6 Q2771.23 1540.73 2770.29 1542.21 Q2769.39 1543.66 2768.2 1544.98 Q2767.01 1546.27 2765.24 1547.17 Q2763.47 1548.08 2761.53 1548.08 Q2758.76 1548.08 2756.93 1546.59 Q2755.09 1545.11 2754.42 1543.05 Q2754.25 1543.34 2754.03 1543.73 Q2753.8 1544.11 2753.13 1544.98 Q2752.48 1545.82 2751.74 1546.46 Q2751 1547.08 2749.84 1547.56 Q2748.72 1548.08 2747.49 1548.08 Q2745.95 1548.08 2744.56 1547.62 Q2743.21 1547.17 2742.24 1546.14 Q2741.28 1545.11 2741.28 1543.7 Q2741.28 1542.12 2742.34 1541.02 Q2743.43 1539.89 2744.91 1539.89 Q2745.85 1539.89 2746.59 1540.44 Q2747.36 1540.99 2747.36 1542.18 Q2747.36 1543.5 2746.46 1544.5 Q2745.56 1545.5 2744.27 1545.76 Q2745.59 1546.59 2747.56 1546.59 Q2749.68 1546.59 2751.36 1544.73 Q2753.03 1542.86 2753.84 1539.73 Q2755.83 1532.23 2756.61 1528.88 Q2757.38 1525.5 2757.38 1524.05 Q2757.38 1522.7 2757.02 1521.76 Q2756.67 1520.83 2756.06 1520.41 Q2755.48 1519.96 2754.93 1519.8 Q2754.42 1519.64 2753.84 1519.64 Q2752.87 1519.64 2751.77 1520.02 Q2750.71 1520.41 2749.42 1521.31 Q2748.17 1522.18 2746.98 1523.99 Q2745.78 1525.79 2744.98 1528.27 Q2744.82 1529.01 2744.11 1529.01 Q2743.34 1528.98 2743.34 1528.33 Q2743.34 1527.79 2743.76 1526.66 Q2744.21 1525.5 2745.11 1524.05 Q2746.04 1522.6 2747.23 1521.31 Q2748.46 1519.99 2750.23 1519.09 Q2752.03 1518.19 2753.96 1518.19 Q2754.83 1518.19 2755.67 1518.38 Q2756.54 1518.54 2757.57 1519.03 Q2758.63 1519.51 2759.57 1520.57 Q2760.5 1521.63 2761.08 1523.18 Q2761.47 1522.44 2761.98 1521.73 Q2762.53 1521.02 2763.37 1520.15 Q2764.24 1519.25 2765.43 1518.74 Q2766.65 1518.19 2768.01 1518.19 Q2769.33 1518.19 2770.62 1518.54 Q2771.9 1518.86 2773 1519.93 Q2774.13 1520.96 2774.13 1522.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1404.92 3152.76,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1308.2 3152.76,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1211.48 3152.76,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1114.76 3152.76,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1018.03 3152.76,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip417)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,921.312 3152.76,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1404.92 2367.14,921.312 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1404.92 2386.04,1404.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1308.2 2386.04,1308.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1211.48 2386.04,1211.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1114.76 2386.04,1114.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1018.03 2386.04,1018.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,921.312 2386.04,921.312 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2261.96 1390.72 Q2258.35 1390.72 2256.52 1394.28 Q2254.72 1397.82 2254.72 1404.95 Q2254.72 1412.06 2256.52 1415.63 Q2258.35 1419.17 2261.96 1419.17 Q2265.6 1419.17 2267.4 1415.63 Q2269.23 1412.06 2269.23 1404.95 Q2269.23 1397.82 2267.4 1394.28 Q2265.6 1390.72 2261.96 1390.72 M2261.96 1387.01 Q2267.77 1387.01 2270.83 1391.62 Q2273.91 1396.2 2273.91 1404.95 Q2273.91 1413.68 2270.83 1418.29 Q2267.77 1422.87 2261.96 1422.87 Q2256.15 1422.87 2253.08 1418.29 Q2250.02 1413.68 2250.02 1404.95 Q2250.02 1396.2 2253.08 1391.62 Q2256.15 1387.01 2261.96 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 1416.32 L2287.01 1416.32 L2287.01 1422.2 L2282.13 1422.2 L2282.13 1416.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 1390.72 Q2303.58 1390.72 2301.76 1394.28 Q2299.95 1397.82 2299.95 1404.95 Q2299.95 1412.06 2301.76 1415.63 Q2303.58 1419.17 2307.2 1419.17 Q2310.83 1419.17 2312.64 1415.63 Q2314.46 1412.06 2314.46 1404.95 Q2314.46 1397.82 2312.64 1394.28 Q2310.83 1390.72 2307.2 1390.72 M2307.2 1387.01 Q2313.01 1387.01 2316.06 1391.62 Q2319.14 1396.2 2319.14 1404.95 Q2319.14 1413.68 2316.06 1418.29 Q2313.01 1422.87 2307.2 1422.87 Q2301.39 1422.87 2298.31 1418.29 Q2295.25 1413.68 2295.25 1404.95 Q2295.25 1396.2 2298.31 1391.62 Q2301.39 1387.01 2307.2 1387.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2263.56 1294 Q2259.95 1294 2258.12 1297.56 Q2256.32 1301.1 2256.32 1308.23 Q2256.32 1315.34 2258.12 1318.9 Q2259.95 1322.45 2263.56 1322.45 Q2267.2 1322.45 2269 1318.9 Q2270.83 1315.34 2270.83 1308.23 Q2270.83 1301.1 2269 1297.56 Q2267.2 1294 2263.56 1294 M2263.56 1290.29 Q2269.37 1290.29 2272.43 1294.9 Q2275.51 1299.48 2275.51 1308.23 Q2275.51 1316.96 2272.43 1321.57 Q2269.37 1326.15 2263.56 1326.15 Q2257.75 1326.15 2254.67 1321.57 Q2251.62 1316.96 2251.62 1308.23 Q2251.62 1299.48 2254.67 1294.9 Q2257.75 1290.29 2263.56 1290.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2283.72 1319.6 L2288.61 1319.6 L2288.61 1325.48 L2283.72 1325.48 L2283.72 1319.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2302.82 1321.54 L2319.14 1321.54 L2319.14 1325.48 L2297.2 1325.48 L2297.2 1321.54 Q2299.86 1318.79 2304.44 1314.16 Q2309.05 1309.51 2310.23 1308.16 Q2312.47 1305.64 2313.35 1303.9 Q2314.26 1302.15 2314.26 1300.46 Q2314.26 1297.7 2312.31 1295.96 Q2310.39 1294.23 2307.29 1294.23 Q2305.09 1294.23 2302.64 1294.99 Q2300.2 1295.76 2297.43 1297.31 L2297.43 1292.58 Q2300.25 1291.45 2302.7 1290.87 Q2305.16 1290.29 2307.2 1290.29 Q2312.57 1290.29 2315.76 1292.98 Q2318.95 1295.66 2318.95 1300.15 Q2318.95 1302.28 2318.14 1304.21 Q2317.36 1306.1 2315.25 1308.7 Q2314.67 1309.37 2311.57 1312.58 Q2308.47 1315.78 2302.82 1321.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.48 1197.28 Q2257.87 1197.28 2256.04 1200.84 Q2254.23 1204.38 2254.23 1211.51 Q2254.23 1218.62 2256.04 1222.18 Q2257.87 1225.72 2261.48 1225.72 Q2265.11 1225.72 2266.92 1222.18 Q2268.75 1218.62 2268.75 1211.51 Q2268.75 1204.38 2266.92 1200.84 Q2265.11 1197.28 2261.48 1197.28 M2261.48 1193.57 Q2267.29 1193.57 2270.34 1198.18 Q2273.42 1202.76 2273.42 1211.51 Q2273.42 1220.24 2270.34 1224.84 Q2267.29 1229.43 2261.48 1229.43 Q2255.67 1229.43 2252.59 1224.84 Q2249.53 1220.24 2249.53 1211.51 Q2249.53 1202.76 2252.59 1198.18 Q2255.67 1193.57 2261.48 1193.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.64 1222.88 L2286.52 1222.88 L2286.52 1228.76 L2281.64 1228.76 L2281.64 1222.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2309.56 1198.27 L2297.75 1216.72 L2309.56 1216.72 L2309.56 1198.27 M2308.33 1194.2 L2314.21 1194.2 L2314.21 1216.72 L2319.14 1216.72 L2319.14 1220.61 L2314.21 1220.61 L2314.21 1228.76 L2309.56 1228.76 L2309.56 1220.61 L2293.95 1220.61 L2293.95 1216.09 L2308.33 1194.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.8 1100.55 Q2258.19 1100.55 2256.36 1104.12 Q2254.56 1107.66 2254.56 1114.79 Q2254.56 1121.9 2256.36 1125.46 Q2258.19 1129 2261.8 1129 Q2265.44 1129 2267.24 1125.46 Q2269.07 1121.9 2269.07 1114.79 Q2269.07 1107.66 2267.24 1104.12 Q2265.44 1100.55 2261.8 1100.55 M2261.8 1096.85 Q2267.61 1096.85 2270.67 1101.46 Q2273.75 1106.04 2273.75 1114.79 Q2273.75 1123.52 2270.67 1128.12 Q2267.61 1132.71 2261.8 1132.71 Q2255.99 1132.71 2252.91 1128.12 Q2249.86 1123.52 2249.86 1114.79 Q2249.86 1106.04 2252.91 1101.46 Q2255.99 1096.85 2261.8 1096.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.96 1126.16 L2286.85 1126.16 L2286.85 1132.04 L2281.96 1132.04 L2281.96 1126.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.61 1112.89 Q2304.46 1112.89 2302.61 1115.04 Q2300.78 1117.2 2300.78 1120.95 Q2300.78 1124.67 2302.61 1126.85 Q2304.46 1129 2307.61 1129 Q2310.76 1129 2312.59 1126.85 Q2314.44 1124.67 2314.44 1120.95 Q2314.44 1117.2 2312.59 1115.04 Q2310.76 1112.89 2307.61 1112.89 M2316.89 1098.24 L2316.89 1102.5 Q2315.13 1101.67 2313.33 1101.23 Q2311.55 1100.79 2309.79 1100.79 Q2305.16 1100.79 2302.7 1103.91 Q2300.27 1107.04 2299.93 1113.35 Q2301.29 1111.34 2303.35 1110.28 Q2305.41 1109.19 2307.89 1109.19 Q2313.1 1109.19 2316.11 1112.36 Q2319.14 1115.51 2319.14 1120.95 Q2319.14 1126.27 2315.99 1129.49 Q2312.84 1132.71 2307.61 1132.71 Q2301.62 1132.71 2298.45 1128.12 Q2295.27 1123.52 2295.27 1114.79 Q2295.27 1106.6 2299.16 1101.73 Q2303.05 1096.85 2309.6 1096.85 Q2311.36 1096.85 2313.14 1097.2 Q2314.95 1097.54 2316.89 1098.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2262.06 1003.83 Q2258.45 1003.83 2256.62 1007.4 Q2254.81 1010.94 2254.81 1018.07 Q2254.81 1025.17 2256.62 1028.74 Q2258.45 1032.28 2262.06 1032.28 Q2265.69 1032.28 2267.5 1028.74 Q2269.33 1025.17 2269.33 1018.07 Q2269.33 1010.94 2267.5 1007.4 Q2265.69 1003.83 2262.06 1003.83 M2262.06 1000.13 Q2267.87 1000.13 2270.92 1004.74 Q2274 1009.32 2274 1018.07 Q2274 1026.8 2270.92 1031.4 Q2267.87 1035.98 2262.06 1035.98 Q2256.25 1035.98 2253.17 1031.4 Q2250.11 1026.8 2250.11 1018.07 Q2250.11 1009.32 2253.17 1004.74 Q2256.25 1000.13 2262.06 1000.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.22 1029.43 L2287.1 1029.43 L2287.1 1035.31 L2282.22 1035.31 L2282.22 1029.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.29 1018.9 Q2303.95 1018.9 2302.03 1020.68 Q2300.14 1022.47 2300.14 1025.59 Q2300.14 1028.72 2302.03 1030.5 Q2303.95 1032.28 2307.29 1032.28 Q2310.62 1032.28 2312.54 1030.5 Q2314.46 1028.69 2314.46 1025.59 Q2314.46 1022.47 2312.54 1020.68 Q2310.64 1018.9 2307.29 1018.9 M2302.61 1016.91 Q2299.6 1016.17 2297.91 1014.11 Q2296.25 1012.05 2296.25 1009.09 Q2296.25 1004.94 2299.19 1002.54 Q2302.15 1000.13 2307.29 1000.13 Q2312.45 1000.13 2315.39 1002.54 Q2318.33 1004.94 2318.33 1009.09 Q2318.33 1012.05 2316.64 1014.11 Q2314.97 1016.17 2311.99 1016.91 Q2315.37 1017.7 2317.24 1019.99 Q2319.14 1022.28 2319.14 1025.59 Q2319.14 1030.61 2316.06 1033.3 Q2313.01 1035.98 2307.29 1035.98 Q2301.57 1035.98 2298.49 1033.3 Q2295.44 1030.61 2295.44 1025.59 Q2295.44 1022.28 2297.33 1019.99 Q2299.23 1017.7 2302.61 1016.91 M2300.9 1009.53 Q2300.9 1012.21 2302.57 1013.72 Q2304.26 1015.22 2307.29 1015.22 Q2310.3 1015.22 2311.99 1013.72 Q2313.7 1012.21 2313.7 1009.53 Q2313.7 1006.84 2311.99 1005.34 Q2310.3 1003.83 2307.29 1003.83 Q2304.26 1003.83 2302.57 1005.34 Q2300.9 1006.84 2300.9 1009.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2252.77 934.657 L2260.41 934.657 L2260.41 908.291 L2252.1 909.958 L2252.1 905.699 L2260.37 904.032 L2265.04 904.032 L2265.04 934.657 L2272.68 934.657 L2272.68 938.592 L2252.77 938.592 L2252.77 934.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 932.713 L2287.01 932.713 L2287.01 938.592 L2282.13 938.592 L2282.13 932.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 907.111 Q2303.58 907.111 2301.76 910.676 Q2299.95 914.217 2299.95 921.347 Q2299.95 928.453 2301.76 932.018 Q2303.58 935.56 2307.2 935.56 Q2310.83 935.56 2312.64 932.018 Q2314.46 928.453 2314.46 921.347 Q2314.46 914.217 2312.64 910.676 Q2310.83 907.111 2307.2 907.111 M2307.2 903.407 Q2313.01 903.407 2316.06 908.014 Q2319.14 912.597 2319.14 921.347 Q2319.14 930.074 2316.06 934.68 Q2313.01 939.263 2307.2 939.263 Q2301.39 939.263 2298.31 934.68 Q2295.25 930.074 2295.25 921.347 Q2295.25 912.597 2298.31 908.014 Q2301.39 903.407 2307.2 903.407 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2147.38 1219.57 Q2149.15 1219.57 2150.25 1220.7 Q2151.34 1221.79 2151.34 1223.18 Q2151.34 1224.18 2150.73 1224.92 Q2150.12 1225.63 2149.05 1225.63 Q2147.96 1225.63 2146.8 1224.79 Q2145.64 1223.95 2145.48 1222.05 Q2144.29 1223.31 2144.29 1225.3 Q2144.29 1226.3 2144.93 1227.14 Q2145.54 1227.95 2146.54 1228.4 Q2147.57 1228.88 2153.4 1229.97 Q2155.3 1230.33 2157.14 1230.65 Q2158.97 1230.97 2160.91 1231.36 L2160.91 1225.88 Q2160.91 1225.18 2160.94 1224.89 Q2160.97 1224.6 2161.13 1224.37 Q2161.29 1224.11 2161.65 1224.11 Q2162.55 1224.11 2162.77 1224.53 Q2162.97 1224.92 2162.97 1226.08 L2162.97 1231.75 L2183.87 1235.71 Q2184.48 1235.8 2186.41 1236.22 Q2188.31 1236.61 2191.44 1237.54 Q2194.59 1238.48 2196.46 1239.41 Q2197.52 1239.93 2198.52 1240.6 Q2199.55 1241.25 2200.58 1242.18 Q2201.61 1243.11 2202.23 1244.34 Q2202.87 1245.56 2202.87 1246.85 Q2202.87 1249.04 2201.65 1250.75 Q2200.42 1252.45 2198.33 1252.45 Q2196.56 1252.45 2195.46 1251.36 Q2194.37 1250.23 2194.37 1248.85 Q2194.37 1247.85 2194.98 1247.14 Q2195.59 1246.4 2196.66 1246.4 Q2197.11 1246.4 2197.62 1246.56 Q2198.14 1246.72 2198.72 1247.08 Q2199.33 1247.43 2199.75 1248.2 Q2200.17 1248.98 2200.23 1250.04 Q2201.42 1248.78 2201.42 1246.85 Q2201.42 1246.24 2201.16 1245.69 Q2200.94 1245.14 2200.36 1244.69 Q2199.78 1244.21 2199.2 1243.86 Q2198.65 1243.5 2197.59 1243.15 Q2196.56 1242.79 2195.79 1242.57 Q2195.01 1242.34 2193.63 1242.05 Q2192.24 1241.73 2191.41 1241.57 Q2190.6 1241.41 2189.02 1241.12 L2162.97 1236.19 L2162.97 1240.54 Q2162.97 1241.31 2162.94 1241.63 Q2162.9 1241.92 2162.74 1242.15 Q2162.55 1242.37 2162.16 1242.37 Q2161.55 1242.37 2161.29 1242.12 Q2161 1241.83 2160.97 1241.5 Q2160.91 1241.18 2160.91 1240.41 L2160.91 1235.84 Q2152.76 1234.29 2150.57 1233.68 Q2148.25 1232.97 2146.64 1231.87 Q2145 1230.78 2144.22 1229.56 Q2143.45 1228.33 2143.16 1227.33 Q2142.84 1226.3 2142.84 1225.3 Q2142.84 1223.05 2144.06 1221.31 Q2145.25 1219.57 2147.38 1219.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2172.86 1210.7 Q2161.71 1210.7 2152.73 1206.55 Q2148.96 1204.77 2145.8 1202.29 Q2142.65 1199.81 2141.26 1198.17 Q2139.88 1196.53 2139.88 1196.08 Q2139.88 1195.43 2140.52 1195.4 Q2140.84 1195.4 2141.65 1196.27 Q2152.47 1206.9 2172.86 1206.87 Q2193.31 1206.87 2203.71 1196.53 Q2204.84 1195.4 2205.19 1195.4 Q2205.83 1195.4 2205.83 1196.08 Q2205.83 1196.53 2204.51 1198.11 Q2203.19 1199.69 2200.17 1202.13 Q2197.14 1204.58 2193.43 1206.35 Q2184.45 1210.7 2172.86 1210.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2164.55 1157.54 Q2166.35 1157.54 2167.38 1158.67 Q2168.38 1159.8 2168.38 1161.09 Q2168.38 1162.31 2167.67 1162.96 Q2166.96 1163.6 2166.06 1163.6 Q2164.84 1163.6 2163.77 1162.7 Q2162.71 1161.8 2162.48 1160.44 Q2161.65 1161.76 2161.65 1163.73 Q2161.65 1165.02 2162.32 1166.14 Q2163 1167.24 2163.87 1167.91 Q2164.74 1168.56 2166 1169.14 Q2167.22 1169.69 2167.96 1169.91 Q2168.67 1170.1 2169.44 1170.27 L2178.46 1172.52 Q2182.74 1173.62 2184.26 1173.62 Q2186.12 1173.62 2187.38 1172.71 Q2188.6 1171.81 2188.6 1170.01 Q2188.6 1169.3 2188.41 1168.49 Q2188.18 1167.69 2187.61 1166.66 Q2186.99 1165.6 2186.09 1164.66 Q2185.16 1163.7 2183.58 1162.76 Q2182 1161.83 2179.97 1161.22 Q2179.26 1161.02 2179.26 1160.38 Q2179.26 1159.57 2179.91 1159.57 Q2180.46 1159.57 2181.62 1160.02 Q2182.74 1160.44 2184.22 1161.38 Q2185.67 1162.28 2186.99 1163.47 Q2188.28 1164.66 2189.18 1166.43 Q2190.09 1168.2 2190.09 1170.14 Q2190.09 1172.91 2188.6 1174.74 Q2187.12 1176.58 2185.06 1177.25 Q2185.35 1177.42 2185.74 1177.64 Q2186.12 1177.87 2186.99 1178.54 Q2187.83 1179.19 2188.47 1179.93 Q2189.09 1180.67 2189.57 1181.83 Q2190.09 1182.95 2190.09 1184.18 Q2190.09 1185.72 2189.63 1187.11 Q2189.18 1188.46 2188.15 1189.43 Q2187.12 1190.39 2185.71 1190.39 Q2184.13 1190.39 2183.03 1189.33 Q2181.9 1188.24 2181.9 1186.76 Q2181.9 1185.82 2182.45 1185.08 Q2183 1184.31 2184.19 1184.31 Q2185.51 1184.31 2186.51 1185.21 Q2187.51 1186.11 2187.77 1187.4 Q2188.6 1186.08 2188.6 1184.11 Q2188.6 1181.99 2186.74 1180.31 Q2184.87 1178.64 2181.74 1177.83 Q2174.24 1175.84 2170.89 1175.06 Q2167.51 1174.29 2166.06 1174.29 Q2164.71 1174.29 2163.77 1174.65 Q2162.84 1175 2162.42 1175.61 Q2161.97 1176.19 2161.81 1176.74 Q2161.65 1177.25 2161.65 1177.83 Q2161.65 1178.8 2162.03 1179.9 Q2162.42 1180.96 2163.32 1182.25 Q2164.19 1183.5 2166 1184.69 Q2167.8 1185.89 2170.28 1186.69 Q2171.02 1186.85 2171.02 1187.56 Q2170.99 1188.33 2170.34 1188.33 Q2169.8 1188.33 2168.67 1187.91 Q2167.51 1187.46 2166.06 1186.56 Q2164.61 1185.63 2163.32 1184.44 Q2162 1183.21 2161.1 1181.44 Q2160.2 1179.64 2160.2 1177.71 Q2160.2 1176.84 2160.39 1176 Q2160.55 1175.13 2161.04 1174.1 Q2161.52 1173.04 2162.58 1172.1 Q2163.64 1171.17 2165.19 1170.59 Q2164.45 1170.2 2163.74 1169.69 Q2163.03 1169.14 2162.16 1168.3 Q2161.26 1167.43 2160.75 1166.24 Q2160.2 1165.02 2160.2 1163.66 Q2160.2 1162.34 2160.55 1161.05 Q2160.87 1159.77 2161.94 1158.67 Q2162.97 1157.54 2164.55 1157.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2188.28 1152.12 Q2187.22 1153.05 2185.83 1153.05 Q2184.45 1153.05 2183.42 1152.15 Q2182.36 1151.21 2182.36 1149.54 Q2182.36 1147.58 2184.26 1146.45 Q2186.12 1145.32 2189.28 1145.32 Q2192.69 1145.32 2195.85 1146.71 Q2199.04 1148.09 2200.55 1149.44 Q2202.07 1150.8 2202.07 1151.34 Q2202.07 1151.99 2201.36 1151.99 Q2201.1 1151.99 2200.62 1151.54 Q2195.53 1146.8 2189.28 1146.77 Q2188.28 1146.77 2188.28 1146.9 L2188.41 1147.06 Q2189.34 1148.19 2189.34 1149.54 Q2189.34 1151.18 2188.28 1152.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2161.65 1104.26 Q2162.55 1104.26 2162.77 1104.68 Q2162.97 1105.09 2162.97 1106.25 L2162.97 1112.44 L2182.42 1117.33 Q2184.13 1117.72 2185.58 1117.72 Q2187.19 1117.72 2187.9 1117.24 Q2188.6 1116.72 2188.6 1115.66 Q2188.6 1113.56 2186.7 1111.31 Q2184.8 1109.02 2180.17 1107.09 Q2179.55 1106.83 2179.43 1106.7 Q2179.26 1106.54 2179.26 1106.12 Q2179.26 1105.32 2179.91 1105.32 Q2180.13 1105.32 2181.16 1105.77 Q2182.19 1106.19 2183.71 1107.12 Q2185.22 1108.02 2186.64 1109.22 Q2188.06 1110.38 2189.09 1112.15 Q2190.09 1113.92 2190.09 1115.82 Q2190.09 1118.49 2188.38 1120.2 Q2186.67 1121.87 2184 1121.87 Q2183.13 1121.87 2180.36 1121.2 Q2177.56 1120.52 2162.97 1116.85 L2162.97 1122.68 Q2162.97 1123.48 2162.94 1123.81 Q2162.9 1124.1 2162.74 1124.32 Q2162.55 1124.51 2162.16 1124.51 Q2161.55 1124.51 2161.29 1124.26 Q2161 1124 2160.97 1123.68 Q2160.91 1123.32 2160.91 1122.52 L2160.91 1116.33 L2150.44 1113.76 Q2149.41 1113.5 2148.83 1112.86 Q2148.22 1112.18 2148.15 1111.79 Q2148.06 1111.41 2148.06 1111.12 Q2148.06 1110.25 2148.54 1109.73 Q2148.99 1109.22 2149.83 1109.22 Q2150.28 1109.22 2160.91 1111.92 L2160.91 1106.12 Q2160.91 1105.38 2160.94 1105.09 Q2160.97 1104.77 2161.13 1104.51 Q2161.29 1104.26 2161.65 1104.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2205.19 1099.1 Q2204.87 1099.1 2204.06 1098.26 Q2193.24 1087.63 2172.86 1087.63 Q2152.4 1087.63 2142.07 1097.84 Q2140.87 1099.1 2140.52 1099.1 Q2139.88 1099.1 2139.88 1098.45 Q2139.88 1098 2141.2 1096.43 Q2142.52 1094.82 2145.54 1092.4 Q2148.57 1089.95 2152.28 1088.15 Q2161.26 1083.8 2172.86 1083.8 Q2184 1083.8 2192.98 1087.96 Q2196.75 1089.73 2199.91 1092.21 Q2203.06 1094.69 2204.45 1096.33 Q2205.83 1097.97 2205.83 1098.45 Q2205.83 1099.1 2205.19 1099.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2658.04 839.389 Q2658.04 840.373 2657.59 840.619 Q2657.13 840.829 2655.87 840.829 L2649.12 840.829 L2643.78 862.05 Q2643.36 863.912 2643.36 865.493 Q2643.36 867.25 2643.88 868.023 Q2644.45 868.796 2645.61 868.796 Q2647.89 868.796 2650.35 866.723 Q2652.84 864.65 2654.95 859.591 Q2655.23 858.923 2655.37 858.783 Q2655.55 858.607 2656.01 858.607 Q2656.88 858.607 2656.88 859.31 Q2656.88 859.556 2656.39 860.68 Q2655.94 861.804 2654.92 863.456 Q2653.93 865.107 2652.63 866.653 Q2651.37 868.199 2649.44 869.323 Q2647.5 870.412 2645.43 870.412 Q2642.51 870.412 2640.65 868.55 Q2638.83 866.688 2638.83 863.772 Q2638.83 862.823 2639.56 859.802 Q2640.3 856.745 2644.31 840.829 L2637.95 840.829 Q2637.07 840.829 2636.72 840.794 Q2636.4 840.759 2636.16 840.584 Q2635.94 840.373 2635.94 839.951 Q2635.94 839.284 2636.23 839.002 Q2636.51 838.686 2636.86 838.651 Q2637.24 838.581 2638.12 838.581 L2644.87 838.581 L2647.68 827.162 Q2647.96 826.038 2648.66 825.406 Q2649.4 824.738 2649.82 824.668 Q2650.24 824.563 2650.56 824.563 Q2651.51 824.563 2652.07 825.09 Q2652.63 825.581 2652.63 826.495 Q2652.63 826.987 2649.68 838.581 L2656.01 838.581 Q2656.81 838.581 2657.13 838.616 Q2657.48 838.651 2657.76 838.827 Q2658.04 839.002 2658.04 839.389 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2681.61 858.677 Q2681.68 857.799 2683.05 857.799 L2727.15 857.799 Q2729.22 857.799 2729.25 858.607 Q2729.25 859.485 2727.29 859.45 L2683.55 859.45 Q2681.61 859.485 2681.61 858.677 M2681.61 844.624 Q2681.61 843.746 2683.12 843.781 L2727.08 843.781 Q2729.22 843.781 2729.25 844.624 Q2729.25 845.432 2727.43 845.432 L2683.05 845.432 Q2681.61 845.432 2681.61 844.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2756.99 846.591 Q2756.99 836.016 2759.66 830.254 Q2763.39 821.682 2772.17 821.682 Q2774.03 821.682 2775.96 822.209 Q2777.93 822.7 2780.39 824.633 Q2782.89 826.565 2784.4 829.727 Q2787.28 835.84 2787.28 846.591 Q2787.28 857.096 2784.61 862.823 Q2780.71 871.185 2772.1 871.185 Q2768.87 871.185 2765.57 869.534 Q2762.3 867.882 2760.22 863.912 Q2756.99 857.975 2756.99 846.591 M2762.97 845.713 Q2762.97 856.569 2763.74 860.891 Q2764.62 865.564 2767.01 867.601 Q2769.43 869.604 2772.1 869.604 Q2774.98 869.604 2777.37 867.461 Q2779.79 865.282 2780.53 860.61 Q2781.34 856.007 2781.31 845.713 Q2781.31 835.7 2780.6 831.695 Q2779.65 827.022 2777.12 825.16 Q2774.63 823.263 2772.1 823.263 Q2771.15 823.263 2770.13 823.544 Q2769.15 823.825 2767.71 824.633 Q2766.27 825.441 2765.14 827.444 Q2764.05 829.446 2763.53 832.468 Q2762.97 836.367 2762.97 845.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2793.71 868.445 Q2792.62 867.285 2792.62 865.774 Q2792.62 864.264 2793.71 863.174 Q2794.8 862.05 2796.45 862.05 Q2798.03 862.05 2799.08 863.104 Q2800.17 864.123 2800.17 865.809 Q2800.17 867.461 2799.01 868.55 Q2797.89 869.604 2796.45 869.604 Q2794.8 869.604 2793.71 868.445 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2812.41 859.907 Q2812.41 857.764 2813.64 856.745 Q2814.87 855.726 2816.45 855.726 Q2818.1 855.726 2819.26 856.815 Q2820.46 857.869 2820.46 859.731 Q2820.46 861.734 2819.05 862.858 Q2817.68 863.983 2815.72 863.701 Q2817.44 866.582 2820.6 867.882 Q2823.8 869.182 2826.75 869.182 Q2829.84 869.182 2832.33 866.512 Q2834.86 863.842 2834.86 857.307 Q2834.86 851.756 2832.69 848.559 Q2830.54 845.362 2826.29 845.362 L2823.13 845.362 Q2822.04 845.362 2821.72 845.256 Q2821.41 845.151 2821.41 844.554 Q2821.41 843.851 2822.5 843.71 Q2823.59 843.71 2825.31 843.5 Q2829.49 843.359 2831.7 839.74 Q2833.7 836.367 2833.7 831.554 Q2833.7 827.162 2831.6 825.335 Q2829.52 823.473 2826.82 823.473 Q2824.29 823.473 2821.51 824.527 Q2818.74 825.581 2817.23 827.935 Q2821.69 827.935 2821.69 831.554 Q2821.69 833.135 2820.67 834.189 Q2819.69 835.208 2818.03 835.208 Q2816.45 835.208 2815.4 834.224 Q2814.35 833.205 2814.35 831.484 Q2814.35 827.373 2818 824.527 Q2821.69 821.682 2827.1 821.682 Q2832.44 821.682 2836.37 824.492 Q2840.34 827.303 2840.34 831.624 Q2840.34 835.876 2837.53 839.354 Q2834.72 842.832 2830.26 844.273 Q2835.74 845.362 2839.01 849.086 Q2842.28 852.775 2842.28 857.307 Q2842.28 862.929 2837.85 867.074 Q2833.42 871.185 2826.96 871.185 Q2820.99 871.185 2816.7 867.953 Q2812.41 864.72 2812.41 859.907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2848.33 846.591 Q2848.33 836.016 2851 830.254 Q2854.72 821.682 2863.5 821.682 Q2865.37 821.682 2867.3 822.209 Q2869.27 822.7 2871.73 824.633 Q2874.22 826.565 2875.73 829.727 Q2878.61 835.84 2878.61 846.591 Q2878.61 857.096 2875.94 862.823 Q2872.04 871.185 2863.43 871.185 Q2860.2 871.185 2856.9 869.534 Q2853.63 867.882 2851.56 863.912 Q2848.33 857.975 2848.33 846.591 M2854.3 845.713 Q2854.3 856.569 2855.07 860.891 Q2855.95 865.564 2858.34 867.601 Q2860.76 869.604 2863.43 869.604 Q2866.31 869.604 2868.7 867.461 Q2871.13 865.282 2871.87 860.61 Q2872.67 856.007 2872.64 845.713 Q2872.64 835.7 2871.94 831.695 Q2870.99 827.022 2868.46 825.16 Q2865.96 823.263 2863.43 823.263 Q2862.48 823.263 2861.47 823.544 Q2860.48 823.825 2859.04 824.633 Q2857.6 825.441 2856.48 827.444 Q2855.39 829.446 2854.86 832.468 Q2854.3 836.367 2854.3 845.713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip417)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,1396.03 2391.23,1395.73 2393.08,1395.43 2394.93,1395.11 2396.79,1394.78 2398.64,1394.44 2400.49,1394.1 2402.34,1393.75 2404.2,1393.38 2406.05,1393.01 \n",
" 2407.9,1392.62 2409.76,1392.23 2411.61,1391.82 2413.46,1391.41 2415.31,1390.98 2417.17,1390.54 2419.02,1390.09 2420.87,1389.63 2422.73,1389.16 2424.58,1388.68 \n",
" 2426.43,1388.18 2428.28,1387.67 2430.14,1387.15 2431.99,1386.62 2433.84,1386.07 2435.7,1385.51 2437.55,1384.94 2439.4,1384.35 2441.25,1383.75 2443.11,1383.14 \n",
" 2444.96,1382.51 2446.81,1381.87 2448.67,1381.21 2450.52,1380.54 2452.37,1379.86 2454.22,1379.16 2456.08,1378.44 2457.93,1377.71 2459.78,1376.96 2461.64,1376.2 \n",
" 2463.49,1375.42 2465.34,1374.62 2467.19,1373.81 2469.05,1372.99 2470.9,1372.14 2472.75,1371.28 2474.61,1370.4 2476.46,1369.51 2478.31,1368.6 2480.16,1367.67 \n",
" 2482.02,1366.72 2483.87,1365.76 2485.72,1364.78 2487.58,1363.78 2489.43,1362.76 2491.28,1361.73 2493.13,1360.67 2494.99,1359.6 2496.84,1358.51 2498.69,1357.41 \n",
" 2500.55,1356.28 2502.4,1355.14 2504.25,1353.97 2506.1,1352.79 2507.96,1351.59 2509.81,1350.38 2511.66,1349.14 2513.52,1347.88 2515.37,1346.61 2517.22,1345.32 \n",
" 2519.07,1344.01 2520.93,1342.68 2522.78,1341.33 2524.63,1339.97 2526.49,1338.58 2528.34,1337.18 2530.19,1335.76 2532.04,1334.32 2533.9,1332.87 2535.75,1331.39 \n",
" 2537.6,1329.9 2539.46,1328.39 2541.31,1326.86 2543.16,1325.32 2545.01,1323.76 2546.87,1322.18 2548.72,1320.59 2550.57,1318.98 2552.43,1317.35 2554.28,1315.71 \n",
" 2556.13,1314.05 2557.99,1312.38 2559.84,1310.69 2561.69,1308.99 2563.54,1307.27 2565.4,1305.54 2567.25,1303.79 2569.1,1302.03 2570.96,1300.26 2572.81,1298.47 \n",
" 2574.66,1296.67 2576.51,1294.86 2578.37,1293.04 2580.22,1291.21 2582.07,1289.36 2583.93,1287.51 2585.78,1285.65 2587.63,1283.77 2589.48,1281.89 2591.34,1280 \n",
" 2593.19,1278.1 2595.04,1276.2 2596.9,1274.28 2598.75,1272.36 2600.6,1270.44 2602.45,1268.51 2604.31,1266.58 2606.16,1264.64 2608.01,1262.69 2609.87,1260.75 \n",
" 2611.72,1258.8 2613.57,1256.85 2615.42,1254.9 2617.28,1252.95 2619.13,1251 2620.98,1249.05 2622.84,1247.11 2624.69,1245.16 2626.54,1243.22 2628.39,1241.28 \n",
" 2630.25,1239.35 2632.1,1237.42 2633.95,1235.49 2635.81,1233.58 2637.66,1231.67 2639.51,1229.77 2641.36,1227.87 2643.22,1225.99 2645.07,1224.12 2646.92,1222.25 \n",
" 2648.78,1220.4 2650.63,1218.56 2652.48,1216.74 2654.33,1214.92 2656.19,1213.13 2658.04,1211.34 2659.89,1209.58 2661.75,1207.83 2663.6,1206.1 2665.45,1204.38 \n",
" 2667.3,1202.69 2669.16,1201.01 2671.01,1199.36 2672.86,1197.72 2674.72,1196.11 2676.57,1194.52 2678.42,1192.96 2680.27,1191.41 2682.13,1189.9 2683.98,1188.4 \n",
" 2685.83,1186.94 2687.69,1185.5 2689.54,1184.09 2691.39,1182.7 2693.24,1181.34 2695.1,1180.02 2696.95,1178.72 2698.8,1177.45 2700.66,1176.22 2702.51,1175.02 \n",
" 2704.36,1173.84 2706.21,1172.7 2708.07,1171.6 2709.92,1170.53 2711.77,1169.49 2713.63,1168.49 2715.48,1167.52 2717.33,1166.59 2719.18,1165.69 2721.04,1164.83 \n",
" 2722.89,1164.01 2724.74,1163.23 2726.6,1162.48 2728.45,1161.77 2730.3,1161.1 2732.15,1160.47 2734.01,1159.88 2735.86,1159.33 2737.71,1158.82 2739.57,1158.35 \n",
" 2741.42,1157.91 2743.27,1157.52 2745.12,1157.17 2746.98,1156.86 2748.83,1156.59 2750.68,1156.36 2752.54,1156.18 2754.39,1156.03 2756.24,1155.93 2758.09,1155.87 \n",
" 2759.95,1155.85 2761.8,1155.87 2763.65,1155.93 2765.51,1156.03 2767.36,1156.18 2769.21,1156.36 2771.06,1156.59 2772.92,1156.86 2774.77,1157.17 2776.62,1157.52 \n",
" 2778.48,1157.91 2780.33,1158.35 2782.18,1158.82 2784.04,1159.33 2785.89,1159.88 2787.74,1160.47 2789.59,1161.1 2791.45,1161.77 2793.3,1162.48 2795.15,1163.23 \n",
" 2797.01,1164.01 2798.86,1164.83 2800.71,1165.69 2802.56,1166.59 2804.42,1167.52 2806.27,1168.49 2808.12,1169.49 2809.98,1170.53 2811.83,1171.6 2813.68,1172.7 \n",
" 2815.53,1173.84 2817.39,1175.02 2819.24,1176.22 2821.09,1177.45 2822.95,1178.72 2824.8,1180.02 2826.65,1181.34 2828.5,1182.7 2830.36,1184.09 2832.21,1185.5 \n",
" 2834.06,1186.94 2835.92,1188.4 2837.77,1189.9 2839.62,1191.41 2841.47,1192.96 2843.33,1194.52 2845.18,1196.11 2847.03,1197.72 2848.89,1199.36 2850.74,1201.01 \n",
" 2852.59,1202.69 2854.44,1204.38 2856.3,1206.1 2858.15,1207.83 2860,1209.58 2861.86,1211.34 2863.71,1213.13 2865.56,1214.92 2867.41,1216.74 2869.27,1218.56 \n",
" 2871.12,1220.4 2872.97,1222.25 2874.83,1224.12 2876.68,1225.99 2878.53,1227.87 2880.38,1229.77 2882.24,1231.67 2884.09,1233.58 2885.94,1235.49 2887.8,1237.42 \n",
" 2889.65,1239.35 2891.5,1241.28 2893.35,1243.22 2895.21,1245.16 2897.06,1247.11 2898.91,1249.05 2900.77,1251 2902.62,1252.95 2904.47,1254.9 2906.32,1256.85 \n",
" 2908.18,1258.8 2910.03,1260.75 2911.88,1262.69 2913.74,1264.64 2915.59,1266.58 2917.44,1268.51 2919.29,1270.44 2921.15,1272.36 2923,1274.28 2924.85,1276.2 \n",
" 2926.71,1278.1 2928.56,1280 2930.41,1281.89 2932.26,1283.77 2934.12,1285.65 2935.97,1287.51 2937.82,1289.36 2939.68,1291.21 2941.53,1293.04 2943.38,1294.86 \n",
" 2945.23,1296.67 2947.09,1298.47 2948.94,1300.26 2950.79,1302.03 2952.65,1303.79 2954.5,1305.54 2956.35,1307.27 2958.2,1308.99 2960.06,1310.69 2961.91,1312.38 \n",
" 2963.76,1314.05 2965.62,1315.71 2967.47,1317.35 2969.32,1318.98 2971.17,1320.59 2973.03,1322.18 2974.88,1323.76 2976.73,1325.32 2978.59,1326.86 2980.44,1328.39 \n",
" 2982.29,1329.9 2984.14,1331.39 2986,1332.87 2987.85,1334.32 2989.7,1335.76 2991.56,1337.18 2993.41,1338.58 2995.26,1339.97 2997.11,1341.33 2998.97,1342.68 \n",
" 3000.82,1344.01 3002.67,1345.32 3004.53,1346.61 3006.38,1347.88 3008.23,1349.14 3010.09,1350.38 3011.94,1351.59 3013.79,1352.79 3015.64,1353.97 3017.5,1355.14 \n",
" 3019.35,1356.28 3021.2,1357.41 3023.06,1358.51 3024.91,1359.6 3026.76,1360.67 3028.61,1361.73 3030.47,1362.76 3032.32,1363.78 3034.17,1364.78 3036.03,1365.76 \n",
" 3037.88,1366.72 3039.73,1367.67 3041.58,1368.6 3043.44,1369.51 3045.29,1370.4 3047.14,1371.28 3049,1372.14 3050.85,1372.99 3052.7,1373.81 3054.55,1374.62 \n",
" 3056.41,1375.42 3058.26,1376.2 3060.11,1376.96 3061.97,1377.71 3063.82,1378.44 3065.67,1379.16 3067.52,1379.86 3069.38,1380.54 3071.23,1381.21 3073.08,1381.87 \n",
" 3074.94,1382.51 3076.79,1383.14 3078.64,1383.75 3080.49,1384.35 3082.35,1384.94 3084.2,1385.51 3086.05,1386.07 3087.91,1386.62 3089.76,1387.15 3091.61,1387.67 \n",
" 3093.46,1388.18 3095.32,1388.68 3097.17,1389.16 3099.02,1389.63 3100.88,1390.09 3102.73,1390.54 3104.58,1390.98 3106.43,1391.41 3108.29,1391.82 3110.14,1392.23 \n",
" 3111.99,1392.62 3113.85,1393.01 3115.7,1393.38 3117.55,1393.75 3119.4,1394.1 3121.26,1394.44 3123.11,1394.78 3124.96,1395.11 3126.82,1395.43 3128.67,1395.73 \n",
" 3130.52,1396.03 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M233.806 2204.92 L1019.42 2204.92 L1019.42 1721.31 L233.806 1721.31 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip418\">\n",
" <rect x=\"233\" y=\"1721\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 256.041,2204.92 256.041,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 441.328,2204.92 441.328,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 626.614,2204.92 626.614,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 811.901,2204.92 811.901,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 997.188,2204.92 997.188,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,2204.92 1019.42,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,2204.92 256.041,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 441.328,2204.92 441.328,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 626.614,2204.92 626.614,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 811.901,2204.92 811.901,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 997.188,2204.92 997.188,2186.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M225.983 2256.89 L255.659 2256.89 L255.659 2260.83 L225.983 2260.83 L225.983 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M269.779 2269.78 L286.098 2269.78 L286.098 2273.72 L264.154 2273.72 L264.154 2269.78 Q266.816 2267.03 271.399 2262.4 Q276.006 2257.75 277.186 2256.41 Q279.432 2253.88 280.311 2252.15 Q281.214 2250.39 281.214 2248.7 Q281.214 2245.94 279.27 2244.21 Q277.348 2242.47 274.247 2242.47 Q272.048 2242.47 269.594 2243.23 Q267.163 2244 264.386 2245.55 L264.386 2240.83 Q267.21 2239.69 269.663 2239.11 Q272.117 2238.53 274.154 2238.53 Q279.524 2238.53 282.719 2241.22 Q285.913 2243.91 285.913 2248.4 Q285.913 2250.53 285.103 2252.45 Q284.316 2254.34 282.21 2256.94 Q281.631 2257.61 278.529 2260.83 Q275.427 2264.02 269.779 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M411.085 2256.89 L440.76 2256.89 L440.76 2260.83 L411.085 2260.83 L411.085 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M451.663 2269.78 L459.302 2269.78 L459.302 2243.42 L450.992 2245.09 L450.992 2240.83 L459.256 2239.16 L463.932 2239.16 L463.932 2269.78 L471.57 2269.78 L471.57 2273.72 L451.663 2273.72 L451.663 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M626.614 2242.24 Q623.003 2242.24 621.175 2245.8 Q619.369 2249.34 619.369 2256.47 Q619.369 2263.58 621.175 2267.15 Q623.003 2270.69 626.614 2270.69 Q630.249 2270.69 632.054 2267.15 Q633.883 2263.58 633.883 2256.47 Q633.883 2249.34 632.054 2245.8 Q630.249 2242.24 626.614 2242.24 M626.614 2238.53 Q632.425 2238.53 635.48 2243.14 Q638.559 2247.72 638.559 2256.47 Q638.559 2265.2 635.48 2269.81 Q632.425 2274.39 626.614 2274.39 Q620.804 2274.39 617.726 2269.81 Q614.67 2265.2 614.67 2256.47 Q614.67 2247.72 617.726 2243.14 Q620.804 2238.53 626.614 2238.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M802.283 2269.78 L809.922 2269.78 L809.922 2243.42 L801.612 2245.09 L801.612 2240.83 L809.876 2239.16 L814.552 2239.16 L814.552 2269.78 L822.191 2269.78 L822.191 2273.72 L802.283 2273.72 L802.283 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M991.841 2269.78 L1008.16 2269.78 L1008.16 2273.72 L986.216 2273.72 L986.216 2269.78 Q988.878 2267.03 993.461 2262.4 Q998.068 2257.75 999.248 2256.41 Q1001.49 2253.88 1002.37 2252.15 Q1003.28 2250.39 1003.28 2248.7 Q1003.28 2245.94 1001.33 2244.21 Q999.41 2242.47 996.309 2242.47 Q994.109 2242.47 991.656 2243.23 Q989.225 2244 986.447 2245.55 L986.447 2240.83 Q989.272 2239.69 991.725 2239.11 Q994.179 2238.53 996.216 2238.53 Q1001.59 2238.53 1004.78 2241.22 Q1007.98 2243.91 1007.98 2248.4 Q1007.98 2250.53 1007.16 2252.45 Q1006.38 2254.34 1004.27 2256.94 Q1003.69 2257.61 1000.59 2260.83 Q997.489 2264.02 991.841 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M640.792 2322.54 Q640.792 2324.34 639.665 2325.37 Q638.538 2326.37 637.25 2326.37 Q636.026 2326.37 635.382 2325.66 Q634.738 2324.95 634.738 2324.05 Q634.738 2322.83 635.639 2321.76 Q636.541 2320.7 637.894 2320.47 Q636.573 2319.64 634.609 2319.64 Q633.321 2319.64 632.193 2320.31 Q631.098 2320.99 630.422 2321.86 Q629.778 2322.73 629.198 2323.99 Q628.651 2325.21 628.425 2325.95 Q628.232 2326.66 628.071 2327.43 L625.817 2336.45 Q624.722 2340.73 624.722 2342.25 Q624.722 2344.11 625.623 2345.37 Q626.525 2346.59 628.329 2346.59 Q629.037 2346.59 629.842 2346.4 Q630.647 2346.17 631.678 2345.6 Q632.741 2344.98 633.675 2344.08 Q634.641 2343.15 635.575 2341.57 Q636.509 2339.99 637.121 2337.96 Q637.314 2337.25 637.958 2337.25 Q638.763 2337.25 638.763 2337.9 Q638.763 2338.45 638.312 2339.6 Q637.894 2340.73 636.96 2342.21 Q636.058 2343.66 634.866 2344.98 Q633.675 2346.27 631.903 2347.17 Q630.132 2348.08 628.2 2348.08 Q625.43 2348.08 623.594 2346.59 Q621.759 2345.11 621.082 2343.05 Q620.921 2343.34 620.696 2343.73 Q620.47 2344.11 619.794 2344.98 Q619.15 2345.82 618.409 2346.46 Q617.668 2347.08 616.509 2347.56 Q615.382 2348.08 614.158 2348.08 Q612.612 2348.08 611.227 2347.62 Q609.875 2347.17 608.908 2346.14 Q607.942 2345.11 607.942 2343.7 Q607.942 2342.12 609.005 2341.02 Q610.1 2339.89 611.582 2339.89 Q612.516 2339.89 613.256 2340.44 Q614.029 2340.99 614.029 2342.18 Q614.029 2343.5 613.127 2344.5 Q612.226 2345.5 610.937 2345.76 Q612.258 2346.59 614.222 2346.59 Q616.348 2346.59 618.023 2344.73 Q619.697 2342.86 620.503 2339.73 Q622.499 2332.23 623.272 2328.88 Q624.045 2325.5 624.045 2324.05 Q624.045 2322.7 623.691 2321.76 Q623.337 2320.83 622.725 2320.41 Q622.145 2319.96 621.598 2319.8 Q621.082 2319.64 620.503 2319.64 Q619.536 2319.64 618.441 2320.02 Q617.379 2320.41 616.09 2321.31 Q614.834 2322.18 613.643 2323.99 Q612.451 2325.79 611.646 2328.27 Q611.485 2329.01 610.776 2329.01 Q610.003 2328.98 610.003 2328.33 Q610.003 2327.79 610.422 2326.66 Q610.873 2325.5 611.775 2324.05 Q612.709 2322.6 613.9 2321.31 Q615.124 2319.99 616.896 2319.09 Q618.699 2318.19 620.631 2318.19 Q621.501 2318.19 622.338 2318.38 Q623.208 2318.54 624.238 2319.03 Q625.301 2319.51 626.235 2320.57 Q627.169 2321.63 627.749 2323.18 Q628.135 2322.44 628.651 2321.73 Q629.198 2321.02 630.036 2320.15 Q630.905 2319.25 632.097 2318.74 Q633.321 2318.19 634.673 2318.19 Q635.994 2318.19 637.282 2318.54 Q638.57 2318.86 639.665 2319.93 Q640.792 2320.96 640.792 2322.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,2204.92 1019.42,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,2108.2 1019.42,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,2011.48 1019.42,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1914.76 1019.42,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1818.03 1019.42,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip418)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 233.806,1721.31 1019.42,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,2204.92 233.806,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,2204.92 252.704,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,2108.2 252.704,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,2011.48 252.704,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1914.76 252.704,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1818.03 252.704,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 233.806,1721.31 252.704,1721.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M128.631 2190.72 Q125.02 2190.72 123.191 2194.28 Q121.385 2197.82 121.385 2204.95 Q121.385 2212.06 123.191 2215.63 Q125.02 2219.17 128.631 2219.17 Q132.265 2219.17 134.07 2215.63 Q135.899 2212.06 135.899 2204.95 Q135.899 2197.82 134.07 2194.28 Q132.265 2190.72 128.631 2190.72 M128.631 2187.01 Q134.441 2187.01 137.496 2191.62 Q140.575 2196.2 140.575 2204.95 Q140.575 2213.68 137.496 2218.29 Q134.441 2222.87 128.631 2222.87 Q122.82 2222.87 119.742 2218.29 Q116.686 2213.68 116.686 2204.95 Q116.686 2196.2 119.742 2191.62 Q122.82 2187.01 128.631 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 2216.32 L153.677 2216.32 L153.677 2222.2 L148.793 2222.2 L148.793 2216.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 2190.72 Q170.251 2190.72 168.422 2194.28 Q166.617 2197.82 166.617 2204.95 Q166.617 2212.06 168.422 2215.63 Q170.251 2219.17 173.862 2219.17 Q177.496 2219.17 179.302 2215.63 Q181.13 2212.06 181.13 2204.95 Q181.13 2197.82 179.302 2194.28 Q177.496 2190.72 173.862 2190.72 M173.862 2187.01 Q179.672 2187.01 182.728 2191.62 Q185.806 2196.2 185.806 2204.95 Q185.806 2213.68 182.728 2218.29 Q179.672 2222.87 173.862 2222.87 Q168.052 2222.87 164.973 2218.29 Q161.918 2213.68 161.918 2204.95 Q161.918 2196.2 164.973 2191.62 Q168.052 2187.01 173.862 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M130.228 2094 Q126.617 2094 124.788 2097.56 Q122.983 2101.1 122.983 2108.23 Q122.983 2115.34 124.788 2118.9 Q126.617 2122.45 130.228 2122.45 Q133.862 2122.45 135.668 2118.9 Q137.496 2115.34 137.496 2108.23 Q137.496 2101.1 135.668 2097.56 Q133.862 2094 130.228 2094 M130.228 2090.29 Q136.038 2090.29 139.094 2094.9 Q142.172 2099.48 142.172 2108.23 Q142.172 2116.96 139.094 2121.57 Q136.038 2126.15 130.228 2126.15 Q124.418 2126.15 121.339 2121.57 Q118.283 2116.96 118.283 2108.23 Q118.283 2099.48 121.339 2094.9 Q124.418 2090.29 130.228 2090.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M150.39 2119.6 L155.274 2119.6 L155.274 2125.48 L150.39 2125.48 L150.39 2119.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M169.487 2121.54 L185.806 2121.54 L185.806 2125.48 L163.862 2125.48 L163.862 2121.54 Q166.524 2118.79 171.107 2114.16 Q175.714 2109.51 176.894 2108.16 Q179.14 2105.64 180.019 2103.9 Q180.922 2102.15 180.922 2100.46 Q180.922 2097.7 178.978 2095.96 Q177.056 2094.23 173.954 2094.23 Q171.755 2094.23 169.302 2094.99 Q166.871 2095.76 164.093 2097.31 L164.093 2092.58 Q166.917 2091.45 169.371 2090.87 Q171.825 2090.29 173.862 2090.29 Q179.232 2090.29 182.427 2092.98 Q185.621 2095.66 185.621 2100.15 Q185.621 2102.28 184.811 2104.21 Q184.024 2106.1 181.917 2108.7 Q181.339 2109.37 178.237 2112.58 Q175.135 2115.78 169.487 2121.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.145 1997.28 Q124.533 1997.28 122.705 2000.84 Q120.899 2004.38 120.899 2011.51 Q120.899 2018.62 122.705 2022.18 Q124.533 2025.72 128.145 2025.72 Q131.779 2025.72 133.584 2022.18 Q135.413 2018.62 135.413 2011.51 Q135.413 2004.38 133.584 2000.84 Q131.779 1997.28 128.145 1997.28 M128.145 1993.57 Q133.955 1993.57 137.01 1998.18 Q140.089 2002.76 140.089 2011.51 Q140.089 2020.24 137.01 2024.84 Q133.955 2029.43 128.145 2029.43 Q122.334 2029.43 119.256 2024.84 Q116.2 2020.24 116.2 2011.51 Q116.2 2002.76 119.256 1998.18 Q122.334 1993.57 128.145 1993.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.306 2022.88 L153.191 2022.88 L153.191 2028.76 L148.306 2028.76 L148.306 2022.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M176.223 1998.27 L164.417 2016.72 L176.223 2016.72 L176.223 1998.27 M174.996 1994.2 L180.876 1994.2 L180.876 2016.72 L185.806 2016.72 L185.806 2020.61 L180.876 2020.61 L180.876 2028.76 L176.223 2028.76 L176.223 2020.61 L160.621 2020.61 L160.621 2016.09 L174.996 1994.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.469 1900.55 Q124.858 1900.55 123.029 1904.12 Q121.223 1907.66 121.223 1914.79 Q121.223 1921.9 123.029 1925.46 Q124.858 1929 128.469 1929 Q132.103 1929 133.908 1925.46 Q135.737 1921.9 135.737 1914.79 Q135.737 1907.66 133.908 1904.12 Q132.103 1900.55 128.469 1900.55 M128.469 1896.85 Q134.279 1896.85 137.334 1901.46 Q140.413 1906.04 140.413 1914.79 Q140.413 1923.52 137.334 1928.12 Q134.279 1932.71 128.469 1932.71 Q122.658 1932.71 119.58 1928.12 Q116.524 1923.52 116.524 1914.79 Q116.524 1906.04 119.58 1901.46 Q122.658 1896.85 128.469 1896.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.631 1926.16 L153.515 1926.16 L153.515 1932.04 L148.631 1932.04 L148.631 1926.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M174.279 1912.89 Q171.13 1912.89 169.279 1915.04 Q167.45 1917.2 167.45 1920.95 Q167.45 1924.67 169.279 1926.85 Q171.13 1929 174.279 1929 Q177.427 1929 179.255 1926.85 Q181.107 1924.67 181.107 1920.95 Q181.107 1917.2 179.255 1915.04 Q177.427 1912.89 174.279 1912.89 M183.561 1898.24 L183.561 1902.5 Q181.802 1901.67 179.996 1901.23 Q178.214 1900.79 176.454 1900.79 Q171.825 1900.79 169.371 1903.91 Q166.941 1907.04 166.593 1913.35 Q167.959 1911.34 170.019 1910.28 Q172.079 1909.19 174.556 1909.19 Q179.765 1909.19 182.774 1912.36 Q185.806 1915.51 185.806 1920.95 Q185.806 1926.27 182.658 1929.49 Q179.51 1932.71 174.279 1932.71 Q168.283 1932.71 165.112 1928.12 Q161.941 1923.52 161.941 1914.79 Q161.941 1906.6 165.83 1901.73 Q169.718 1896.85 176.269 1896.85 Q178.029 1896.85 179.811 1897.2 Q181.616 1897.54 183.561 1898.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M128.723 1803.83 Q125.112 1803.83 123.283 1807.4 Q121.478 1810.94 121.478 1818.07 Q121.478 1825.17 123.283 1828.74 Q125.112 1832.28 128.723 1832.28 Q132.357 1832.28 134.163 1828.74 Q135.992 1825.17 135.992 1818.07 Q135.992 1810.94 134.163 1807.4 Q132.357 1803.83 128.723 1803.83 M128.723 1800.13 Q134.533 1800.13 137.589 1804.74 Q140.668 1809.32 140.668 1818.07 Q140.668 1826.8 137.589 1831.4 Q134.533 1835.98 128.723 1835.98 Q122.913 1835.98 119.834 1831.4 Q116.779 1826.8 116.779 1818.07 Q116.779 1809.32 119.834 1804.74 Q122.913 1800.13 128.723 1800.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.885 1829.43 L153.769 1829.43 L153.769 1835.31 L148.885 1835.31 L148.885 1829.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.954 1818.9 Q170.621 1818.9 168.7 1820.68 Q166.802 1822.47 166.802 1825.59 Q166.802 1828.72 168.7 1830.5 Q170.621 1832.28 173.954 1832.28 Q177.288 1832.28 179.209 1830.5 Q181.13 1828.69 181.13 1825.59 Q181.13 1822.47 179.209 1820.68 Q177.311 1818.9 173.954 1818.9 M169.279 1816.91 Q166.269 1816.17 164.58 1814.11 Q162.913 1812.05 162.913 1809.09 Q162.913 1804.94 165.853 1802.54 Q168.816 1800.13 173.954 1800.13 Q179.116 1800.13 182.056 1802.54 Q184.996 1804.94 184.996 1809.09 Q184.996 1812.05 183.306 1814.11 Q181.64 1816.17 178.654 1816.91 Q182.033 1817.7 183.908 1819.99 Q185.806 1822.28 185.806 1825.59 Q185.806 1830.61 182.728 1833.3 Q179.672 1835.98 173.954 1835.98 Q168.237 1835.98 165.158 1833.3 Q162.103 1830.61 162.103 1825.59 Q162.103 1822.28 164.001 1819.99 Q165.899 1817.7 169.279 1816.91 M167.566 1809.53 Q167.566 1812.21 169.232 1813.72 Q170.922 1815.22 173.954 1815.22 Q176.964 1815.22 178.654 1813.72 Q180.366 1812.21 180.366 1809.53 Q180.366 1806.84 178.654 1805.34 Q176.964 1803.83 173.954 1803.83 Q170.922 1803.83 169.232 1805.34 Q167.566 1806.84 167.566 1809.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M119.441 1734.66 L127.08 1734.66 L127.08 1708.29 L118.77 1709.96 L118.77 1705.7 L127.033 1704.03 L131.709 1704.03 L131.709 1734.66 L139.348 1734.66 L139.348 1738.59 L119.441 1738.59 L119.441 1734.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M148.793 1732.71 L153.677 1732.71 L153.677 1738.59 L148.793 1738.59 L148.793 1732.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M173.862 1707.11 Q170.251 1707.11 168.422 1710.68 Q166.617 1714.22 166.617 1721.35 Q166.617 1728.45 168.422 1732.02 Q170.251 1735.56 173.862 1735.56 Q177.496 1735.56 179.302 1732.02 Q181.13 1728.45 181.13 1721.35 Q181.13 1714.22 179.302 1710.68 Q177.496 1707.11 173.862 1707.11 M173.862 1703.41 Q179.672 1703.41 182.728 1708.01 Q185.806 1712.6 185.806 1721.35 Q185.806 1730.07 182.728 1734.68 Q179.672 1739.26 173.862 1739.26 Q168.052 1739.26 164.973 1734.68 Q161.918 1730.07 161.918 1721.35 Q161.918 1712.6 164.973 1708.01 Q168.052 1703.41 173.862 1703.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M14.0468 2019.57 Q15.8182 2019.57 16.9132 2020.7 Q18.0082 2021.79 18.0082 2023.18 Q18.0082 2024.18 17.3962 2024.92 Q16.7843 2025.63 15.7215 2025.63 Q14.6265 2025.63 13.4671 2024.79 Q12.3077 2023.95 12.1467 2022.05 Q10.9551 2023.31 10.9551 2025.3 Q10.9551 2026.3 11.5992 2027.14 Q12.2111 2027.95 13.2095 2028.4 Q14.2401 2028.88 20.0693 2029.97 Q21.9695 2030.33 23.8052 2030.65 Q25.6409 2030.97 27.5733 2031.36 L27.5733 2025.88 Q27.5733 2025.18 27.6055 2024.89 Q27.6377 2024.6 27.7987 2024.37 Q27.9598 2024.11 28.314 2024.11 Q29.2158 2024.11 29.4412 2024.53 Q29.6345 2024.92 29.6345 2026.08 L29.6345 2031.75 L50.5361 2035.71 Q51.148 2035.8 53.0803 2036.22 Q54.9805 2036.61 58.1045 2037.54 Q61.2606 2038.48 63.1286 2039.41 Q64.1914 2039.93 65.1897 2040.6 Q66.2203 2041.25 67.2509 2042.18 Q68.2815 2043.11 68.8934 2044.34 Q69.5375 2045.56 69.5375 2046.85 Q69.5375 2049.04 68.3137 2050.75 Q67.0899 2052.45 64.9965 2052.45 Q63.2252 2052.45 62.1302 2051.36 Q61.0352 2050.23 61.0352 2048.85 Q61.0352 2047.85 61.6471 2047.14 Q62.259 2046.4 63.3218 2046.4 Q63.7727 2046.4 64.288 2046.56 Q64.8033 2046.72 65.383 2047.08 Q65.9949 2047.43 66.4136 2048.2 Q66.8322 2048.98 66.8967 2050.04 Q68.0883 2048.78 68.0883 2046.85 Q68.0883 2046.24 67.8306 2045.69 Q67.6052 2045.14 67.0255 2044.69 Q66.4458 2044.21 65.8661 2043.86 Q65.3186 2043.5 64.2558 2043.15 Q63.2252 2042.79 62.4522 2042.57 Q61.6793 2042.34 60.2945 2042.05 Q58.9096 2041.73 58.0722 2041.57 Q57.2671 2041.41 55.689 2041.12 L29.6345 2036.19 L29.6345 2040.54 Q29.6345 2041.31 29.6023 2041.63 Q29.5701 2041.92 29.409 2042.15 Q29.2158 2042.37 28.8293 2042.37 Q28.2174 2042.37 27.9598 2042.12 Q27.6699 2041.83 27.6377 2041.5 Q27.5733 2041.18 27.5733 2040.41 L27.5733 2035.84 Q19.4252 2034.29 17.2352 2033.68 Q14.9164 2032.97 13.3061 2031.87 Q11.6636 2030.78 10.8907 2029.56 Q10.1177 2028.33 9.82787 2027.33 Q9.50581 2026.3 9.50581 2025.3 Q9.50581 2023.05 10.7296 2021.31 Q11.9212 2019.57 14.0468 2019.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M39.5217 2010.7 Q28.3784 2010.7 19.393 2006.55 Q15.6249 2004.77 12.4687 2002.29 Q9.31258 1999.81 7.92772 1998.17 Q6.54287 1996.53 6.54287 1996.08 Q6.54287 1995.43 7.18699 1995.4 Q7.50905 1995.4 8.31419 1996.27 Q19.1354 2006.9 39.5217 2006.87 Q59.9724 2006.87 70.3749 1996.53 Q71.5021 1995.4 71.8564 1995.4 Q72.5005 1995.4 72.5005 1996.08 Q72.5005 1996.53 71.18 1998.11 Q69.8596 1999.69 66.8322 2002.13 Q63.8049 2004.58 60.1012 2006.35 Q51.1158 2010.7 39.5217 2010.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M31.2126 1957.54 Q33.0161 1957.54 34.0467 1958.67 Q35.0451 1959.8 35.0451 1961.09 Q35.0451 1962.31 34.3365 1962.96 Q33.628 1963.6 32.7262 1963.6 Q31.5024 1963.6 30.4396 1962.7 Q29.3768 1961.8 29.1514 1960.44 Q28.314 1961.76 28.314 1963.73 Q28.314 1965.02 28.9904 1966.14 Q29.6667 1967.24 30.5362 1967.91 Q31.4058 1968.56 32.6618 1969.14 Q33.8856 1969.69 34.6264 1969.91 Q35.3349 1970.1 36.1079 1970.27 L45.1255 1972.52 Q49.4089 1973.62 50.9225 1973.62 Q52.7905 1973.62 54.0465 1972.71 Q55.2703 1971.81 55.2703 1970.01 Q55.2703 1969.3 55.0771 1968.49 Q54.8517 1967.69 54.272 1966.66 Q53.66 1965.6 52.7583 1964.66 Q51.8243 1963.7 50.2462 1962.76 Q48.6681 1961.83 46.6392 1961.22 Q45.9306 1961.02 45.9306 1960.38 Q45.9306 1959.57 46.5748 1959.57 Q47.1223 1959.57 48.2817 1960.02 Q49.4089 1960.44 50.8903 1961.38 Q52.3396 1962.28 53.66 1963.47 Q54.9483 1964.66 55.85 1966.43 Q56.7518 1968.2 56.7518 1970.14 Q56.7518 1972.91 55.2703 1974.74 Q53.7889 1976.58 51.7277 1977.25 Q52.0175 1977.42 52.404 1977.64 Q52.7905 1977.87 53.66 1978.54 Q54.4974 1979.19 55.1415 1979.93 Q55.7534 1980.67 56.2365 1981.83 Q56.7518 1982.95 56.7518 1984.18 Q56.7518 1985.72 56.3009 1987.11 Q55.85 1988.46 54.8195 1989.43 Q53.7889 1990.39 52.3718 1990.39 Q50.7937 1990.39 49.6987 1989.33 Q48.5715 1988.24 48.5715 1986.76 Q48.5715 1985.82 49.119 1985.08 Q49.6665 1984.31 50.8581 1984.31 Q52.1786 1984.31 53.177 1985.21 Q54.1753 1986.11 54.433 1987.4 Q55.2703 1986.08 55.2703 1984.11 Q55.2703 1981.99 53.4024 1980.31 Q51.5345 1978.64 48.4105 1977.83 Q40.9065 1975.84 37.5571 1975.06 Q34.1755 1974.29 32.7262 1974.29 Q31.3736 1974.29 30.4396 1974.65 Q29.5057 1975 29.087 1975.61 Q28.6361 1976.19 28.4751 1976.74 Q28.314 1977.25 28.314 1977.83 Q28.314 1978.8 28.7005 1979.9 Q29.087 1980.96 29.9887 1982.25 Q30.8583 1983.5 32.6618 1984.69 Q34.4654 1985.89 36.9452 1986.69 Q37.6859 1986.85 37.6859 1987.56 Q37.6537 1988.33 37.0096 1988.33 Q36.4621 1988.33 35.3349 1987.91 Q34.1755 1987.46 32.7262 1986.56 Q31.277 1985.63 29.9887 1984.44 Q28.6683 1983.21 27.7665 1981.44 Q26.8648 1979.64 26.8648 1977.71 Q26.8648 1976.84 27.058 1976 Q27.219 1975.13 27.7021 1974.1 Q28.1852 1973.04 29.248 1972.1 Q30.3108 1971.17 31.8567 1970.59 Q31.1159 1970.2 30.4074 1969.69 Q29.6989 1969.14 28.8293 1968.3 Q27.9276 1967.43 27.4123 1966.24 Q26.8648 1965.02 26.8648 1963.66 Q26.8648 1962.34 27.219 1961.05 Q27.5411 1959.77 28.6039 1958.67 Q29.6345 1957.54 31.2126 1957.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M54.9483 1952.12 Q53.8855 1953.05 52.5006 1953.05 Q51.1158 1953.05 50.0852 1952.15 Q49.0224 1951.21 49.0224 1949.54 Q49.0224 1947.58 50.9225 1946.45 Q52.7905 1945.32 55.9467 1945.32 Q59.3605 1945.32 62.5167 1946.71 Q65.705 1948.09 67.2187 1949.44 Q68.7324 1950.8 68.7324 1951.34 Q68.7324 1951.99 68.0239 1951.99 Q67.7662 1951.99 67.2831 1951.54 Q62.1946 1946.8 55.9467 1946.77 Q54.9483 1946.77 54.9483 1946.9 L55.0771 1947.06 Q56.0111 1948.19 56.0111 1949.54 Q56.0111 1951.18 54.9483 1952.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M28.314 1904.26 Q29.2158 1904.26 29.4412 1904.68 Q29.6345 1905.09 29.6345 1906.25 L29.6345 1912.44 L49.0868 1917.33 Q50.7937 1917.72 52.243 1917.72 Q53.8533 1917.72 54.5618 1917.24 Q55.2703 1916.72 55.2703 1915.66 Q55.2703 1913.56 53.3702 1911.31 Q51.47 1909.02 46.8324 1907.09 Q46.2205 1906.83 46.0917 1906.7 Q45.9306 1906.54 45.9306 1906.12 Q45.9306 1905.32 46.5748 1905.32 Q46.8002 1905.32 47.8308 1905.77 Q48.8614 1906.19 50.375 1907.12 Q51.8887 1908.02 53.3058 1909.22 Q54.7228 1910.38 55.7534 1912.15 Q56.7518 1913.92 56.7518 1915.82 Q56.7518 1918.49 55.0449 1920.2 Q53.338 1921.87 50.6649 1921.87 Q49.7953 1921.87 47.0256 1921.2 Q44.2237 1920.52 29.6345 1916.85 L29.6345 1922.68 Q29.6345 1923.48 29.6023 1923.81 Q29.5701 1924.1 29.409 1924.32 Q29.2158 1924.51 28.8293 1924.51 Q28.2174 1924.51 27.9598 1924.26 Q27.6699 1924 27.6377 1923.68 Q27.5733 1923.32 27.5733 1922.52 L27.5733 1916.33 L17.1064 1913.76 Q16.0758 1913.5 15.4961 1912.86 Q14.8842 1912.18 14.8198 1911.79 Q14.7232 1911.41 14.7232 1911.12 Q14.7232 1910.25 15.2062 1909.73 Q15.6571 1909.22 16.4945 1909.22 Q16.9454 1909.22 27.5733 1911.92 L27.5733 1906.12 Q27.5733 1905.38 27.6055 1905.09 Q27.6377 1904.77 27.7987 1904.51 Q27.9598 1904.26 28.314 1904.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M71.8564 1899.1 Q71.5343 1899.1 70.7292 1898.26 Q59.908 1887.63 39.5217 1887.63 Q19.071 1887.63 8.73287 1897.84 Q7.54125 1899.1 7.18699 1899.1 Q6.54287 1899.1 6.54287 1898.45 Q6.54287 1898 7.86331 1896.43 Q9.18375 1894.82 12.2111 1892.4 Q15.2385 1889.95 18.9421 1888.15 Q27.9276 1883.8 39.5217 1883.8 Q50.6649 1883.8 59.6503 1887.96 Q63.4184 1889.73 66.5746 1892.21 Q69.7308 1894.69 71.1156 1896.33 Q72.5005 1897.97 72.5005 1898.45 Q72.5005 1899.1 71.8564 1899.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M524.71 1639.39 Q524.71 1640.37 524.253 1640.62 Q523.797 1640.83 522.532 1640.83 L515.786 1640.83 L510.446 1662.05 Q510.024 1663.91 510.024 1665.49 Q510.024 1667.25 510.551 1668.02 Q511.113 1668.8 512.273 1668.8 Q514.557 1668.8 517.016 1666.72 Q519.51 1664.65 521.618 1659.59 Q521.899 1658.92 522.04 1658.78 Q522.216 1658.61 522.672 1658.61 Q523.551 1658.61 523.551 1659.31 Q523.551 1659.56 523.059 1660.68 Q522.602 1661.8 521.583 1663.46 Q520.6 1665.11 519.3 1666.65 Q518.035 1668.2 516.102 1669.32 Q514.17 1670.41 512.097 1670.41 Q509.181 1670.41 507.319 1668.55 Q505.492 1666.69 505.492 1663.77 Q505.492 1662.82 506.23 1659.8 Q506.968 1656.74 510.973 1640.83 L504.614 1640.83 Q503.735 1640.83 503.384 1640.79 Q503.068 1640.76 502.822 1640.58 Q502.611 1640.37 502.611 1639.95 Q502.611 1639.28 502.892 1639 Q503.173 1638.69 503.525 1638.65 Q503.911 1638.58 504.789 1638.58 L511.535 1638.58 L514.346 1627.16 Q514.627 1626.04 515.329 1625.41 Q516.067 1624.74 516.489 1624.67 Q516.91 1624.56 517.227 1624.56 Q518.175 1624.56 518.737 1625.09 Q519.3 1625.58 519.3 1626.49 Q519.3 1626.99 516.348 1638.58 L522.672 1638.58 Q523.48 1638.58 523.797 1638.62 Q524.148 1638.65 524.429 1638.83 Q524.71 1639 524.71 1639.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M548.28 1658.68 Q548.35 1657.8 549.72 1657.8 L593.813 1657.8 Q595.886 1657.8 595.921 1658.61 Q595.921 1659.49 593.954 1659.45 L550.212 1659.45 Q548.28 1659.49 548.28 1658.68 M548.28 1644.62 Q548.28 1643.75 549.791 1643.78 L593.743 1643.78 Q595.886 1643.78 595.921 1644.62 Q595.921 1645.43 594.094 1645.43 L549.72 1645.43 Q548.28 1645.43 548.28 1644.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M623.659 1646.59 Q623.659 1636.02 626.329 1630.25 Q630.054 1621.68 638.837 1621.68 Q640.699 1621.68 642.631 1622.21 Q644.599 1622.7 647.058 1624.63 Q649.553 1626.57 651.063 1629.73 Q653.944 1635.84 653.944 1646.59 Q653.944 1657.1 651.274 1662.82 Q647.374 1671.18 638.767 1671.18 Q635.534 1671.18 632.232 1669.53 Q628.964 1667.88 626.892 1663.91 Q623.659 1657.97 623.659 1646.59 M629.632 1645.71 Q629.632 1656.57 630.405 1660.89 Q631.283 1665.56 633.672 1667.6 Q636.097 1669.6 638.767 1669.6 Q641.648 1669.6 644.037 1667.46 Q646.461 1665.28 647.199 1660.61 Q648.007 1656.01 647.972 1645.71 Q647.972 1635.7 647.269 1631.69 Q646.32 1627.02 643.791 1625.16 Q641.296 1623.26 638.767 1623.26 Q637.818 1623.26 636.799 1623.54 Q635.815 1623.82 634.375 1624.63 Q632.934 1625.44 631.81 1627.44 Q630.721 1629.45 630.194 1632.47 Q629.632 1636.37 629.632 1645.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M660.373 1668.44 Q659.284 1667.29 659.284 1665.77 Q659.284 1664.26 660.373 1663.17 Q661.462 1662.05 663.114 1662.05 Q664.695 1662.05 665.749 1663.1 Q666.838 1664.12 666.838 1665.81 Q666.838 1667.46 665.679 1668.55 Q664.554 1669.6 663.114 1669.6 Q661.462 1669.6 660.373 1668.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M679.08 1659.91 Q679.08 1657.76 680.309 1656.74 Q681.539 1655.73 683.12 1655.73 Q684.771 1655.73 685.931 1656.82 Q687.125 1657.87 687.125 1659.73 Q687.125 1661.73 685.72 1662.86 Q684.35 1663.98 682.382 1663.7 Q684.104 1666.58 687.266 1667.88 Q690.463 1669.18 693.414 1669.18 Q696.506 1669.18 699.001 1666.51 Q701.53 1663.84 701.53 1657.31 Q701.53 1651.76 699.352 1648.56 Q697.209 1645.36 692.958 1645.36 L689.796 1645.36 Q688.706 1645.36 688.39 1645.26 Q688.074 1645.15 688.074 1644.55 Q688.074 1643.85 689.163 1643.71 Q690.252 1643.71 691.974 1643.5 Q696.155 1643.36 698.368 1639.74 Q700.371 1636.37 700.371 1631.55 Q700.371 1627.16 698.263 1625.34 Q696.19 1623.47 693.485 1623.47 Q690.955 1623.47 688.179 1624.53 Q685.404 1625.58 683.893 1627.94 Q688.355 1627.94 688.355 1631.55 Q688.355 1633.14 687.336 1634.19 Q686.352 1635.21 684.701 1635.21 Q683.12 1635.21 682.066 1634.22 Q681.012 1633.21 681.012 1631.48 Q681.012 1627.37 684.666 1624.53 Q688.355 1621.68 693.766 1621.68 Q699.106 1621.68 703.041 1624.49 Q707.011 1627.3 707.011 1631.62 Q707.011 1635.88 704.2 1639.35 Q701.39 1642.83 696.928 1644.27 Q702.408 1645.36 705.676 1649.09 Q708.943 1652.77 708.943 1657.31 Q708.943 1662.93 704.517 1667.07 Q700.09 1671.18 693.625 1671.18 Q687.652 1671.18 683.366 1667.95 Q679.08 1664.72 679.08 1659.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M714.993 1658.01 Q714.993 1655.87 716.152 1655.06 Q717.312 1654.22 718.541 1654.22 Q720.193 1654.22 721.141 1655.27 Q722.125 1656.29 722.125 1657.73 Q722.125 1659.17 721.141 1660.22 Q720.193 1661.24 718.541 1661.24 Q717.733 1661.24 717.312 1661.1 Q718.26 1664.4 721.141 1666.79 Q724.057 1669.18 727.887 1669.18 Q732.7 1669.18 735.581 1664.51 Q737.303 1661.49 737.303 1654.64 Q737.303 1648.59 736.003 1645.57 Q734 1640.97 729.889 1640.97 Q724.057 1640.97 720.614 1645.99 Q720.193 1646.63 719.701 1646.66 Q718.998 1646.66 718.822 1646.28 Q718.682 1645.85 718.682 1644.76 L718.682 1623.47 Q718.682 1621.75 719.384 1621.75 Q719.666 1621.75 720.263 1621.96 Q724.795 1623.97 729.819 1624 Q734.984 1624 739.621 1621.89 Q739.973 1621.68 740.184 1621.68 Q740.886 1621.68 740.921 1622.49 Q740.921 1622.77 740.324 1623.61 Q739.762 1624.42 738.532 1625.51 Q737.303 1626.57 735.722 1627.58 Q734.141 1628.6 731.822 1629.31 Q729.538 1629.97 727.008 1629.97 Q723.987 1629.97 720.895 1629.02 L720.895 1643.04 Q724.619 1639.39 730.03 1639.39 Q735.792 1639.39 739.762 1644.03 Q743.732 1648.66 743.732 1655.13 Q743.732 1661.91 739.024 1666.55 Q734.351 1671.18 728.027 1671.18 Q722.265 1671.18 718.612 1667.07 Q714.993 1662.96 714.993 1658.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip418)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 256.041,2191.68 257.894,2191.29 259.746,2190.9 261.599,2190.5 263.452,2190.09 265.305,2189.67 267.158,2189.24 269.011,2188.8 270.864,2188.35 272.717,2187.89 \n",
" 274.569,2187.42 276.422,2186.94 278.275,2186.45 280.128,2185.95 281.981,2185.44 283.834,2184.91 285.687,2184.38 287.539,2183.83 289.392,2183.28 291.245,2182.71 \n",
" 293.098,2182.13 294.951,2181.54 296.804,2180.93 298.657,2180.32 300.51,2179.69 302.362,2179.05 304.215,2178.39 306.068,2177.73 307.921,2177.05 309.774,2176.36 \n",
" 311.627,2175.65 313.48,2174.94 315.332,2174.21 317.185,2173.46 319.038,2172.71 320.891,2171.94 322.744,2171.15 324.597,2170.35 326.45,2169.54 328.303,2168.72 \n",
" 330.155,2167.88 332.008,2167.02 333.861,2166.15 335.714,2165.27 337.567,2164.38 339.42,2163.47 341.273,2162.54 343.126,2161.6 344.978,2160.65 346.831,2159.68 \n",
" 348.684,2158.69 350.537,2157.7 352.39,2156.68 354.243,2155.66 356.096,2154.61 357.948,2153.56 359.801,2152.49 361.654,2151.4 363.507,2150.3 365.36,2149.19 \n",
" 367.213,2148.06 369.066,2146.91 370.919,2145.75 372.771,2144.58 374.624,2143.39 376.477,2142.19 378.33,2140.97 380.183,2139.74 382.036,2138.49 383.889,2137.23 \n",
" 385.741,2135.96 387.594,2134.67 389.447,2133.37 391.3,2132.06 393.153,2130.73 395.006,2129.38 396.859,2128.03 398.712,2126.66 400.564,2125.28 402.417,2123.88 \n",
" 404.27,2122.48 406.123,2121.06 407.976,2119.63 409.829,2118.18 411.682,2116.73 413.535,2115.26 415.387,2113.78 417.24,2112.29 419.093,2110.79 420.946,2109.28 \n",
" 422.799,2107.76 424.652,2106.23 426.505,2104.68 428.357,2103.13 430.21,2101.57 432.063,2100 433.916,2098.42 435.769,2096.84 437.622,2095.24 439.475,2093.64 \n",
" 441.328,2092.03 443.18,2090.42 445.033,2088.79 446.886,2087.17 448.739,2085.53 450.592,2083.89 452.445,2082.25 454.298,2080.6 456.151,2078.94 458.003,2077.29 \n",
" 459.856,2075.62 461.709,2073.96 463.562,2072.29 465.415,2070.63 467.268,2068.96 469.121,2067.29 470.973,2065.61 472.826,2063.94 474.679,2062.27 476.532,2060.6 \n",
" 478.385,2058.93 480.238,2057.26 482.091,2055.6 483.944,2053.94 485.796,2052.28 487.649,2050.62 489.502,2048.97 491.355,2047.32 493.208,2045.68 495.061,2044.05 \n",
" 496.914,2042.42 498.766,2040.8 500.619,2039.19 502.472,2037.58 504.325,2035.98 506.178,2034.39 508.031,2032.82 509.884,2031.25 511.737,2029.69 513.589,2028.14 \n",
" 515.442,2026.61 517.295,2025.09 519.148,2023.58 521.001,2022.08 522.854,2020.6 524.707,2019.13 526.56,2017.68 528.412,2016.24 530.265,2014.82 532.118,2013.42 \n",
" 533.971,2012.03 535.824,2010.66 537.677,2009.31 539.53,2007.98 541.382,2006.67 543.235,2005.38 545.088,2004.1 546.941,2002.85 548.794,2001.62 550.647,2000.41 \n",
" 552.5,1999.23 554.353,1998.06 556.205,1996.92 558.058,1995.8 559.911,1994.71 561.764,1993.64 563.617,1992.6 565.47,1991.58 567.323,1990.59 569.175,1989.62 \n",
" 571.028,1988.68 572.881,1987.77 574.734,1986.88 576.587,1986.02 578.44,1985.19 580.293,1984.39 582.146,1983.62 583.998,1982.87 585.851,1982.16 587.704,1981.47 \n",
" 589.557,1980.82 591.41,1980.19 593.263,1979.6 595.116,1979.03 596.969,1978.5 598.821,1978 600.674,1977.53 602.527,1977.09 604.38,1976.68 606.233,1976.31 \n",
" 608.086,1975.96 609.939,1975.65 611.791,1975.37 613.644,1975.13 615.497,1974.91 617.35,1974.73 619.203,1974.59 621.056,1974.47 622.909,1974.39 624.762,1974.34 \n",
" 626.614,1974.32 628.467,1974.34 630.32,1974.39 632.173,1974.47 634.026,1974.59 635.879,1974.73 637.732,1974.91 639.584,1975.13 641.437,1975.37 643.29,1975.65 \n",
" 645.143,1975.96 646.996,1976.31 648.849,1976.68 650.702,1977.09 652.555,1977.53 654.407,1978 656.26,1978.5 658.113,1979.03 659.966,1979.6 661.819,1980.19 \n",
" 663.672,1980.82 665.525,1981.47 667.378,1982.16 669.23,1982.87 671.083,1983.62 672.936,1984.39 674.789,1985.19 676.642,1986.02 678.495,1986.88 680.348,1987.77 \n",
" 682.2,1988.68 684.053,1989.62 685.906,1990.59 687.759,1991.58 689.612,1992.6 691.465,1993.64 693.318,1994.71 695.171,1995.8 697.023,1996.92 698.876,1998.06 \n",
" 700.729,1999.23 702.582,2000.41 704.435,2001.62 706.288,2002.85 708.141,2004.1 709.994,2005.38 711.846,2006.67 713.699,2007.98 715.552,2009.31 717.405,2010.66 \n",
" 719.258,2012.03 721.111,2013.42 722.964,2014.82 724.816,2016.24 726.669,2017.68 728.522,2019.13 730.375,2020.6 732.228,2022.08 734.081,2023.58 735.934,2025.09 \n",
" 737.787,2026.61 739.639,2028.14 741.492,2029.69 743.345,2031.25 745.198,2032.82 747.051,2034.39 748.904,2035.98 750.757,2037.58 752.609,2039.19 754.462,2040.8 \n",
" 756.315,2042.42 758.168,2044.05 760.021,2045.68 761.874,2047.32 763.727,2048.97 765.58,2050.62 767.432,2052.28 769.285,2053.94 771.138,2055.6 772.991,2057.26 \n",
" 774.844,2058.93 776.697,2060.6 778.55,2062.27 780.403,2063.94 782.255,2065.61 784.108,2067.29 785.961,2068.96 787.814,2070.63 789.667,2072.29 791.52,2073.96 \n",
" 793.373,2075.62 795.225,2077.29 797.078,2078.94 798.931,2080.6 800.784,2082.25 802.637,2083.89 804.49,2085.53 806.343,2087.17 808.196,2088.79 810.048,2090.42 \n",
" 811.901,2092.03 813.754,2093.64 815.607,2095.24 817.46,2096.84 819.313,2098.42 821.166,2100 823.018,2101.57 824.871,2103.13 826.724,2104.68 828.577,2106.23 \n",
" 830.43,2107.76 832.283,2109.28 834.136,2110.79 835.989,2112.29 837.841,2113.78 839.694,2115.26 841.547,2116.73 843.4,2118.18 845.253,2119.63 847.106,2121.06 \n",
" 848.959,2122.48 850.812,2123.88 852.664,2125.28 854.517,2126.66 856.37,2128.03 858.223,2129.38 860.076,2130.73 861.929,2132.06 863.782,2133.37 865.634,2134.67 \n",
" 867.487,2135.96 869.34,2137.23 871.193,2138.49 873.046,2139.74 874.899,2140.97 876.752,2142.19 878.605,2143.39 880.457,2144.58 882.31,2145.75 884.163,2146.91 \n",
" 886.016,2148.06 887.869,2149.19 889.722,2150.3 891.575,2151.4 893.428,2152.49 895.28,2153.56 897.133,2154.61 898.986,2155.66 900.839,2156.68 902.692,2157.7 \n",
" 904.545,2158.69 906.398,2159.68 908.25,2160.65 910.103,2161.6 911.956,2162.54 913.809,2163.47 915.662,2164.38 917.515,2165.27 919.368,2166.15 921.221,2167.02 \n",
" 923.073,2167.88 924.926,2168.72 926.779,2169.54 928.632,2170.35 930.485,2171.15 932.338,2171.94 934.191,2172.71 936.043,2173.46 937.896,2174.21 939.749,2174.94 \n",
" 941.602,2175.65 943.455,2176.36 945.308,2177.05 947.161,2177.73 949.014,2178.39 950.866,2179.05 952.719,2179.69 954.572,2180.32 956.425,2180.93 958.278,2181.54 \n",
" 960.131,2182.13 961.984,2182.71 963.837,2183.28 965.689,2183.83 967.542,2184.38 969.395,2184.91 971.248,2185.44 973.101,2185.95 974.954,2186.45 976.807,2186.94 \n",
" 978.659,2187.42 980.512,2187.89 982.365,2188.35 984.218,2188.8 986.071,2189.24 987.924,2189.67 989.777,2190.09 991.63,2190.5 993.482,2190.9 995.335,2191.29 \n",
" 997.188,2191.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M1300.47 2204.92 L2086.09 2204.92 L2086.09 1721.31 L1300.47 1721.31 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip419\">\n",
" <rect x=\"1300\" y=\"1721\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1322.71,2204.92 1322.71,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1507.99,2204.92 1507.99,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1693.28,2204.92 1693.28,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1878.57,2204.92 1878.57,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2063.85,2204.92 2063.85,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,2204.92 2086.09,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,2204.92 1322.71,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1507.99,2204.92 1507.99,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1693.28,2204.92 1693.28,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1878.57,2204.92 1878.57,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2063.85,2204.92 2063.85,2186.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1292.65 2256.89 L1322.33 2256.89 L1322.33 2260.83 L1292.65 2260.83 L1292.65 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1336.45 2269.78 L1352.77 2269.78 L1352.77 2273.72 L1330.82 2273.72 L1330.82 2269.78 Q1333.48 2267.03 1338.07 2262.4 Q1342.67 2257.75 1343.85 2256.41 Q1346.1 2253.88 1346.98 2252.15 Q1347.88 2250.39 1347.88 2248.7 Q1347.88 2245.94 1345.94 2244.21 Q1344.02 2242.47 1340.91 2242.47 Q1338.71 2242.47 1336.26 2243.23 Q1333.83 2244 1331.05 2245.55 L1331.05 2240.83 Q1333.88 2239.69 1336.33 2239.11 Q1338.78 2238.53 1340.82 2238.53 Q1346.19 2238.53 1349.39 2241.22 Q1352.58 2243.91 1352.58 2248.4 Q1352.58 2250.53 1351.77 2252.45 Q1350.98 2254.34 1348.88 2256.94 Q1348.3 2257.61 1345.2 2260.83 Q1342.09 2264.02 1336.45 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1477.75 2256.89 L1507.43 2256.89 L1507.43 2260.83 L1477.75 2260.83 L1477.75 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1518.33 2269.78 L1525.97 2269.78 L1525.97 2243.42 L1517.66 2245.09 L1517.66 2240.83 L1525.92 2239.16 L1530.6 2239.16 L1530.6 2269.78 L1538.24 2269.78 L1538.24 2273.72 L1518.33 2273.72 L1518.33 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1693.28 2242.24 Q1689.67 2242.24 1687.84 2245.8 Q1686.04 2249.34 1686.04 2256.47 Q1686.04 2263.58 1687.84 2267.15 Q1689.67 2270.69 1693.28 2270.69 Q1696.92 2270.69 1698.72 2267.15 Q1700.55 2263.58 1700.55 2256.47 Q1700.55 2249.34 1698.72 2245.8 Q1696.92 2242.24 1693.28 2242.24 M1693.28 2238.53 Q1699.09 2238.53 1702.15 2243.14 Q1705.23 2247.72 1705.23 2256.47 Q1705.23 2265.2 1702.15 2269.81 Q1699.09 2274.39 1693.28 2274.39 Q1687.47 2274.39 1684.39 2269.81 Q1681.34 2265.2 1681.34 2256.47 Q1681.34 2247.72 1684.39 2243.14 Q1687.47 2238.53 1693.28 2238.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1868.95 2269.78 L1876.59 2269.78 L1876.59 2243.42 L1868.28 2245.09 L1868.28 2240.83 L1876.54 2239.16 L1881.22 2239.16 L1881.22 2269.78 L1888.86 2269.78 L1888.86 2273.72 L1868.95 2273.72 L1868.95 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2058.51 2269.78 L2074.83 2269.78 L2074.83 2273.72 L2052.88 2273.72 L2052.88 2269.78 Q2055.54 2267.03 2060.13 2262.4 Q2064.73 2257.75 2065.91 2256.41 Q2068.16 2253.88 2069.04 2252.15 Q2069.94 2250.39 2069.94 2248.7 Q2069.94 2245.94 2068 2244.21 Q2066.08 2242.47 2062.98 2242.47 Q2060.78 2242.47 2058.32 2243.23 Q2055.89 2244 2053.11 2245.55 L2053.11 2240.83 Q2055.94 2239.69 2058.39 2239.11 Q2060.85 2238.53 2062.88 2238.53 Q2068.25 2238.53 2071.45 2241.22 Q2074.64 2243.91 2074.64 2248.4 Q2074.64 2250.53 2073.83 2252.45 Q2073.04 2254.34 2070.94 2256.94 Q2070.36 2257.61 2067.26 2260.83 Q2064.16 2264.02 2058.51 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1707.46 2322.54 Q1707.46 2324.34 1706.33 2325.37 Q1705.2 2326.37 1703.92 2326.37 Q1702.69 2326.37 1702.05 2325.66 Q1701.4 2324.95 1701.4 2324.05 Q1701.4 2322.83 1702.31 2321.76 Q1703.21 2320.7 1704.56 2320.47 Q1703.24 2319.64 1701.28 2319.64 Q1699.99 2319.64 1698.86 2320.31 Q1697.77 2320.99 1697.09 2321.86 Q1696.44 2322.73 1695.86 2323.99 Q1695.32 2325.21 1695.09 2325.95 Q1694.9 2326.66 1694.74 2327.43 L1692.48 2336.45 Q1691.39 2340.73 1691.39 2342.25 Q1691.39 2344.11 1692.29 2345.37 Q1693.19 2346.59 1695 2346.59 Q1695.7 2346.59 1696.51 2346.4 Q1697.31 2346.17 1698.34 2345.6 Q1699.41 2344.98 1700.34 2344.08 Q1701.31 2343.15 1702.24 2341.57 Q1703.18 2339.99 1703.79 2337.96 Q1703.98 2337.25 1704.62 2337.25 Q1705.43 2337.25 1705.43 2337.9 Q1705.43 2338.45 1704.98 2339.6 Q1704.56 2340.73 1703.63 2342.21 Q1702.72 2343.66 1701.53 2344.98 Q1700.34 2346.27 1698.57 2347.17 Q1696.8 2348.08 1694.87 2348.08 Q1692.1 2348.08 1690.26 2346.59 Q1688.43 2345.11 1687.75 2343.05 Q1687.59 2343.34 1687.36 2343.73 Q1687.14 2344.11 1686.46 2344.98 Q1685.82 2345.82 1685.08 2346.46 Q1684.34 2347.08 1683.18 2347.56 Q1682.05 2348.08 1680.82 2348.08 Q1679.28 2348.08 1677.89 2347.62 Q1676.54 2347.17 1675.58 2346.14 Q1674.61 2345.11 1674.61 2343.7 Q1674.61 2342.12 1675.67 2341.02 Q1676.77 2339.89 1678.25 2339.89 Q1679.18 2339.89 1679.92 2340.44 Q1680.7 2340.99 1680.7 2342.18 Q1680.7 2343.5 1679.79 2344.5 Q1678.89 2345.5 1677.6 2345.76 Q1678.92 2346.59 1680.89 2346.59 Q1683.01 2346.59 1684.69 2344.73 Q1686.36 2342.86 1687.17 2339.73 Q1689.17 2332.23 1689.94 2328.88 Q1690.71 2325.5 1690.71 2324.05 Q1690.71 2322.7 1690.36 2321.76 Q1690 2320.83 1689.39 2320.41 Q1688.81 2319.96 1688.26 2319.8 Q1687.75 2319.64 1687.17 2319.64 Q1686.2 2319.64 1685.11 2320.02 Q1684.05 2320.41 1682.76 2321.31 Q1681.5 2322.18 1680.31 2323.99 Q1679.12 2325.79 1678.31 2328.27 Q1678.15 2329.01 1677.44 2329.01 Q1676.67 2328.98 1676.67 2328.33 Q1676.67 2327.79 1677.09 2326.66 Q1677.54 2325.5 1678.44 2324.05 Q1679.38 2322.6 1680.57 2321.31 Q1681.79 2319.99 1683.56 2319.09 Q1685.37 2318.19 1687.3 2318.19 Q1688.17 2318.19 1689.01 2318.38 Q1689.87 2318.54 1690.91 2319.03 Q1691.97 2319.51 1692.9 2320.57 Q1693.84 2321.63 1694.42 2323.18 Q1694.8 2322.44 1695.32 2321.73 Q1695.86 2321.02 1696.7 2320.15 Q1697.57 2319.25 1698.76 2318.74 Q1699.99 2318.19 1701.34 2318.19 Q1702.66 2318.19 1703.95 2318.54 Q1705.24 2318.86 1706.33 2319.93 Q1707.46 2320.96 1707.46 2322.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,2204.92 2086.09,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,2108.2 2086.09,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,2011.48 2086.09,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1914.76 2086.09,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1818.03 2086.09,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip419)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1300.47,1721.31 2086.09,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,2204.92 1300.47,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,2204.92 1319.37,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,2108.2 1319.37,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,2011.48 1319.37,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1914.76 1319.37,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1818.03 1319.37,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1300.47,1721.31 1319.37,1721.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M1195.3 2190.72 Q1191.69 2190.72 1189.86 2194.28 Q1188.05 2197.82 1188.05 2204.95 Q1188.05 2212.06 1189.86 2215.63 Q1191.69 2219.17 1195.3 2219.17 Q1198.93 2219.17 1200.74 2215.63 Q1202.57 2212.06 1202.57 2204.95 Q1202.57 2197.82 1200.74 2194.28 Q1198.93 2190.72 1195.3 2190.72 M1195.3 2187.01 Q1201.11 2187.01 1204.16 2191.62 Q1207.24 2196.2 1207.24 2204.95 Q1207.24 2213.68 1204.16 2218.29 Q1201.11 2222.87 1195.3 2222.87 Q1189.49 2222.87 1186.41 2218.29 Q1183.35 2213.68 1183.35 2204.95 Q1183.35 2196.2 1186.41 2191.62 Q1189.49 2187.01 1195.3 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 2216.32 L1220.34 2216.32 L1220.34 2222.2 L1215.46 2222.2 L1215.46 2216.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 2190.72 Q1236.92 2190.72 1235.09 2194.28 Q1233.28 2197.82 1233.28 2204.95 Q1233.28 2212.06 1235.09 2215.63 Q1236.92 2219.17 1240.53 2219.17 Q1244.16 2219.17 1245.97 2215.63 Q1247.8 2212.06 1247.8 2204.95 Q1247.8 2197.82 1245.97 2194.28 Q1244.16 2190.72 1240.53 2190.72 M1240.53 2187.01 Q1246.34 2187.01 1249.39 2191.62 Q1252.47 2196.2 1252.47 2204.95 Q1252.47 2213.68 1249.39 2218.29 Q1246.34 2222.87 1240.53 2222.87 Q1234.72 2222.87 1231.64 2218.29 Q1228.58 2213.68 1228.58 2204.95 Q1228.58 2196.2 1231.64 2191.62 Q1234.72 2187.01 1240.53 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1196.89 2094 Q1193.28 2094 1191.45 2097.56 Q1189.65 2101.1 1189.65 2108.23 Q1189.65 2115.34 1191.45 2118.9 Q1193.28 2122.45 1196.89 2122.45 Q1200.53 2122.45 1202.33 2118.9 Q1204.16 2115.34 1204.16 2108.23 Q1204.16 2101.1 1202.33 2097.56 Q1200.53 2094 1196.89 2094 M1196.89 2090.29 Q1202.7 2090.29 1205.76 2094.9 Q1208.84 2099.48 1208.84 2108.23 Q1208.84 2116.96 1205.76 2121.57 Q1202.7 2126.15 1196.89 2126.15 Q1191.08 2126.15 1188.01 2121.57 Q1184.95 2116.96 1184.95 2108.23 Q1184.95 2099.48 1188.01 2094.9 Q1191.08 2090.29 1196.89 2090.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1217.06 2119.6 L1221.94 2119.6 L1221.94 2125.48 L1217.06 2125.48 L1217.06 2119.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1236.15 2121.54 L1252.47 2121.54 L1252.47 2125.48 L1230.53 2125.48 L1230.53 2121.54 Q1233.19 2118.79 1237.77 2114.16 Q1242.38 2109.51 1243.56 2108.16 Q1245.81 2105.64 1246.69 2103.9 Q1247.59 2102.15 1247.59 2100.46 Q1247.59 2097.7 1245.64 2095.96 Q1243.72 2094.23 1240.62 2094.23 Q1238.42 2094.23 1235.97 2094.99 Q1233.54 2095.76 1230.76 2097.31 L1230.76 2092.58 Q1233.58 2091.45 1236.04 2090.87 Q1238.49 2090.29 1240.53 2090.29 Q1245.9 2090.29 1249.09 2092.98 Q1252.29 2095.66 1252.29 2100.15 Q1252.29 2102.28 1251.48 2104.21 Q1250.69 2106.1 1248.58 2108.7 Q1248.01 2109.37 1244.9 2112.58 Q1241.8 2115.78 1236.15 2121.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1194.81 1997.28 Q1191.2 1997.28 1189.37 2000.84 Q1187.57 2004.38 1187.57 2011.51 Q1187.57 2018.62 1189.37 2022.18 Q1191.2 2025.72 1194.81 2025.72 Q1198.45 2025.72 1200.25 2022.18 Q1202.08 2018.62 1202.08 2011.51 Q1202.08 2004.38 1200.25 2000.84 Q1198.45 1997.28 1194.81 1997.28 M1194.81 1993.57 Q1200.62 1993.57 1203.68 1998.18 Q1206.76 2002.76 1206.76 2011.51 Q1206.76 2020.24 1203.68 2024.84 Q1200.62 2029.43 1194.81 2029.43 Q1189 2029.43 1185.92 2024.84 Q1182.87 2020.24 1182.87 2011.51 Q1182.87 2002.76 1185.92 1998.18 Q1189 1993.57 1194.81 1993.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1214.97 2022.88 L1219.86 2022.88 L1219.86 2028.76 L1214.97 2028.76 L1214.97 2022.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1242.89 1998.27 L1231.08 2016.72 L1242.89 2016.72 L1242.89 1998.27 M1241.66 1994.2 L1247.54 1994.2 L1247.54 2016.72 L1252.47 2016.72 L1252.47 2020.61 L1247.54 2020.61 L1247.54 2028.76 L1242.89 2028.76 L1242.89 2020.61 L1227.29 2020.61 L1227.29 2016.09 L1241.66 1994.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.14 1900.55 Q1191.52 1900.55 1189.7 1904.12 Q1187.89 1907.66 1187.89 1914.79 Q1187.89 1921.9 1189.7 1925.46 Q1191.52 1929 1195.14 1929 Q1198.77 1929 1200.58 1925.46 Q1202.4 1921.9 1202.4 1914.79 Q1202.4 1907.66 1200.58 1904.12 Q1198.77 1900.55 1195.14 1900.55 M1195.14 1896.85 Q1200.95 1896.85 1204 1901.46 Q1207.08 1906.04 1207.08 1914.79 Q1207.08 1923.52 1204 1928.12 Q1200.95 1932.71 1195.14 1932.71 Q1189.33 1932.71 1186.25 1928.12 Q1183.19 1923.52 1183.19 1914.79 Q1183.19 1906.04 1186.25 1901.46 Q1189.33 1896.85 1195.14 1896.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.3 1926.16 L1220.18 1926.16 L1220.18 1932.04 L1215.3 1932.04 L1215.3 1926.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.95 1912.89 Q1237.8 1912.89 1235.95 1915.04 Q1234.12 1917.2 1234.12 1920.95 Q1234.12 1924.67 1235.95 1926.85 Q1237.8 1929 1240.95 1929 Q1244.09 1929 1245.92 1926.85 Q1247.77 1924.67 1247.77 1920.95 Q1247.77 1917.2 1245.92 1915.04 Q1244.09 1912.89 1240.95 1912.89 M1250.23 1898.24 L1250.23 1902.5 Q1248.47 1901.67 1246.66 1901.23 Q1244.88 1900.79 1243.12 1900.79 Q1238.49 1900.79 1236.04 1903.91 Q1233.61 1907.04 1233.26 1913.35 Q1234.63 1911.34 1236.69 1910.28 Q1238.75 1909.19 1241.22 1909.19 Q1246.43 1909.19 1249.44 1912.36 Q1252.47 1915.51 1252.47 1920.95 Q1252.47 1926.27 1249.32 1929.49 Q1246.18 1932.71 1240.95 1932.71 Q1234.95 1932.71 1231.78 1928.12 Q1228.61 1923.52 1228.61 1914.79 Q1228.61 1906.6 1232.5 1901.73 Q1236.39 1896.85 1242.94 1896.85 Q1244.7 1896.85 1246.48 1897.2 Q1248.28 1897.54 1250.23 1898.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1195.39 1803.83 Q1191.78 1803.83 1189.95 1807.4 Q1188.14 1810.94 1188.14 1818.07 Q1188.14 1825.17 1189.95 1828.74 Q1191.78 1832.28 1195.39 1832.28 Q1199.02 1832.28 1200.83 1828.74 Q1202.66 1825.17 1202.66 1818.07 Q1202.66 1810.94 1200.83 1807.4 Q1199.02 1803.83 1195.39 1803.83 M1195.39 1800.13 Q1201.2 1800.13 1204.26 1804.74 Q1207.33 1809.32 1207.33 1818.07 Q1207.33 1826.8 1204.26 1831.4 Q1201.2 1835.98 1195.39 1835.98 Q1189.58 1835.98 1186.5 1831.4 Q1183.45 1826.8 1183.45 1818.07 Q1183.45 1809.32 1186.5 1804.74 Q1189.58 1800.13 1195.39 1800.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.55 1829.43 L1220.44 1829.43 L1220.44 1835.31 L1215.55 1835.31 L1215.55 1829.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.62 1818.9 Q1237.29 1818.9 1235.37 1820.68 Q1233.47 1822.47 1233.47 1825.59 Q1233.47 1828.72 1235.37 1830.5 Q1237.29 1832.28 1240.62 1832.28 Q1243.95 1832.28 1245.88 1830.5 Q1247.8 1828.69 1247.8 1825.59 Q1247.8 1822.47 1245.88 1820.68 Q1243.98 1818.9 1240.62 1818.9 M1235.95 1816.91 Q1232.94 1816.17 1231.25 1814.11 Q1229.58 1812.05 1229.58 1809.09 Q1229.58 1804.94 1232.52 1802.54 Q1235.48 1800.13 1240.62 1800.13 Q1245.78 1800.13 1248.72 1802.54 Q1251.66 1804.94 1251.66 1809.09 Q1251.66 1812.05 1249.97 1814.11 Q1248.31 1816.17 1245.32 1816.91 Q1248.7 1817.7 1250.57 1819.99 Q1252.47 1822.28 1252.47 1825.59 Q1252.47 1830.61 1249.39 1833.3 Q1246.34 1835.98 1240.62 1835.98 Q1234.9 1835.98 1231.82 1833.3 Q1228.77 1830.61 1228.77 1825.59 Q1228.77 1822.28 1230.67 1819.99 Q1232.57 1817.7 1235.95 1816.91 M1234.23 1809.53 Q1234.23 1812.21 1235.9 1813.72 Q1237.59 1815.22 1240.62 1815.22 Q1243.63 1815.22 1245.32 1813.72 Q1247.03 1812.21 1247.03 1809.53 Q1247.03 1806.84 1245.32 1805.34 Q1243.63 1803.83 1240.62 1803.83 Q1237.59 1803.83 1235.9 1805.34 Q1234.23 1806.84 1234.23 1809.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1186.11 1734.66 L1193.75 1734.66 L1193.75 1708.29 L1185.44 1709.96 L1185.44 1705.7 L1193.7 1704.03 L1198.38 1704.03 L1198.38 1734.66 L1206.01 1734.66 L1206.01 1738.59 L1186.11 1738.59 L1186.11 1734.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1215.46 1732.71 L1220.34 1732.71 L1220.34 1738.59 L1215.46 1738.59 L1215.46 1732.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1240.53 1707.11 Q1236.92 1707.11 1235.09 1710.68 Q1233.28 1714.22 1233.28 1721.35 Q1233.28 1728.45 1235.09 1732.02 Q1236.92 1735.56 1240.53 1735.56 Q1244.16 1735.56 1245.97 1732.02 Q1247.8 1728.45 1247.8 1721.35 Q1247.8 1714.22 1245.97 1710.68 Q1244.16 1707.11 1240.53 1707.11 M1240.53 1703.41 Q1246.34 1703.41 1249.39 1708.01 Q1252.47 1712.6 1252.47 1721.35 Q1252.47 1730.07 1249.39 1734.68 Q1246.34 1739.26 1240.53 1739.26 Q1234.72 1739.26 1231.64 1734.68 Q1228.58 1730.07 1228.58 1721.35 Q1228.58 1712.6 1231.64 1708.01 Q1234.72 1703.41 1240.53 1703.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1080.71 2019.57 Q1082.48 2019.57 1083.58 2020.7 Q1084.67 2021.79 1084.67 2023.18 Q1084.67 2024.18 1084.06 2024.92 Q1083.45 2025.63 1082.39 2025.63 Q1081.29 2025.63 1080.13 2024.79 Q1078.97 2023.95 1078.81 2022.05 Q1077.62 2023.31 1077.62 2025.3 Q1077.62 2026.3 1078.27 2027.14 Q1078.88 2027.95 1079.88 2028.4 Q1080.91 2028.88 1086.74 2029.97 Q1088.64 2030.33 1090.47 2030.65 Q1092.31 2030.97 1094.24 2031.36 L1094.24 2025.88 Q1094.24 2025.18 1094.27 2024.89 Q1094.3 2024.6 1094.47 2024.37 Q1094.63 2024.11 1094.98 2024.11 Q1095.88 2024.11 1096.11 2024.53 Q1096.3 2024.92 1096.3 2026.08 L1096.3 2031.75 L1117.2 2035.71 Q1117.81 2035.8 1119.75 2036.22 Q1121.65 2036.61 1124.77 2037.54 Q1127.93 2038.48 1129.8 2039.41 Q1130.86 2039.93 1131.86 2040.6 Q1132.89 2041.25 1133.92 2042.18 Q1134.95 2043.11 1135.56 2044.34 Q1136.2 2045.56 1136.2 2046.85 Q1136.2 2049.04 1134.98 2050.75 Q1133.76 2052.45 1131.66 2052.45 Q1129.89 2052.45 1128.8 2051.36 Q1127.7 2050.23 1127.7 2048.85 Q1127.7 2047.85 1128.31 2047.14 Q1128.93 2046.4 1129.99 2046.4 Q1130.44 2046.4 1130.95 2046.56 Q1131.47 2046.72 1132.05 2047.08 Q1132.66 2047.43 1133.08 2048.2 Q1133.5 2048.98 1133.56 2050.04 Q1134.75 2048.78 1134.75 2046.85 Q1134.75 2046.24 1134.5 2045.69 Q1134.27 2045.14 1133.69 2044.69 Q1133.11 2044.21 1132.53 2043.86 Q1131.99 2043.5 1130.92 2043.15 Q1129.89 2042.79 1129.12 2042.57 Q1128.35 2042.34 1126.96 2042.05 Q1125.58 2041.73 1124.74 2041.57 Q1123.93 2041.41 1122.36 2041.12 L1096.3 2036.19 L1096.3 2040.54 Q1096.3 2041.31 1096.27 2041.63 Q1096.24 2041.92 1096.08 2042.15 Q1095.88 2042.37 1095.5 2042.37 Q1094.88 2042.37 1094.63 2042.12 Q1094.34 2041.83 1094.3 2041.5 Q1094.24 2041.18 1094.24 2040.41 L1094.24 2035.84 Q1086.09 2034.29 1083.9 2033.68 Q1081.58 2032.97 1079.97 2031.87 Q1078.33 2030.78 1077.56 2029.56 Q1076.78 2028.33 1076.49 2027.33 Q1076.17 2026.3 1076.17 2025.3 Q1076.17 2023.05 1077.4 2021.31 Q1078.59 2019.57 1080.71 2019.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1106.19 2010.7 Q1095.05 2010.7 1086.06 2006.55 Q1082.29 2004.77 1079.14 2002.29 Q1075.98 1999.81 1074.59 1998.17 Q1073.21 1996.53 1073.21 1996.08 Q1073.21 1995.43 1073.85 1995.4 Q1074.18 1995.4 1074.98 1996.27 Q1085.8 2006.9 1106.19 2006.87 Q1126.64 2006.87 1137.04 1996.53 Q1138.17 1995.4 1138.52 1995.4 Q1139.17 1995.4 1139.17 1996.08 Q1139.17 1996.53 1137.85 1998.11 Q1136.53 1999.69 1133.5 2002.13 Q1130.47 2004.58 1126.77 2006.35 Q1117.78 2010.7 1106.19 2010.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1097.88 1957.54 Q1099.68 1957.54 1100.71 1958.67 Q1101.71 1959.8 1101.71 1961.09 Q1101.71 1962.31 1101 1962.96 Q1100.29 1963.6 1099.39 1963.6 Q1098.17 1963.6 1097.11 1962.7 Q1096.04 1961.8 1095.82 1960.44 Q1094.98 1961.76 1094.98 1963.73 Q1094.98 1965.02 1095.66 1966.14 Q1096.33 1967.24 1097.2 1967.91 Q1098.07 1968.56 1099.33 1969.14 Q1100.55 1969.69 1101.29 1969.91 Q1102 1970.1 1102.77 1970.27 L1111.79 1972.52 Q1116.08 1973.62 1117.59 1973.62 Q1119.46 1973.62 1120.71 1972.71 Q1121.94 1971.81 1121.94 1970.01 Q1121.94 1969.3 1121.74 1968.49 Q1121.52 1967.69 1120.94 1966.66 Q1120.33 1965.6 1119.42 1964.66 Q1118.49 1963.7 1116.91 1962.76 Q1115.33 1961.83 1113.31 1961.22 Q1112.6 1961.02 1112.6 1960.38 Q1112.6 1959.57 1113.24 1959.57 Q1113.79 1959.57 1114.95 1960.02 Q1116.08 1960.44 1117.56 1961.38 Q1119.01 1962.28 1120.33 1963.47 Q1121.61 1964.66 1122.52 1966.43 Q1123.42 1968.2 1123.42 1970.14 Q1123.42 1972.91 1121.94 1974.74 Q1120.46 1976.58 1118.39 1977.25 Q1118.68 1977.42 1119.07 1977.64 Q1119.46 1977.87 1120.33 1978.54 Q1121.16 1979.19 1121.81 1979.93 Q1122.42 1980.67 1122.9 1981.83 Q1123.42 1982.95 1123.42 1984.18 Q1123.42 1985.72 1122.97 1987.11 Q1122.52 1988.46 1121.49 1989.43 Q1120.46 1990.39 1119.04 1990.39 Q1117.46 1990.39 1116.37 1989.33 Q1115.24 1988.24 1115.24 1986.76 Q1115.24 1985.82 1115.79 1985.08 Q1116.33 1984.31 1117.52 1984.31 Q1118.85 1984.31 1119.84 1985.21 Q1120.84 1986.11 1121.1 1987.4 Q1121.94 1986.08 1121.94 1984.11 Q1121.94 1981.99 1120.07 1980.31 Q1118.2 1978.64 1115.08 1977.83 Q1107.57 1975.84 1104.22 1975.06 Q1100.84 1974.29 1099.39 1974.29 Q1098.04 1974.29 1097.11 1974.65 Q1096.17 1975 1095.75 1975.61 Q1095.3 1976.19 1095.14 1976.74 Q1094.98 1977.25 1094.98 1977.83 Q1094.98 1978.8 1095.37 1979.9 Q1095.75 1980.96 1096.66 1982.25 Q1097.52 1983.5 1099.33 1984.69 Q1101.13 1985.89 1103.61 1986.69 Q1104.35 1986.85 1104.35 1987.56 Q1104.32 1988.33 1103.68 1988.33 Q1103.13 1988.33 1102 1987.91 Q1100.84 1987.46 1099.39 1986.56 Q1097.94 1985.63 1096.66 1984.44 Q1095.33 1983.21 1094.43 1981.44 Q1093.53 1979.64 1093.53 1977.71 Q1093.53 1976.84 1093.72 1976 Q1093.89 1975.13 1094.37 1974.1 Q1094.85 1973.04 1095.91 1972.1 Q1096.98 1971.17 1098.52 1970.59 Q1097.78 1970.2 1097.07 1969.69 Q1096.37 1969.14 1095.5 1968.3 Q1094.59 1967.43 1094.08 1966.24 Q1093.53 1965.02 1093.53 1963.66 Q1093.53 1962.34 1093.89 1961.05 Q1094.21 1959.77 1095.27 1958.67 Q1096.3 1957.54 1097.88 1957.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1121.61 1952.12 Q1120.55 1953.05 1119.17 1953.05 Q1117.78 1953.05 1116.75 1952.15 Q1115.69 1951.21 1115.69 1949.54 Q1115.69 1947.58 1117.59 1946.45 Q1119.46 1945.32 1122.61 1945.32 Q1126.03 1945.32 1129.18 1946.71 Q1132.37 1948.09 1133.89 1949.44 Q1135.4 1950.8 1135.4 1951.34 Q1135.4 1951.99 1134.69 1951.99 Q1134.43 1951.99 1133.95 1951.54 Q1128.86 1946.8 1122.61 1946.77 Q1121.61 1946.77 1121.61 1946.9 L1121.74 1947.06 Q1122.68 1948.19 1122.68 1949.54 Q1122.68 1951.18 1121.61 1952.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1094.98 1904.26 Q1095.88 1904.26 1096.11 1904.68 Q1096.3 1905.09 1096.3 1906.25 L1096.3 1912.44 L1115.75 1917.33 Q1117.46 1917.72 1118.91 1917.72 Q1120.52 1917.72 1121.23 1917.24 Q1121.94 1916.72 1121.94 1915.66 Q1121.94 1913.56 1120.04 1911.31 Q1118.14 1909.02 1113.5 1907.09 Q1112.89 1906.83 1112.76 1906.7 Q1112.6 1906.54 1112.6 1906.12 Q1112.6 1905.32 1113.24 1905.32 Q1113.47 1905.32 1114.5 1905.77 Q1115.53 1906.19 1117.04 1907.12 Q1118.56 1908.02 1119.97 1909.22 Q1121.39 1910.38 1122.42 1912.15 Q1123.42 1913.92 1123.42 1915.82 Q1123.42 1918.49 1121.71 1920.2 Q1120 1921.87 1117.33 1921.87 Q1116.46 1921.87 1113.69 1921.2 Q1110.89 1920.52 1096.3 1916.85 L1096.3 1922.68 Q1096.3 1923.48 1096.27 1923.81 Q1096.24 1924.1 1096.08 1924.32 Q1095.88 1924.51 1095.5 1924.51 Q1094.88 1924.51 1094.63 1924.26 Q1094.34 1924 1094.3 1923.68 Q1094.24 1923.32 1094.24 1922.52 L1094.24 1916.33 L1083.77 1913.76 Q1082.74 1913.5 1082.16 1912.86 Q1081.55 1912.18 1081.49 1911.79 Q1081.39 1911.41 1081.39 1911.12 Q1081.39 1910.25 1081.87 1909.73 Q1082.32 1909.22 1083.16 1909.22 Q1083.61 1909.22 1094.24 1911.92 L1094.24 1906.12 Q1094.24 1905.38 1094.27 1905.09 Q1094.3 1904.77 1094.47 1904.51 Q1094.63 1904.26 1094.98 1904.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1138.52 1899.1 Q1138.2 1899.1 1137.4 1898.26 Q1126.57 1887.63 1106.19 1887.63 Q1085.74 1887.63 1075.4 1897.84 Q1074.21 1899.1 1073.85 1899.1 Q1073.21 1899.1 1073.21 1898.45 Q1073.21 1898 1074.53 1896.43 Q1075.85 1894.82 1078.88 1892.4 Q1081.91 1889.95 1085.61 1888.15 Q1094.59 1883.8 1106.19 1883.8 Q1117.33 1883.8 1126.32 1887.96 Q1130.09 1889.73 1133.24 1892.21 Q1136.4 1894.69 1137.78 1896.33 Q1139.17 1897.97 1139.17 1898.45 Q1139.17 1899.1 1138.52 1899.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1590.66 1639.78 Q1590.66 1640.77 1590.2 1641.01 Q1589.74 1641.23 1588.48 1641.23 L1581.73 1641.23 L1576.39 1662.45 Q1575.97 1664.31 1575.97 1665.89 Q1575.97 1667.65 1576.5 1668.42 Q1577.06 1669.19 1578.22 1669.19 Q1580.5 1669.19 1582.96 1667.12 Q1585.46 1665.05 1587.57 1659.99 Q1587.85 1659.32 1587.99 1659.18 Q1588.16 1659 1588.62 1659 Q1589.5 1659 1589.5 1659.71 Q1589.5 1659.95 1589.01 1661.08 Q1588.55 1662.2 1587.53 1663.85 Q1586.55 1665.5 1585.25 1667.05 Q1583.98 1668.59 1582.05 1669.72 Q1580.12 1670.81 1578.04 1670.81 Q1575.13 1670.81 1573.27 1668.95 Q1571.44 1667.08 1571.44 1664.17 Q1571.44 1663.22 1572.18 1660.2 Q1572.91 1657.14 1576.92 1641.23 L1570.56 1641.23 Q1569.68 1641.23 1569.33 1641.19 Q1569.01 1641.16 1568.77 1640.98 Q1568.56 1640.77 1568.56 1640.35 Q1568.56 1639.68 1568.84 1639.4 Q1569.12 1639.08 1569.47 1639.05 Q1569.86 1638.98 1570.74 1638.98 L1577.48 1638.98 L1580.29 1627.56 Q1580.57 1626.43 1581.28 1625.8 Q1582.01 1625.13 1582.44 1625.06 Q1582.86 1624.96 1583.17 1624.96 Q1584.12 1624.96 1584.68 1625.49 Q1585.25 1625.98 1585.25 1626.89 Q1585.25 1627.38 1582.3 1638.98 L1588.62 1638.98 Q1589.43 1638.98 1589.74 1639.01 Q1590.09 1639.05 1590.38 1639.22 Q1590.66 1639.4 1590.66 1639.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1614.23 1659.07 Q1614.3 1658.19 1615.67 1658.19 L1659.76 1658.19 Q1661.83 1658.19 1661.87 1659 Q1661.87 1659.88 1659.9 1659.85 L1616.16 1659.85 Q1614.23 1659.88 1614.23 1659.07 M1614.23 1645.02 Q1614.23 1644.14 1615.74 1644.18 L1659.69 1644.18 Q1661.83 1644.18 1661.87 1645.02 Q1661.87 1645.83 1660.04 1645.83 L1615.67 1645.83 Q1614.23 1645.83 1614.23 1645.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1689.61 1646.99 Q1689.61 1636.41 1692.28 1630.65 Q1696 1622.08 1704.78 1622.08 Q1706.65 1622.08 1708.58 1622.6 Q1710.55 1623.1 1713 1625.03 Q1715.5 1626.96 1717.01 1630.12 Q1719.89 1636.24 1719.89 1646.99 Q1719.89 1657.49 1717.22 1663.22 Q1713.32 1671.58 1704.71 1671.58 Q1701.48 1671.58 1698.18 1669.93 Q1694.91 1668.28 1692.84 1664.31 Q1689.61 1658.37 1689.61 1646.99 M1695.58 1646.11 Q1695.58 1656.97 1696.35 1661.29 Q1697.23 1665.96 1699.62 1668 Q1702.04 1670 1704.71 1670 Q1707.59 1670 1709.98 1667.86 Q1712.41 1665.68 1713.15 1661.01 Q1713.95 1656.4 1713.92 1646.11 Q1713.92 1636.1 1713.22 1632.09 Q1712.27 1627.42 1709.74 1625.56 Q1707.24 1623.66 1704.71 1623.66 Q1703.76 1623.66 1702.75 1623.94 Q1701.76 1624.22 1700.32 1625.03 Q1698.88 1625.84 1697.76 1627.84 Q1696.67 1629.84 1696.14 1632.86 Q1695.58 1636.76 1695.58 1646.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1726.32 1668.84 Q1725.23 1667.68 1725.23 1666.17 Q1725.23 1664.66 1726.32 1663.57 Q1727.41 1662.45 1729.06 1662.45 Q1730.64 1662.45 1731.7 1663.5 Q1732.78 1664.52 1732.78 1666.21 Q1732.78 1667.86 1731.63 1668.95 Q1730.5 1670 1729.06 1670 Q1727.41 1670 1726.32 1668.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1745.03 1658.12 L1745.03 1655.91 L1767.13 1622.15 Q1767.69 1621.27 1768.57 1621.3 Q1769.37 1621.3 1769.55 1621.62 Q1769.73 1621.94 1769.73 1623.17 L1769.73 1655.91 L1776.93 1655.91 L1776.93 1658.12 L1769.73 1658.12 L1769.73 1664.38 Q1769.73 1666.45 1770.57 1667.12 Q1771.45 1667.79 1775.17 1667.79 L1776.68 1667.79 L1776.68 1670 Q1773.73 1669.79 1766.91 1669.79 Q1760.13 1669.79 1757.18 1670 L1757.18 1667.79 L1758.69 1667.79 Q1762.42 1667.79 1763.3 1667.15 Q1764.17 1666.49 1764.17 1664.38 L1764.17 1658.12 L1745.03 1658.12 M1747.06 1655.91 L1764.6 1655.91 L1764.6 1629.07 L1747.06 1655.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M1782.38 1646.99 Q1782.38 1636.41 1785.05 1630.65 Q1788.77 1622.08 1797.56 1622.08 Q1799.42 1622.08 1801.35 1622.6 Q1803.32 1623.1 1805.78 1625.03 Q1808.27 1626.96 1809.78 1630.12 Q1812.66 1636.24 1812.66 1646.99 Q1812.66 1657.49 1809.99 1663.22 Q1806.09 1671.58 1797.49 1671.58 Q1794.25 1671.58 1790.95 1669.93 Q1787.68 1668.28 1785.61 1664.31 Q1782.38 1658.37 1782.38 1646.99 M1788.35 1646.11 Q1788.35 1656.97 1789.13 1661.29 Q1790 1665.96 1792.39 1668 Q1794.82 1670 1797.49 1670 Q1800.37 1670 1802.76 1667.86 Q1805.18 1665.68 1805.92 1661.01 Q1806.73 1656.4 1806.69 1646.11 Q1806.69 1636.1 1805.99 1632.09 Q1805.04 1627.42 1802.51 1625.56 Q1800.02 1623.66 1797.49 1623.66 Q1796.54 1623.66 1795.52 1623.94 Q1794.54 1624.22 1793.1 1625.03 Q1791.65 1625.84 1790.53 1627.84 Q1789.44 1629.84 1788.91 1632.86 Q1788.35 1636.76 1788.35 1646.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip419)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1322.71,2187.21 1324.56,2186.77 1326.41,2186.31 1328.27,2185.85 1330.12,2185.37 1331.97,2184.89 1333.82,2184.39 1335.68,2183.89 1337.53,2183.38 1339.38,2182.86 \n",
" 1341.24,2182.33 1343.09,2181.78 1344.94,2181.23 1346.79,2180.67 1348.65,2180.1 1350.5,2179.52 1352.35,2178.92 1354.21,2178.32 1356.06,2177.71 1357.91,2177.08 \n",
" 1359.76,2176.45 1361.62,2175.8 1363.47,2175.15 1365.32,2174.48 1367.18,2173.8 1369.03,2173.11 1370.88,2172.41 1372.73,2171.69 1374.59,2170.97 1376.44,2170.23 \n",
" 1378.29,2169.49 1380.15,2168.73 1382,2167.96 1383.85,2167.18 1385.7,2166.38 1387.56,2165.58 1389.41,2164.76 1391.26,2163.93 1393.12,2163.09 1394.97,2162.23 \n",
" 1396.82,2161.37 1398.67,2160.49 1400.53,2159.6 1402.38,2158.7 1404.23,2157.79 1406.09,2156.86 1407.94,2155.93 1409.79,2154.98 1411.65,2154.02 1413.5,2153.04 \n",
" 1415.35,2152.06 1417.2,2151.06 1419.06,2150.05 1420.91,2149.03 1422.76,2148 1424.62,2146.95 1426.47,2145.9 1428.32,2144.83 1430.17,2143.75 1432.03,2142.66 \n",
" 1433.88,2141.56 1435.73,2140.44 1437.59,2139.31 1439.44,2138.18 1441.29,2137.03 1443.14,2135.87 1445,2134.7 1446.85,2133.52 1448.7,2132.32 1450.56,2131.12 \n",
" 1452.41,2129.91 1454.26,2128.68 1456.11,2127.45 1457.97,2126.2 1459.82,2124.95 1461.67,2123.68 1463.53,2122.41 1465.38,2121.13 1467.23,2119.83 1469.08,2118.53 \n",
" 1470.94,2117.22 1472.79,2115.9 1474.64,2114.57 1476.5,2113.24 1478.35,2111.89 1480.2,2110.54 1482.05,2109.18 1483.91,2107.81 1485.76,2106.43 1487.61,2105.05 \n",
" 1489.47,2103.66 1491.32,2102.27 1493.17,2100.87 1495.02,2099.46 1496.88,2098.05 1498.73,2096.63 1500.58,2095.2 1502.44,2093.77 1504.29,2092.34 1506.14,2090.9 \n",
" 1507.99,2089.46 1509.85,2088.02 1511.7,2086.57 1513.55,2085.12 1515.41,2083.66 1517.26,2082.21 1519.11,2080.75 1520.96,2079.29 1522.82,2077.83 1524.67,2076.37 \n",
" 1526.52,2074.9 1528.38,2073.44 1530.23,2071.98 1532.08,2070.52 1533.93,2069.06 1535.79,2067.6 1537.64,2066.14 1539.49,2064.68 1541.35,2063.23 1543.2,2061.78 \n",
" 1545.05,2060.33 1546.9,2058.89 1548.76,2057.45 1550.61,2056.01 1552.46,2054.58 1554.32,2053.15 1556.17,2051.73 1558.02,2050.32 1559.87,2048.91 1561.73,2047.51 \n",
" 1563.58,2046.12 1565.43,2044.73 1567.29,2043.35 1569.14,2041.99 1570.99,2040.63 1572.84,2039.28 1574.7,2037.93 1576.55,2036.6 1578.4,2035.28 1580.26,2033.97 \n",
" 1582.11,2032.68 1583.96,2031.39 1585.81,2030.12 1587.67,2028.86 1589.52,2027.61 1591.37,2026.37 1593.23,2025.15 1595.08,2023.95 1596.93,2022.76 1598.78,2021.58 \n",
" 1600.64,2020.42 1602.49,2019.27 1604.34,2018.14 1606.2,2017.03 1608.05,2015.94 1609.9,2014.86 1611.75,2013.8 1613.61,2012.76 1615.46,2011.73 1617.31,2010.73 \n",
" 1619.17,2009.74 1621.02,2008.78 1622.87,2007.83 1624.72,2006.9 1626.58,2006 1628.43,2005.11 1630.28,2004.25 1632.14,2003.41 1633.99,2002.59 1635.84,2001.79 \n",
" 1637.7,2001.01 1639.55,2000.26 1641.4,1999.53 1643.25,1998.82 1645.11,1998.14 1646.96,1997.48 1648.81,1996.84 1650.67,1996.23 1652.52,1995.64 1654.37,1995.08 \n",
" 1656.22,1994.54 1658.08,1994.03 1659.93,1993.54 1661.78,1993.08 1663.64,1992.64 1665.49,1992.23 1667.34,1991.84 1669.19,1991.48 1671.05,1991.15 1672.9,1990.84 \n",
" 1674.75,1990.56 1676.61,1990.31 1678.46,1990.08 1680.31,1989.88 1682.16,1989.7 1684.02,1989.55 1685.87,1989.43 1687.72,1989.34 1689.58,1989.27 1691.43,1989.23 \n",
" 1693.28,1989.22 1695.13,1989.23 1696.99,1989.27 1698.84,1989.34 1700.69,1989.43 1702.55,1989.55 1704.4,1989.7 1706.25,1989.88 1708.1,1990.08 1709.96,1990.31 \n",
" 1711.81,1990.56 1713.66,1990.84 1715.52,1991.15 1717.37,1991.48 1719.22,1991.84 1721.07,1992.23 1722.93,1992.64 1724.78,1993.08 1726.63,1993.54 1728.49,1994.03 \n",
" 1730.34,1994.54 1732.19,1995.08 1734.04,1995.64 1735.9,1996.23 1737.75,1996.84 1739.6,1997.48 1741.46,1998.14 1743.31,1998.82 1745.16,1999.53 1747.01,2000.26 \n",
" 1748.87,2001.01 1750.72,2001.79 1752.57,2002.59 1754.43,2003.41 1756.28,2004.25 1758.13,2005.11 1759.98,2006 1761.84,2006.9 1763.69,2007.83 1765.54,2008.78 \n",
" 1767.4,2009.74 1769.25,2010.73 1771.1,2011.73 1772.95,2012.76 1774.81,2013.8 1776.66,2014.86 1778.51,2015.94 1780.37,2017.03 1782.22,2018.14 1784.07,2019.27 \n",
" 1785.92,2020.42 1787.78,2021.58 1789.63,2022.76 1791.48,2023.95 1793.34,2025.15 1795.19,2026.37 1797.04,2027.61 1798.89,2028.86 1800.75,2030.12 1802.6,2031.39 \n",
" 1804.45,2032.68 1806.31,2033.97 1808.16,2035.28 1810.01,2036.6 1811.86,2037.93 1813.72,2039.28 1815.57,2040.63 1817.42,2041.99 1819.28,2043.35 1821.13,2044.73 \n",
" 1822.98,2046.12 1824.83,2047.51 1826.69,2048.91 1828.54,2050.32 1830.39,2051.73 1832.25,2053.15 1834.1,2054.58 1835.95,2056.01 1837.8,2057.45 1839.66,2058.89 \n",
" 1841.51,2060.33 1843.36,2061.78 1845.22,2063.23 1847.07,2064.68 1848.92,2066.14 1850.77,2067.6 1852.63,2069.06 1854.48,2070.52 1856.33,2071.98 1858.19,2073.44 \n",
" 1860.04,2074.9 1861.89,2076.37 1863.75,2077.83 1865.6,2079.29 1867.45,2080.75 1869.3,2082.21 1871.16,2083.66 1873.01,2085.12 1874.86,2086.57 1876.72,2088.02 \n",
" 1878.57,2089.46 1880.42,2090.9 1882.27,2092.34 1884.13,2093.77 1885.98,2095.2 1887.83,2096.63 1889.69,2098.05 1891.54,2099.46 1893.39,2100.87 1895.24,2102.27 \n",
" 1897.1,2103.66 1898.95,2105.05 1900.8,2106.43 1902.66,2107.81 1904.51,2109.18 1906.36,2110.54 1908.21,2111.89 1910.07,2113.24 1911.92,2114.57 1913.77,2115.9 \n",
" 1915.63,2117.22 1917.48,2118.53 1919.33,2119.83 1921.18,2121.13 1923.04,2122.41 1924.89,2123.68 1926.74,2124.95 1928.6,2126.2 1930.45,2127.45 1932.3,2128.68 \n",
" 1934.15,2129.91 1936.01,2131.12 1937.86,2132.32 1939.71,2133.52 1941.57,2134.7 1943.42,2135.87 1945.27,2137.03 1947.12,2138.18 1948.98,2139.31 1950.83,2140.44 \n",
" 1952.68,2141.56 1954.54,2142.66 1956.39,2143.75 1958.24,2144.83 1960.09,2145.9 1961.95,2146.95 1963.8,2148 1965.65,2149.03 1967.51,2150.05 1969.36,2151.06 \n",
" 1971.21,2152.06 1973.06,2153.04 1974.92,2154.02 1976.77,2154.98 1978.62,2155.93 1980.48,2156.86 1982.33,2157.79 1984.18,2158.7 1986.03,2159.6 1987.89,2160.49 \n",
" 1989.74,2161.37 1991.59,2162.23 1993.45,2163.09 1995.3,2163.93 1997.15,2164.76 1999,2165.58 2000.86,2166.38 2002.71,2167.18 2004.56,2167.96 2006.42,2168.73 \n",
" 2008.27,2169.49 2010.12,2170.23 2011.97,2170.97 2013.83,2171.69 2015.68,2172.41 2017.53,2173.11 2019.39,2173.8 2021.24,2174.48 2023.09,2175.15 2024.94,2175.8 \n",
" 2026.8,2176.45 2028.65,2177.08 2030.5,2177.71 2032.36,2178.32 2034.21,2178.92 2036.06,2179.52 2037.91,2180.1 2039.77,2180.67 2041.62,2181.23 2043.47,2181.78 \n",
" 2045.33,2182.33 2047.18,2182.86 2049.03,2183.38 2050.88,2183.89 2052.74,2184.39 2054.59,2184.89 2056.44,2185.37 2058.3,2185.85 2060.15,2186.31 2062,2186.77 \n",
" 2063.85,2187.21 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"\n",
"M2367.14 2204.92 L3152.76 2204.92 L3152.76 1721.31 L2367.14 1721.31 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip4110\">\n",
" <rect x=\"2367\" y=\"1721\" width=\"787\" height=\"485\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2389.37,2204.92 2389.37,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2574.66,2204.92 2574.66,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2759.95,2204.92 2759.95,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2945.23,2204.92 2945.23,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 3130.52,2204.92 3130.52,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,2204.92 3152.76,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,2204.92 2389.37,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2574.66,2204.92 2574.66,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2759.95,2204.92 2759.95,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2945.23,2204.92 2945.23,2186.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 3130.52,2204.92 3130.52,2186.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2359.32 2256.89 L2388.99 2256.89 L2388.99 2260.83 L2359.32 2260.83 L2359.32 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2403.11 2269.78 L2419.43 2269.78 L2419.43 2273.72 L2397.49 2273.72 L2397.49 2269.78 Q2400.15 2267.03 2404.73 2262.4 Q2409.34 2257.75 2410.52 2256.41 Q2412.77 2253.88 2413.64 2252.15 Q2414.55 2250.39 2414.55 2248.7 Q2414.55 2245.94 2412.6 2244.21 Q2410.68 2242.47 2407.58 2242.47 Q2405.38 2242.47 2402.93 2243.23 Q2400.5 2244 2397.72 2245.55 L2397.72 2240.83 Q2400.54 2239.69 2403 2239.11 Q2405.45 2238.53 2407.49 2238.53 Q2412.86 2238.53 2416.05 2241.22 Q2419.25 2243.91 2419.25 2248.4 Q2419.25 2250.53 2418.44 2252.45 Q2417.65 2254.34 2415.54 2256.94 Q2414.96 2257.61 2411.86 2260.83 Q2408.76 2264.02 2403.11 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2544.42 2256.89 L2574.09 2256.89 L2574.09 2260.83 L2544.42 2260.83 L2544.42 2256.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2585 2269.78 L2592.64 2269.78 L2592.64 2243.42 L2584.33 2245.09 L2584.33 2240.83 L2592.59 2239.16 L2597.26 2239.16 L2597.26 2269.78 L2604.9 2269.78 L2604.9 2273.72 L2585 2273.72 L2585 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2759.95 2242.24 Q2756.34 2242.24 2754.51 2245.8 Q2752.7 2249.34 2752.7 2256.47 Q2752.7 2263.58 2754.51 2267.15 Q2756.34 2270.69 2759.95 2270.69 Q2763.58 2270.69 2765.39 2267.15 Q2767.22 2263.58 2767.22 2256.47 Q2767.22 2249.34 2765.39 2245.8 Q2763.58 2242.24 2759.95 2242.24 M2759.95 2238.53 Q2765.76 2238.53 2768.81 2243.14 Q2771.89 2247.72 2771.89 2256.47 Q2771.89 2265.2 2768.81 2269.81 Q2765.76 2274.39 2759.95 2274.39 Q2754.14 2274.39 2751.06 2269.81 Q2748 2265.2 2748 2256.47 Q2748 2247.72 2751.06 2243.14 Q2754.14 2238.53 2759.95 2238.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2935.62 2269.78 L2943.26 2269.78 L2943.26 2243.42 L2934.95 2245.09 L2934.95 2240.83 L2943.21 2239.16 L2947.89 2239.16 L2947.89 2269.78 L2955.52 2269.78 L2955.52 2273.72 L2935.62 2273.72 L2935.62 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M3125.17 2269.78 L3141.49 2269.78 L3141.49 2273.72 L3119.55 2273.72 L3119.55 2269.78 Q3122.21 2267.03 3126.79 2262.4 Q3131.4 2257.75 3132.58 2256.41 Q3134.83 2253.88 3135.71 2252.15 Q3136.61 2250.39 3136.61 2248.7 Q3136.61 2245.94 3134.66 2244.21 Q3132.74 2242.47 3129.64 2242.47 Q3127.44 2242.47 3124.99 2243.23 Q3122.56 2244 3119.78 2245.55 L3119.78 2240.83 Q3122.6 2239.69 3125.06 2239.11 Q3127.51 2238.53 3129.55 2238.53 Q3134.92 2238.53 3138.11 2241.22 Q3141.31 2243.91 3141.31 2248.4 Q3141.31 2250.53 3140.5 2252.45 Q3139.71 2254.34 3137.6 2256.94 Q3137.03 2257.61 3133.92 2260.83 Q3130.82 2264.02 3125.17 2269.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2774.13 2322.54 Q2774.13 2324.34 2773 2325.37 Q2771.87 2326.37 2770.58 2326.37 Q2769.36 2326.37 2768.72 2325.66 Q2768.07 2324.95 2768.07 2324.05 Q2768.07 2322.83 2768.97 2321.76 Q2769.87 2320.7 2771.23 2320.47 Q2769.91 2319.64 2767.94 2319.64 Q2766.65 2319.64 2765.53 2320.31 Q2764.43 2320.99 2763.76 2321.86 Q2763.11 2322.73 2762.53 2323.99 Q2761.98 2325.21 2761.76 2325.95 Q2761.57 2326.66 2761.4 2327.43 L2759.15 2336.45 Q2758.05 2340.73 2758.05 2342.25 Q2758.05 2344.11 2758.96 2345.37 Q2759.86 2346.59 2761.66 2346.59 Q2762.37 2346.59 2763.18 2346.4 Q2763.98 2346.17 2765.01 2345.6 Q2766.07 2344.98 2767.01 2344.08 Q2767.97 2343.15 2768.91 2341.57 Q2769.84 2339.99 2770.45 2337.96 Q2770.65 2337.25 2771.29 2337.25 Q2772.1 2337.25 2772.1 2337.9 Q2772.1 2338.45 2771.65 2339.6 Q2771.23 2340.73 2770.29 2342.21 Q2769.39 2343.66 2768.2 2344.98 Q2767.01 2346.27 2765.24 2347.17 Q2763.47 2348.08 2761.53 2348.08 Q2758.76 2348.08 2756.93 2346.59 Q2755.09 2345.11 2754.42 2343.05 Q2754.25 2343.34 2754.03 2343.73 Q2753.8 2344.11 2753.13 2344.98 Q2752.48 2345.82 2751.74 2346.46 Q2751 2347.08 2749.84 2347.56 Q2748.72 2348.08 2747.49 2348.08 Q2745.95 2348.08 2744.56 2347.62 Q2743.21 2347.17 2742.24 2346.14 Q2741.28 2345.11 2741.28 2343.7 Q2741.28 2342.12 2742.34 2341.02 Q2743.43 2339.89 2744.91 2339.89 Q2745.85 2339.89 2746.59 2340.44 Q2747.36 2340.99 2747.36 2342.18 Q2747.36 2343.5 2746.46 2344.5 Q2745.56 2345.5 2744.27 2345.76 Q2745.59 2346.59 2747.56 2346.59 Q2749.68 2346.59 2751.36 2344.73 Q2753.03 2342.86 2753.84 2339.73 Q2755.83 2332.23 2756.61 2328.88 Q2757.38 2325.5 2757.38 2324.05 Q2757.38 2322.7 2757.02 2321.76 Q2756.67 2320.83 2756.06 2320.41 Q2755.48 2319.96 2754.93 2319.8 Q2754.42 2319.64 2753.84 2319.64 Q2752.87 2319.64 2751.77 2320.02 Q2750.71 2320.41 2749.42 2321.31 Q2748.17 2322.18 2746.98 2323.99 Q2745.78 2325.79 2744.98 2328.27 Q2744.82 2329.01 2744.11 2329.01 Q2743.34 2328.98 2743.34 2328.33 Q2743.34 2327.79 2743.76 2326.66 Q2744.21 2325.5 2745.11 2324.05 Q2746.04 2322.6 2747.23 2321.31 Q2748.46 2319.99 2750.23 2319.09 Q2752.03 2318.19 2753.96 2318.19 Q2754.83 2318.19 2755.67 2318.38 Q2756.54 2318.54 2757.57 2319.03 Q2758.63 2319.51 2759.57 2320.57 Q2760.5 2321.63 2761.08 2323.18 Q2761.47 2322.44 2761.98 2321.73 Q2762.53 2321.02 2763.37 2320.15 Q2764.24 2319.25 2765.43 2318.74 Q2766.65 2318.19 2768.01 2318.19 Q2769.33 2318.19 2770.62 2318.54 Q2771.9 2318.86 2773 2319.93 Q2774.13 2320.96 2774.13 2322.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,2204.92 3152.76,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,2108.2 3152.76,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,2011.48 3152.76,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1914.76 3152.76,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1818.03 3152.76,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip4110)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2367.14,1721.31 3152.76,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,2204.92 2367.14,1721.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,2204.92 2386.04,2204.92 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,2108.2 2386.04,2108.2 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,2011.48 2386.04,2011.48 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1914.76 2386.04,1914.76 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1818.03 2386.04,1818.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip410)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2367.14,1721.31 2386.04,1721.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip410)\" d=\"M2261.96 2190.72 Q2258.35 2190.72 2256.52 2194.28 Q2254.72 2197.82 2254.72 2204.95 Q2254.72 2212.06 2256.52 2215.63 Q2258.35 2219.17 2261.96 2219.17 Q2265.6 2219.17 2267.4 2215.63 Q2269.23 2212.06 2269.23 2204.95 Q2269.23 2197.82 2267.4 2194.28 Q2265.6 2190.72 2261.96 2190.72 M2261.96 2187.01 Q2267.77 2187.01 2270.83 2191.62 Q2273.91 2196.2 2273.91 2204.95 Q2273.91 2213.68 2270.83 2218.29 Q2267.77 2222.87 2261.96 2222.87 Q2256.15 2222.87 2253.08 2218.29 Q2250.02 2213.68 2250.02 2204.95 Q2250.02 2196.2 2253.08 2191.62 Q2256.15 2187.01 2261.96 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 2216.32 L2287.01 2216.32 L2287.01 2222.2 L2282.13 2222.2 L2282.13 2216.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 2190.72 Q2303.58 2190.72 2301.76 2194.28 Q2299.95 2197.82 2299.95 2204.95 Q2299.95 2212.06 2301.76 2215.63 Q2303.58 2219.17 2307.2 2219.17 Q2310.83 2219.17 2312.64 2215.63 Q2314.46 2212.06 2314.46 2204.95 Q2314.46 2197.82 2312.64 2194.28 Q2310.83 2190.72 2307.2 2190.72 M2307.2 2187.01 Q2313.01 2187.01 2316.06 2191.62 Q2319.14 2196.2 2319.14 2204.95 Q2319.14 2213.68 2316.06 2218.29 Q2313.01 2222.87 2307.2 2222.87 Q2301.39 2222.87 2298.31 2218.29 Q2295.25 2213.68 2295.25 2204.95 Q2295.25 2196.2 2298.31 2191.62 Q2301.39 2187.01 2307.2 2187.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2263.56 2094 Q2259.95 2094 2258.12 2097.56 Q2256.32 2101.1 2256.32 2108.23 Q2256.32 2115.34 2258.12 2118.9 Q2259.95 2122.45 2263.56 2122.45 Q2267.2 2122.45 2269 2118.9 Q2270.83 2115.34 2270.83 2108.23 Q2270.83 2101.1 2269 2097.56 Q2267.2 2094 2263.56 2094 M2263.56 2090.29 Q2269.37 2090.29 2272.43 2094.9 Q2275.51 2099.48 2275.51 2108.23 Q2275.51 2116.96 2272.43 2121.57 Q2269.37 2126.15 2263.56 2126.15 Q2257.75 2126.15 2254.67 2121.57 Q2251.62 2116.96 2251.62 2108.23 Q2251.62 2099.48 2254.67 2094.9 Q2257.75 2090.29 2263.56 2090.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2283.72 2119.6 L2288.61 2119.6 L2288.61 2125.48 L2283.72 2125.48 L2283.72 2119.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2302.82 2121.54 L2319.14 2121.54 L2319.14 2125.48 L2297.2 2125.48 L2297.2 2121.54 Q2299.86 2118.79 2304.44 2114.16 Q2309.05 2109.51 2310.23 2108.16 Q2312.47 2105.64 2313.35 2103.9 Q2314.26 2102.15 2314.26 2100.46 Q2314.26 2097.7 2312.31 2095.96 Q2310.39 2094.23 2307.29 2094.23 Q2305.09 2094.23 2302.64 2094.99 Q2300.2 2095.76 2297.43 2097.31 L2297.43 2092.58 Q2300.25 2091.45 2302.7 2090.87 Q2305.16 2090.29 2307.2 2090.29 Q2312.57 2090.29 2315.76 2092.98 Q2318.95 2095.66 2318.95 2100.15 Q2318.95 2102.28 2318.14 2104.21 Q2317.36 2106.1 2315.25 2108.7 Q2314.67 2109.37 2311.57 2112.58 Q2308.47 2115.78 2302.82 2121.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.48 1997.28 Q2257.87 1997.28 2256.04 2000.84 Q2254.23 2004.38 2254.23 2011.51 Q2254.23 2018.62 2256.04 2022.18 Q2257.87 2025.72 2261.48 2025.72 Q2265.11 2025.72 2266.92 2022.18 Q2268.75 2018.62 2268.75 2011.51 Q2268.75 2004.38 2266.92 2000.84 Q2265.11 1997.28 2261.48 1997.28 M2261.48 1993.57 Q2267.29 1993.57 2270.34 1998.18 Q2273.42 2002.76 2273.42 2011.51 Q2273.42 2020.24 2270.34 2024.84 Q2267.29 2029.43 2261.48 2029.43 Q2255.67 2029.43 2252.59 2024.84 Q2249.53 2020.24 2249.53 2011.51 Q2249.53 2002.76 2252.59 1998.18 Q2255.67 1993.57 2261.48 1993.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.64 2022.88 L2286.52 2022.88 L2286.52 2028.76 L2281.64 2028.76 L2281.64 2022.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2309.56 1998.27 L2297.75 2016.72 L2309.56 2016.72 L2309.56 1998.27 M2308.33 1994.2 L2314.21 1994.2 L2314.21 2016.72 L2319.14 2016.72 L2319.14 2020.61 L2314.21 2020.61 L2314.21 2028.76 L2309.56 2028.76 L2309.56 2020.61 L2293.95 2020.61 L2293.95 2016.09 L2308.33 1994.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2261.8 1900.55 Q2258.19 1900.55 2256.36 1904.12 Q2254.56 1907.66 2254.56 1914.79 Q2254.56 1921.9 2256.36 1925.46 Q2258.19 1929 2261.8 1929 Q2265.44 1929 2267.24 1925.46 Q2269.07 1921.9 2269.07 1914.79 Q2269.07 1907.66 2267.24 1904.12 Q2265.44 1900.55 2261.8 1900.55 M2261.8 1896.85 Q2267.61 1896.85 2270.67 1901.46 Q2273.75 1906.04 2273.75 1914.79 Q2273.75 1923.52 2270.67 1928.12 Q2267.61 1932.71 2261.8 1932.71 Q2255.99 1932.71 2252.91 1928.12 Q2249.86 1923.52 2249.86 1914.79 Q2249.86 1906.04 2252.91 1901.46 Q2255.99 1896.85 2261.8 1896.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2281.96 1926.16 L2286.85 1926.16 L2286.85 1932.04 L2281.96 1932.04 L2281.96 1926.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.61 1912.89 Q2304.46 1912.89 2302.61 1915.04 Q2300.78 1917.2 2300.78 1920.95 Q2300.78 1924.67 2302.61 1926.85 Q2304.46 1929 2307.61 1929 Q2310.76 1929 2312.59 1926.85 Q2314.44 1924.67 2314.44 1920.95 Q2314.44 1917.2 2312.59 1915.04 Q2310.76 1912.89 2307.61 1912.89 M2316.89 1898.24 L2316.89 1902.5 Q2315.13 1901.67 2313.33 1901.23 Q2311.55 1900.79 2309.79 1900.79 Q2305.16 1900.79 2302.7 1903.91 Q2300.27 1907.04 2299.93 1913.35 Q2301.29 1911.34 2303.35 1910.28 Q2305.41 1909.19 2307.89 1909.19 Q2313.1 1909.19 2316.11 1912.36 Q2319.14 1915.51 2319.14 1920.95 Q2319.14 1926.27 2315.99 1929.49 Q2312.84 1932.71 2307.61 1932.71 Q2301.62 1932.71 2298.45 1928.12 Q2295.27 1923.52 2295.27 1914.79 Q2295.27 1906.6 2299.16 1901.73 Q2303.05 1896.85 2309.6 1896.85 Q2311.36 1896.85 2313.14 1897.2 Q2314.95 1897.54 2316.89 1898.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2262.06 1803.83 Q2258.45 1803.83 2256.62 1807.4 Q2254.81 1810.94 2254.81 1818.07 Q2254.81 1825.17 2256.62 1828.74 Q2258.45 1832.28 2262.06 1832.28 Q2265.69 1832.28 2267.5 1828.74 Q2269.33 1825.17 2269.33 1818.07 Q2269.33 1810.94 2267.5 1807.4 Q2265.69 1803.83 2262.06 1803.83 M2262.06 1800.13 Q2267.87 1800.13 2270.92 1804.74 Q2274 1809.32 2274 1818.07 Q2274 1826.8 2270.92 1831.4 Q2267.87 1835.98 2262.06 1835.98 Q2256.25 1835.98 2253.17 1831.4 Q2250.11 1826.8 2250.11 1818.07 Q2250.11 1809.32 2253.17 1804.74 Q2256.25 1800.13 2262.06 1800.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.22 1829.43 L2287.1 1829.43 L2287.1 1835.31 L2282.22 1835.31 L2282.22 1829.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.29 1818.9 Q2303.95 1818.9 2302.03 1820.68 Q2300.14 1822.47 2300.14 1825.59 Q2300.14 1828.72 2302.03 1830.5 Q2303.95 1832.28 2307.29 1832.28 Q2310.62 1832.28 2312.54 1830.5 Q2314.46 1828.69 2314.46 1825.59 Q2314.46 1822.47 2312.54 1820.68 Q2310.64 1818.9 2307.29 1818.9 M2302.61 1816.91 Q2299.6 1816.17 2297.91 1814.11 Q2296.25 1812.05 2296.25 1809.09 Q2296.25 1804.94 2299.19 1802.54 Q2302.15 1800.13 2307.29 1800.13 Q2312.45 1800.13 2315.39 1802.54 Q2318.33 1804.94 2318.33 1809.09 Q2318.33 1812.05 2316.64 1814.11 Q2314.97 1816.17 2311.99 1816.91 Q2315.37 1817.7 2317.24 1819.99 Q2319.14 1822.28 2319.14 1825.59 Q2319.14 1830.61 2316.06 1833.3 Q2313.01 1835.98 2307.29 1835.98 Q2301.57 1835.98 2298.49 1833.3 Q2295.44 1830.61 2295.44 1825.59 Q2295.44 1822.28 2297.33 1819.99 Q2299.23 1817.7 2302.61 1816.91 M2300.9 1809.53 Q2300.9 1812.21 2302.57 1813.72 Q2304.26 1815.22 2307.29 1815.22 Q2310.3 1815.22 2311.99 1813.72 Q2313.7 1812.21 2313.7 1809.53 Q2313.7 1806.84 2311.99 1805.34 Q2310.3 1803.83 2307.29 1803.83 Q2304.26 1803.83 2302.57 1805.34 Q2300.9 1806.84 2300.9 1809.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2252.77 1734.66 L2260.41 1734.66 L2260.41 1708.29 L2252.1 1709.96 L2252.1 1705.7 L2260.37 1704.03 L2265.04 1704.03 L2265.04 1734.66 L2272.68 1734.66 L2272.68 1738.59 L2252.77 1738.59 L2252.77 1734.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2282.13 1732.71 L2287.01 1732.71 L2287.01 1738.59 L2282.13 1738.59 L2282.13 1732.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2307.2 1707.11 Q2303.58 1707.11 2301.76 1710.68 Q2299.95 1714.22 2299.95 1721.35 Q2299.95 1728.45 2301.76 1732.02 Q2303.58 1735.56 2307.2 1735.56 Q2310.83 1735.56 2312.64 1732.02 Q2314.46 1728.45 2314.46 1721.35 Q2314.46 1714.22 2312.64 1710.68 Q2310.83 1707.11 2307.2 1707.11 M2307.2 1703.41 Q2313.01 1703.41 2316.06 1708.01 Q2319.14 1712.6 2319.14 1721.35 Q2319.14 1730.07 2316.06 1734.68 Q2313.01 1739.26 2307.2 1739.26 Q2301.39 1739.26 2298.31 1734.68 Q2295.25 1730.07 2295.25 1721.35 Q2295.25 1712.6 2298.31 1708.01 Q2301.39 1703.41 2307.2 1703.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2147.38 2019.57 Q2149.15 2019.57 2150.25 2020.7 Q2151.34 2021.79 2151.34 2023.18 Q2151.34 2024.18 2150.73 2024.92 Q2150.12 2025.63 2149.05 2025.63 Q2147.96 2025.63 2146.8 2024.79 Q2145.64 2023.95 2145.48 2022.05 Q2144.29 2023.31 2144.29 2025.3 Q2144.29 2026.3 2144.93 2027.14 Q2145.54 2027.95 2146.54 2028.4 Q2147.57 2028.88 2153.4 2029.97 Q2155.3 2030.33 2157.14 2030.65 Q2158.97 2030.97 2160.91 2031.36 L2160.91 2025.88 Q2160.91 2025.18 2160.94 2024.89 Q2160.97 2024.6 2161.13 2024.37 Q2161.29 2024.11 2161.65 2024.11 Q2162.55 2024.11 2162.77 2024.53 Q2162.97 2024.92 2162.97 2026.08 L2162.97 2031.75 L2183.87 2035.71 Q2184.48 2035.8 2186.41 2036.22 Q2188.31 2036.61 2191.44 2037.54 Q2194.59 2038.48 2196.46 2039.41 Q2197.52 2039.93 2198.52 2040.6 Q2199.55 2041.25 2200.58 2042.18 Q2201.61 2043.11 2202.23 2044.34 Q2202.87 2045.56 2202.87 2046.85 Q2202.87 2049.04 2201.65 2050.75 Q2200.42 2052.45 2198.33 2052.45 Q2196.56 2052.45 2195.46 2051.36 Q2194.37 2050.23 2194.37 2048.85 Q2194.37 2047.85 2194.98 2047.14 Q2195.59 2046.4 2196.66 2046.4 Q2197.11 2046.4 2197.62 2046.56 Q2198.14 2046.72 2198.72 2047.08 Q2199.33 2047.43 2199.75 2048.2 Q2200.17 2048.98 2200.23 2050.04 Q2201.42 2048.78 2201.42 2046.85 Q2201.42 2046.24 2201.16 2045.69 Q2200.94 2045.14 2200.36 2044.69 Q2199.78 2044.21 2199.2 2043.86 Q2198.65 2043.5 2197.59 2043.15 Q2196.56 2042.79 2195.79 2042.57 Q2195.01 2042.34 2193.63 2042.05 Q2192.24 2041.73 2191.41 2041.57 Q2190.6 2041.41 2189.02 2041.12 L2162.97 2036.19 L2162.97 2040.54 Q2162.97 2041.31 2162.94 2041.63 Q2162.9 2041.92 2162.74 2042.15 Q2162.55 2042.37 2162.16 2042.37 Q2161.55 2042.37 2161.29 2042.12 Q2161 2041.83 2160.97 2041.5 Q2160.91 2041.18 2160.91 2040.41 L2160.91 2035.84 Q2152.76 2034.29 2150.57 2033.68 Q2148.25 2032.97 2146.64 2031.87 Q2145 2030.78 2144.22 2029.56 Q2143.45 2028.33 2143.16 2027.33 Q2142.84 2026.3 2142.84 2025.3 Q2142.84 2023.05 2144.06 2021.31 Q2145.25 2019.57 2147.38 2019.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2172.86 2010.7 Q2161.71 2010.7 2152.73 2006.55 Q2148.96 2004.77 2145.8 2002.29 Q2142.65 1999.81 2141.26 1998.17 Q2139.88 1996.53 2139.88 1996.08 Q2139.88 1995.43 2140.52 1995.4 Q2140.84 1995.4 2141.65 1996.27 Q2152.47 2006.9 2172.86 2006.87 Q2193.31 2006.87 2203.71 1996.53 Q2204.84 1995.4 2205.19 1995.4 Q2205.83 1995.4 2205.83 1996.08 Q2205.83 1996.53 2204.51 1998.11 Q2203.19 1999.69 2200.17 2002.13 Q2197.14 2004.58 2193.43 2006.35 Q2184.45 2010.7 2172.86 2010.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2164.55 1957.54 Q2166.35 1957.54 2167.38 1958.67 Q2168.38 1959.8 2168.38 1961.09 Q2168.38 1962.31 2167.67 1962.96 Q2166.96 1963.6 2166.06 1963.6 Q2164.84 1963.6 2163.77 1962.7 Q2162.71 1961.8 2162.48 1960.44 Q2161.65 1961.76 2161.65 1963.73 Q2161.65 1965.02 2162.32 1966.14 Q2163 1967.24 2163.87 1967.91 Q2164.74 1968.56 2166 1969.14 Q2167.22 1969.69 2167.96 1969.91 Q2168.67 1970.1 2169.44 1970.27 L2178.46 1972.52 Q2182.74 1973.62 2184.26 1973.62 Q2186.12 1973.62 2187.38 1972.71 Q2188.6 1971.81 2188.6 1970.01 Q2188.6 1969.3 2188.41 1968.49 Q2188.18 1967.69 2187.61 1966.66 Q2186.99 1965.6 2186.09 1964.66 Q2185.16 1963.7 2183.58 1962.76 Q2182 1961.83 2179.97 1961.22 Q2179.26 1961.02 2179.26 1960.38 Q2179.26 1959.57 2179.91 1959.57 Q2180.46 1959.57 2181.62 1960.02 Q2182.74 1960.44 2184.22 1961.38 Q2185.67 1962.28 2186.99 1963.47 Q2188.28 1964.66 2189.18 1966.43 Q2190.09 1968.2 2190.09 1970.14 Q2190.09 1972.91 2188.6 1974.74 Q2187.12 1976.58 2185.06 1977.25 Q2185.35 1977.42 2185.74 1977.64 Q2186.12 1977.87 2186.99 1978.54 Q2187.83 1979.19 2188.47 1979.93 Q2189.09 1980.67 2189.57 1981.83 Q2190.09 1982.95 2190.09 1984.18 Q2190.09 1985.72 2189.63 1987.11 Q2189.18 1988.46 2188.15 1989.43 Q2187.12 1990.39 2185.71 1990.39 Q2184.13 1990.39 2183.03 1989.33 Q2181.9 1988.24 2181.9 1986.76 Q2181.9 1985.82 2182.45 1985.08 Q2183 1984.31 2184.19 1984.31 Q2185.51 1984.31 2186.51 1985.21 Q2187.51 1986.11 2187.77 1987.4 Q2188.6 1986.08 2188.6 1984.11 Q2188.6 1981.99 2186.74 1980.31 Q2184.87 1978.64 2181.74 1977.83 Q2174.24 1975.84 2170.89 1975.06 Q2167.51 1974.29 2166.06 1974.29 Q2164.71 1974.29 2163.77 1974.65 Q2162.84 1975 2162.42 1975.61 Q2161.97 1976.19 2161.81 1976.74 Q2161.65 1977.25 2161.65 1977.83 Q2161.65 1978.8 2162.03 1979.9 Q2162.42 1980.96 2163.32 1982.25 Q2164.19 1983.5 2166 1984.69 Q2167.8 1985.89 2170.28 1986.69 Q2171.02 1986.85 2171.02 1987.56 Q2170.99 1988.33 2170.34 1988.33 Q2169.8 1988.33 2168.67 1987.91 Q2167.51 1987.46 2166.06 1986.56 Q2164.61 1985.63 2163.32 1984.44 Q2162 1983.21 2161.1 1981.44 Q2160.2 1979.64 2160.2 1977.71 Q2160.2 1976.84 2160.39 1976 Q2160.55 1975.13 2161.04 1974.1 Q2161.52 1973.04 2162.58 1972.1 Q2163.64 1971.17 2165.19 1970.59 Q2164.45 1970.2 2163.74 1969.69 Q2163.03 1969.14 2162.16 1968.3 Q2161.26 1967.43 2160.75 1966.24 Q2160.2 1965.02 2160.2 1963.66 Q2160.2 1962.34 2160.55 1961.05 Q2160.87 1959.77 2161.94 1958.67 Q2162.97 1957.54 2164.55 1957.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2188.28 1952.12 Q2187.22 1953.05 2185.83 1953.05 Q2184.45 1953.05 2183.42 1952.15 Q2182.36 1951.21 2182.36 1949.54 Q2182.36 1947.58 2184.26 1946.45 Q2186.12 1945.32 2189.28 1945.32 Q2192.69 1945.32 2195.85 1946.71 Q2199.04 1948.09 2200.55 1949.44 Q2202.07 1950.8 2202.07 1951.34 Q2202.07 1951.99 2201.36 1951.99 Q2201.1 1951.99 2200.62 1951.54 Q2195.53 1946.8 2189.28 1946.77 Q2188.28 1946.77 2188.28 1946.9 L2188.41 1947.06 Q2189.34 1948.19 2189.34 1949.54 Q2189.34 1951.18 2188.28 1952.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2161.65 1904.26 Q2162.55 1904.26 2162.77 1904.68 Q2162.97 1905.09 2162.97 1906.25 L2162.97 1912.44 L2182.42 1917.33 Q2184.13 1917.72 2185.58 1917.72 Q2187.19 1917.72 2187.9 1917.24 Q2188.6 1916.72 2188.6 1915.66 Q2188.6 1913.56 2186.7 1911.31 Q2184.8 1909.02 2180.17 1907.09 Q2179.55 1906.83 2179.43 1906.7 Q2179.26 1906.54 2179.26 1906.12 Q2179.26 1905.32 2179.91 1905.32 Q2180.13 1905.32 2181.16 1905.77 Q2182.19 1906.19 2183.71 1907.12 Q2185.22 1908.02 2186.64 1909.22 Q2188.06 1910.38 2189.09 1912.15 Q2190.09 1913.92 2190.09 1915.82 Q2190.09 1918.49 2188.38 1920.2 Q2186.67 1921.87 2184 1921.87 Q2183.13 1921.87 2180.36 1921.2 Q2177.56 1920.52 2162.97 1916.85 L2162.97 1922.68 Q2162.97 1923.48 2162.94 1923.81 Q2162.9 1924.1 2162.74 1924.32 Q2162.55 1924.51 2162.16 1924.51 Q2161.55 1924.51 2161.29 1924.26 Q2161 1924 2160.97 1923.68 Q2160.91 1923.32 2160.91 1922.52 L2160.91 1916.33 L2150.44 1913.76 Q2149.41 1913.5 2148.83 1912.86 Q2148.22 1912.18 2148.15 1911.79 Q2148.06 1911.41 2148.06 1911.12 Q2148.06 1910.25 2148.54 1909.73 Q2148.99 1909.22 2149.83 1909.22 Q2150.28 1909.22 2160.91 1911.92 L2160.91 1906.12 Q2160.91 1905.38 2160.94 1905.09 Q2160.97 1904.77 2161.13 1904.51 Q2161.29 1904.26 2161.65 1904.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2205.19 1899.1 Q2204.87 1899.1 2204.06 1898.26 Q2193.24 1887.63 2172.86 1887.63 Q2152.4 1887.63 2142.07 1897.84 Q2140.87 1899.1 2140.52 1899.1 Q2139.88 1899.1 2139.88 1898.45 Q2139.88 1898 2141.2 1896.43 Q2142.52 1894.82 2145.54 1892.4 Q2148.57 1889.95 2152.28 1888.15 Q2161.26 1883.8 2172.86 1883.8 Q2184 1883.8 2192.98 1887.96 Q2196.75 1889.73 2199.91 1892.21 Q2203.06 1894.69 2204.45 1896.33 Q2205.83 1897.97 2205.83 1898.45 Q2205.83 1899.1 2205.19 1899.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2657.18 1639.78 Q2657.18 1640.77 2656.72 1641.01 Q2656.27 1641.23 2655 1641.23 L2648.26 1641.23 L2642.92 1662.45 Q2642.49 1664.31 2642.49 1665.89 Q2642.49 1667.65 2643.02 1668.42 Q2643.58 1669.19 2644.74 1669.19 Q2647.03 1669.19 2649.49 1667.12 Q2651.98 1665.05 2654.09 1659.99 Q2654.37 1659.32 2654.51 1659.18 Q2654.69 1659 2655.14 1659 Q2656.02 1659 2656.02 1659.71 Q2656.02 1659.95 2655.53 1661.08 Q2655.07 1662.2 2654.05 1663.85 Q2653.07 1665.5 2651.77 1667.05 Q2650.5 1668.59 2648.57 1669.72 Q2646.64 1670.81 2644.57 1670.81 Q2641.65 1670.81 2639.79 1668.95 Q2637.96 1667.08 2637.96 1664.17 Q2637.96 1663.22 2638.7 1660.2 Q2639.44 1657.14 2643.44 1641.23 L2637.08 1641.23 Q2636.2 1641.23 2635.85 1641.19 Q2635.54 1641.16 2635.29 1640.98 Q2635.08 1640.77 2635.08 1640.35 Q2635.08 1639.68 2635.36 1639.4 Q2635.64 1639.08 2635.99 1639.05 Q2636.38 1638.98 2637.26 1638.98 L2644 1638.98 L2646.82 1627.56 Q2647.1 1626.43 2647.8 1625.8 Q2648.54 1625.13 2648.96 1625.06 Q2649.38 1624.96 2649.7 1624.96 Q2650.64 1624.96 2651.21 1625.49 Q2651.77 1625.98 2651.77 1626.89 Q2651.77 1627.38 2648.82 1638.98 L2655.14 1638.98 Q2655.95 1638.98 2656.27 1639.01 Q2656.62 1639.05 2656.9 1639.22 Q2657.18 1639.4 2657.18 1639.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2680.75 1659.07 Q2680.82 1658.19 2682.19 1658.19 L2726.28 1658.19 Q2728.36 1658.19 2728.39 1659 Q2728.39 1659.88 2726.42 1659.85 L2682.68 1659.85 Q2680.75 1659.88 2680.75 1659.07 M2680.75 1645.02 Q2680.75 1644.14 2682.26 1644.18 L2726.21 1644.18 Q2728.36 1644.18 2728.39 1645.02 Q2728.39 1645.83 2726.56 1645.83 L2682.19 1645.83 Q2680.75 1645.83 2680.75 1645.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2756.13 1646.99 Q2756.13 1636.41 2758.8 1630.65 Q2762.52 1622.08 2771.31 1622.08 Q2773.17 1622.08 2775.1 1622.6 Q2777.07 1623.1 2779.53 1625.03 Q2782.02 1626.96 2783.53 1630.12 Q2786.41 1636.24 2786.41 1646.99 Q2786.41 1657.49 2783.74 1663.22 Q2779.84 1671.58 2771.24 1671.58 Q2768 1671.58 2764.7 1669.93 Q2761.43 1668.28 2759.36 1664.31 Q2756.13 1658.37 2756.13 1646.99 M2762.1 1646.11 Q2762.1 1656.97 2762.87 1661.29 Q2763.75 1665.96 2766.14 1668 Q2768.57 1670 2771.24 1670 Q2774.12 1670 2776.51 1667.86 Q2778.93 1665.68 2779.67 1661.01 Q2780.48 1656.4 2780.44 1646.11 Q2780.44 1636.1 2779.74 1632.09 Q2778.79 1627.42 2776.26 1625.56 Q2773.77 1623.66 2771.24 1623.66 Q2770.29 1623.66 2769.27 1623.94 Q2768.28 1624.22 2766.84 1625.03 Q2765.4 1625.84 2764.28 1627.84 Q2763.19 1629.84 2762.66 1632.86 Q2762.1 1636.76 2762.1 1646.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2792.84 1668.84 Q2791.75 1667.68 2791.75 1666.17 Q2791.75 1664.66 2792.84 1663.57 Q2793.93 1662.45 2795.58 1662.45 Q2797.16 1662.45 2798.22 1663.5 Q2799.31 1664.52 2799.31 1666.21 Q2799.31 1667.86 2798.15 1668.95 Q2797.02 1670 2795.58 1670 Q2793.93 1670 2792.84 1668.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2811.55 1658.12 L2811.55 1655.91 L2833.65 1622.15 Q2834.21 1621.27 2835.09 1621.3 Q2835.9 1621.3 2836.07 1621.62 Q2836.25 1621.94 2836.25 1623.17 L2836.25 1655.91 L2843.45 1655.91 L2843.45 1658.12 L2836.25 1658.12 L2836.25 1664.38 Q2836.25 1666.45 2837.09 1667.12 Q2837.97 1667.79 2841.69 1667.79 L2843.2 1667.79 L2843.2 1670 Q2840.25 1669.79 2833.44 1669.79 Q2826.66 1669.79 2823.71 1670 L2823.71 1667.79 L2825.22 1667.79 Q2828.94 1667.79 2829.82 1667.15 Q2830.7 1666.49 2830.7 1664.38 L2830.7 1658.12 L2811.55 1658.12 M2813.59 1655.91 L2831.12 1655.91 L2831.12 1629.07 L2813.59 1655.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip410)\" d=\"M2849.19 1658.41 Q2849.19 1656.26 2850.35 1655.45 Q2851.51 1654.61 2852.74 1654.61 Q2854.39 1654.61 2855.34 1655.67 Q2856.32 1656.68 2856.32 1658.12 Q2856.32 1659.57 2855.34 1660.62 Q2854.39 1661.64 2852.74 1661.64 Q2851.93 1661.64 2851.51 1661.5 Q2852.46 1664.8 2855.34 1667.19 Q2858.25 1669.58 2862.08 1669.58 Q2866.9 1669.58 2869.78 1664.91 Q2871.5 1661.88 2871.5 1655.03 Q2871.5 1648.99 2870.2 1645.97 Q2868.2 1641.37 2864.09 1641.37 Q2858.25 1641.37 2854.81 1646.39 Q2854.39 1647.02 2853.9 1647.06 Q2853.2 1647.06 2853.02 1646.67 Q2852.88 1646.25 2852.88 1645.16 L2852.88 1623.87 Q2852.88 1622.15 2853.58 1622.15 Q2853.86 1622.15 2854.46 1622.36 Q2858.99 1624.36 2864.02 1624.4 Q2869.18 1624.4 2873.82 1622.29 Q2874.17 1622.08 2874.38 1622.08 Q2875.08 1622.08 2875.12 1622.89 Q2875.12 1623.17 2874.52 1624.01 Q2873.96 1624.82 2872.73 1625.91 Q2871.5 1626.96 2869.92 1627.98 Q2868.34 1629 2866.02 1629.7 Q2863.74 1630.37 2861.21 1630.37 Q2858.18 1630.37 2855.09 1629.42 L2855.09 1643.44 Q2858.82 1639.78 2864.23 1639.78 Q2869.99 1639.78 2873.96 1644.42 Q2877.93 1649.06 2877.93 1655.52 Q2877.93 1662.31 2873.22 1666.94 Q2868.55 1671.58 2862.22 1671.58 Q2856.46 1671.58 2852.81 1667.47 Q2849.19 1663.36 2849.19 1658.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip4110)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2389.37,2182.88 2391.23,2182.39 2393.08,2181.88 2394.93,2181.37 2396.79,2180.85 2398.64,2180.33 2400.49,2179.79 2402.34,2179.24 2404.2,2178.69 2406.05,2178.12 \n",
" 2407.9,2177.55 2409.76,2176.97 2411.61,2176.38 2413.46,2175.77 2415.31,2175.16 2417.17,2174.54 2419.02,2173.92 2420.87,2173.28 2422.73,2172.63 2424.58,2171.97 \n",
" 2426.43,2171.3 2428.28,2170.63 2430.14,2169.94 2431.99,2169.24 2433.84,2168.54 2435.7,2167.82 2437.55,2167.09 2439.4,2166.36 2441.25,2165.61 2443.11,2164.85 \n",
" 2444.96,2164.09 2446.81,2163.31 2448.67,2162.53 2450.52,2161.73 2452.37,2160.92 2454.22,2160.11 2456.08,2159.28 2457.93,2158.44 2459.78,2157.6 2461.64,2156.74 \n",
" 2463.49,2155.87 2465.34,2155 2467.19,2154.11 2469.05,2153.21 2470.9,2152.3 2472.75,2151.39 2474.61,2150.46 2476.46,2149.52 2478.31,2148.58 2480.16,2147.62 \n",
" 2482.02,2146.65 2483.87,2145.68 2485.72,2144.69 2487.58,2143.7 2489.43,2142.69 2491.28,2141.68 2493.13,2140.65 2494.99,2139.62 2496.84,2138.58 2498.69,2137.53 \n",
" 2500.55,2136.47 2502.4,2135.4 2504.25,2134.32 2506.1,2133.23 2507.96,2132.14 2509.81,2131.03 2511.66,2129.92 2513.52,2128.8 2515.37,2127.67 2517.22,2126.54 \n",
" 2519.07,2125.39 2520.93,2124.24 2522.78,2123.08 2524.63,2121.91 2526.49,2120.73 2528.34,2119.55 2530.19,2118.36 2532.04,2117.17 2533.9,2115.97 2535.75,2114.76 \n",
" 2537.6,2113.54 2539.46,2112.32 2541.31,2111.09 2543.16,2109.86 2545.01,2108.62 2546.87,2107.38 2548.72,2106.13 2550.57,2104.87 2552.43,2103.62 2554.28,2102.35 \n",
" 2556.13,2101.09 2557.99,2099.81 2559.84,2098.54 2561.69,2097.26 2563.54,2095.98 2565.4,2094.7 2567.25,2093.41 2569.1,2092.12 2570.96,2090.83 2572.81,2089.53 \n",
" 2574.66,2088.24 2576.51,2086.94 2578.37,2085.64 2580.22,2084.34 2582.07,2083.04 2583.93,2081.74 2585.78,2080.44 2587.63,2079.14 2589.48,2077.84 2591.34,2076.54 \n",
" 2593.19,2075.25 2595.04,2073.95 2596.9,2072.66 2598.75,2071.36 2600.6,2070.07 2602.45,2068.79 2604.31,2067.5 2606.16,2066.22 2608.01,2064.95 2609.87,2063.67 \n",
" 2611.72,2062.4 2613.57,2061.14 2615.42,2059.88 2617.28,2058.62 2619.13,2057.38 2620.98,2056.13 2622.84,2054.9 2624.69,2053.67 2626.54,2052.44 2628.39,2051.23 \n",
" 2630.25,2050.02 2632.1,2048.82 2633.95,2047.62 2635.81,2046.44 2637.66,2045.26 2639.51,2044.1 2641.36,2042.94 2643.22,2041.8 2645.07,2040.66 2646.92,2039.53 \n",
" 2648.78,2038.42 2650.63,2037.31 2652.48,2036.22 2654.33,2035.14 2656.19,2034.07 2658.04,2033.01 2659.89,2031.97 2661.75,2030.94 2663.6,2029.92 2665.45,2028.91 \n",
" 2667.3,2027.92 2669.16,2026.95 2671.01,2025.99 2672.86,2025.04 2674.72,2024.11 2676.57,2023.19 2678.42,2022.29 2680.27,2021.41 2682.13,2020.54 2683.98,2019.68 \n",
" 2685.83,2018.85 2687.69,2018.03 2689.54,2017.23 2691.39,2016.45 2693.24,2015.68 2695.1,2014.93 2696.95,2014.2 2698.8,2013.49 2700.66,2012.8 2702.51,2012.12 \n",
" 2704.36,2011.47 2706.21,2010.84 2708.07,2010.22 2709.92,2009.62 2711.77,2009.05 2713.63,2008.49 2715.48,2007.96 2717.33,2007.44 2719.18,2006.95 2721.04,2006.47 \n",
" 2722.89,2006.02 2724.74,2005.59 2726.6,2005.18 2728.45,2004.79 2730.3,2004.42 2732.15,2004.08 2734.01,2003.75 2735.86,2003.45 2737.71,2003.17 2739.57,2002.91 \n",
" 2741.42,2002.68 2743.27,2002.47 2745.12,2002.27 2746.98,2002.1 2748.83,2001.96 2750.68,2001.83 2752.54,2001.73 2754.39,2001.65 2756.24,2001.6 2758.09,2001.56 \n",
" 2759.95,2001.55 2761.8,2001.56 2763.65,2001.6 2765.51,2001.65 2767.36,2001.73 2769.21,2001.83 2771.06,2001.96 2772.92,2002.1 2774.77,2002.27 2776.62,2002.47 \n",
" 2778.48,2002.68 2780.33,2002.91 2782.18,2003.17 2784.04,2003.45 2785.89,2003.75 2787.74,2004.08 2789.59,2004.42 2791.45,2004.79 2793.3,2005.18 2795.15,2005.59 \n",
" 2797.01,2006.02 2798.86,2006.47 2800.71,2006.95 2802.56,2007.44 2804.42,2007.96 2806.27,2008.49 2808.12,2009.05 2809.98,2009.62 2811.83,2010.22 2813.68,2010.84 \n",
" 2815.53,2011.47 2817.39,2012.12 2819.24,2012.8 2821.09,2013.49 2822.95,2014.2 2824.8,2014.93 2826.65,2015.68 2828.5,2016.45 2830.36,2017.23 2832.21,2018.03 \n",
" 2834.06,2018.85 2835.92,2019.68 2837.77,2020.54 2839.62,2021.41 2841.47,2022.29 2843.33,2023.19 2845.18,2024.11 2847.03,2025.04 2848.89,2025.99 2850.74,2026.95 \n",
" 2852.59,2027.92 2854.44,2028.91 2856.3,2029.92 2858.15,2030.94 2860,2031.97 2861.86,2033.01 2863.71,2034.07 2865.56,2035.14 2867.41,2036.22 2869.27,2037.31 \n",
" 2871.12,2038.42 2872.97,2039.53 2874.83,2040.66 2876.68,2041.8 2878.53,2042.94 2880.38,2044.1 2882.24,2045.26 2884.09,2046.44 2885.94,2047.62 2887.8,2048.82 \n",
" 2889.65,2050.02 2891.5,2051.23 2893.35,2052.44 2895.21,2053.67 2897.06,2054.9 2898.91,2056.13 2900.77,2057.38 2902.62,2058.62 2904.47,2059.88 2906.32,2061.14 \n",
" 2908.18,2062.4 2910.03,2063.67 2911.88,2064.95 2913.74,2066.22 2915.59,2067.5 2917.44,2068.79 2919.29,2070.07 2921.15,2071.36 2923,2072.66 2924.85,2073.95 \n",
" 2926.71,2075.25 2928.56,2076.54 2930.41,2077.84 2932.26,2079.14 2934.12,2080.44 2935.97,2081.74 2937.82,2083.04 2939.68,2084.34 2941.53,2085.64 2943.38,2086.94 \n",
" 2945.23,2088.24 2947.09,2089.53 2948.94,2090.83 2950.79,2092.12 2952.65,2093.41 2954.5,2094.7 2956.35,2095.98 2958.2,2097.26 2960.06,2098.54 2961.91,2099.81 \n",
" 2963.76,2101.09 2965.62,2102.35 2967.47,2103.62 2969.32,2104.87 2971.17,2106.13 2973.03,2107.38 2974.88,2108.62 2976.73,2109.86 2978.59,2111.09 2980.44,2112.32 \n",
" 2982.29,2113.54 2984.14,2114.76 2986,2115.97 2987.85,2117.17 2989.7,2118.36 2991.56,2119.55 2993.41,2120.73 2995.26,2121.91 2997.11,2123.08 2998.97,2124.24 \n",
" 3000.82,2125.39 3002.67,2126.54 3004.53,2127.67 3006.38,2128.8 3008.23,2129.92 3010.09,2131.03 3011.94,2132.14 3013.79,2133.23 3015.64,2134.32 3017.5,2135.4 \n",
" 3019.35,2136.47 3021.2,2137.53 3023.06,2138.58 3024.91,2139.62 3026.76,2140.65 3028.61,2141.68 3030.47,2142.69 3032.32,2143.7 3034.17,2144.69 3036.03,2145.68 \n",
" 3037.88,2146.65 3039.73,2147.62 3041.58,2148.58 3043.44,2149.52 3045.29,2150.46 3047.14,2151.39 3049,2152.3 3050.85,2153.21 3052.7,2154.11 3054.55,2155 \n",
" 3056.41,2155.87 3058.26,2156.74 3060.11,2157.6 3061.97,2158.44 3063.82,2159.28 3065.67,2160.11 3067.52,2160.92 3069.38,2161.73 3071.23,2162.53 3073.08,2163.31 \n",
" 3074.94,2164.09 3076.79,2164.85 3078.64,2165.61 3080.49,2166.36 3082.35,2167.09 3084.2,2167.82 3086.05,2168.54 3087.91,2169.24 3089.76,2169.94 3091.61,2170.63 \n",
" 3093.46,2171.3 3095.32,2171.97 3097.17,2172.63 3099.02,2173.28 3100.88,2173.92 3102.73,2174.54 3104.58,2175.16 3106.43,2175.77 3108.29,2176.38 3110.14,2176.97 \n",
" 3111.99,2177.55 3113.85,2178.12 3115.7,2178.69 3117.55,2179.24 3119.4,2179.79 3121.26,2180.33 3123.11,2180.85 3124.96,2181.37 3126.82,2181.88 3128.67,2182.39 \n",
" 3130.52,2182.88 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"# 使用例3\n",
"\n",
"# using Pkg\n",
"# Pkg.add(\"LaTeXStrings\")\n",
"# Pkg.add(\"Plots\")\n",
"using LaTeXStrings\n",
"using Plots\n",
"\n",
"f(x,t;D=1,x0=0) = exp(-(x-x0)^2/(4*D*t)) / sqrt(4*D*pi*t)\n",
"\n",
"plt = plot(layout=(3,3), size=(800,600))\n",
"for i in 1:9\n",
" t = i*0.05\n",
" plot!(plt, -2:0.01:2, x->f(x,t), label=\"\", yrange=(0,1), xlabel=L\"x\", ylabel=L\"f(x,t)\", titlefontsize=12, title=latexstring(@sprintf(\"t=%0.2f\", t)), subplot=i)\n",
"end\n",
"display(plt)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 参考文献\n",
"他の言語と比較しても動作に問題はないようです.\n",
"https://alvinalexander.com/programming/printf-format-cheat-sheet/\n",
"\n",
"公式ドキュメントはこちら.\n",
"https://docs.julialang.org/en/v1/stdlib/Printf/\n",
"\n",
"この記事は簡単なメタプログラミングを用いて作成しました.\n",
"https://gist.github.com/ohno/f560726b0435aed72ecc506499017639"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.7.1",
"language": "julia",
"name": "julia-1.7"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment