{ "cells": [ { "cell_type": "markdown", "metadata": { "slideshow": { "slide_type": "slide" } }, "source": [ "# Probabilistic Programming 3: Regression and classification\n", "\n", "#### Goal \n", " - Learn how to infer a posterior distribution for a linear regression model using a probabilistic programming language.\n", " - Learn how to infer a posterior distribution for a linear classification model using a probabilistic programming language.\n", " \n", "#### Materials \n", " - Mandatory\n", " - This notebook.\n", " - Lecture notes on [regression](https://nbviewer.jupyter.org/github/bertdv/BMLIP/blob/master/lessons/notebooks/Regression.ipynb).\n", " - Lecture notes on [discriminative classification](https://nbviewer.jupyter.org/github/bertdv/BMLIP/blob/master/lessons/notebooks/Discriminative-Classification.ipynb).\n", " - Optional\n", " - Bayesian linear regression (Section 3.3 [Bishop](https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf))\n", " - Bayesian logistic regression (Section 4.5 [Bishop](https://www.microsoft.com/en-us/research/uploads/prod/2006/01/Bishop-Pattern-Recognition-and-Machine-Learning-2006.pdf))\n", " - [Cheatsheets: how does Julia differ from Matlab / Python](https://docs.julialang.org/en/v1/manual/noteworthy-differences/index.html)." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "slideshow": { "slide_type": "slide" } }, "outputs": [], "source": [ "using Pkg\n", "Pkg.activate(\"../../../lessons/\")\n", "Pkg.instantiate();\n", "IJulia.clear_output();" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Problem: Economic growth\n", "\n", "In 2008, the credit crisis sparked a recession in the US, which spread to other countries in the ensuing years. It took most countries a couple of years to recover. \n", "Now, the year is 2011. The Turkish government is asking you to estimate whether Turkey is out of the recession. You decide to look at the data of the national stock exchange to see if there's a positive trend. " ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [ "using CSV\n", "using DataFrames\n", "using LinearAlgebra\n", "using Distributions\n", "using StatsFuns\n", "using RxInfer\n", "using Plots\n", "default(label=\"\", margin=10Plots.pt)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Data\n", "\n", "We are going to start with loading in a data set. We have daily measurements from Istanbul, from the 5th of January 2009 until 22nd of February 2011. The dataset comes from an online resource for machine learning data sets: the [UCI ML Repository](https://archive.ics.uci.edu/ml/datasets/ISTANBUL+STOCK+EXCHANGE)." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ "<div><div style = \"float: left;\"><span>536×2 DataFrame</span></div><div style = \"float: right;\"><span style = \"font-style: italic;\">511 rows omitted</span></div><div style = \"clear: both;\"></div></div><div class = \"data-frame\" style = \"overflow-x: scroll;\"><table class = \"data-frame\" style = \"margin-bottom: 6px;\"><thead><tr class = \"header\"><th class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">Row</th><th style = \"text-align: left;\">date</th><th style = \"text-align: left;\">ISE</th></tr><tr class = \"subheader headerLastRow\"><th class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\"></th><th title = \"String15\" style = \"text-align: left;\">String15</th><th title = \"Float64\" style = \"text-align: left;\">Float64</th></tr></thead><tbody><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">1</td><td style = \"text-align: left;\">5-Jan-09</td><td style = \"text-align: right;\">0.0357537</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">2</td><td style = \"text-align: left;\">6-Jan-09</td><td style = \"text-align: right;\">0.0254259</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">3</td><td style = \"text-align: left;\">7-Jan-09</td><td style = \"text-align: right;\">-0.0288617</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">4</td><td style = \"text-align: left;\">8-Jan-09</td><td style = \"text-align: right;\">-0.0622081</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">5</td><td style = \"text-align: left;\">9-Jan-09</td><td style = \"text-align: right;\">0.00985991</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">6</td><td style = \"text-align: left;\">12-Jan-09</td><td style = \"text-align: right;\">-0.029191</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">7</td><td style = \"text-align: left;\">13-Jan-09</td><td style = \"text-align: right;\">0.0154453</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">8</td><td style = \"text-align: left;\">14-Jan-09</td><td style = \"text-align: right;\">-0.0411676</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">9</td><td style = \"text-align: left;\">15-Jan-09</td><td style = \"text-align: right;\">0.000661905</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">10</td><td style = \"text-align: left;\">16-Jan-09</td><td style = \"text-align: right;\">0.0220373</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">11</td><td style = \"text-align: left;\">19-Jan-09</td><td style = \"text-align: right;\">-0.0226925</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">12</td><td style = \"text-align: left;\">20-Jan-09</td><td style = \"text-align: right;\">-0.0137087</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">13</td><td style = \"text-align: left;\">21-Jan-09</td><td style = \"text-align: right;\">0.000864697</td></tr><tr><td style = \"text-align: right;\">⋮</td><td style = \"text-align: right;\">⋮</td><td style = \"text-align: right;\">⋮</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">525</td><td style = \"text-align: left;\">7-Feb-11</td><td style = \"text-align: right;\">-0.0061961</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">526</td><td style = \"text-align: left;\">8-Feb-11</td><td style = \"text-align: right;\">0.00535559</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">527</td><td style = \"text-align: left;\">9-Feb-11</td><td style = \"text-align: right;\">0.00482299</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">528</td><td style = \"text-align: left;\">10-Feb-11</td><td style = \"text-align: right;\">-0.0176644</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">529</td><td style = \"text-align: left;\">11-Feb-11</td><td style = \"text-align: right;\">0.00478229</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">530</td><td style = \"text-align: left;\">14-Feb-11</td><td style = \"text-align: right;\">-0.00249793</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">531</td><td style = \"text-align: left;\">15-Feb-11</td><td style = \"text-align: right;\">0.00360638</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">532</td><td style = \"text-align: left;\">16-Feb-11</td><td style = \"text-align: right;\">0.00859906</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">533</td><td style = \"text-align: left;\">17-Feb-11</td><td style = \"text-align: right;\">0.00931031</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">534</td><td style = \"text-align: left;\">18-Feb-11</td><td style = \"text-align: right;\">0.000190969</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">535</td><td style = \"text-align: left;\">21-Feb-11</td><td style = \"text-align: right;\">-0.013069</td></tr><tr><td class = \"rowNumber\" style = \"font-weight: bold; text-align: right;\">536</td><td style = \"text-align: left;\">22-Feb-11</td><td style = \"text-align: right;\">-0.00724632</td></tr></tbody></table></div>" ], "text/latex": [ "\\begin{tabular}{r|cc}\n", "\t& date & ISE\\\\\n", "\t\\hline\n", "\t& String15 & Float64\\\\\n", "\t\\hline\n", "\t1 & 5-Jan-09 & 0.0357537 \\\\\n", "\t2 & 6-Jan-09 & 0.0254259 \\\\\n", "\t3 & 7-Jan-09 & -0.0288617 \\\\\n", "\t4 & 8-Jan-09 & -0.0622081 \\\\\n", "\t5 & 9-Jan-09 & 0.00985991 \\\\\n", "\t6 & 12-Jan-09 & -0.029191 \\\\\n", "\t7 & 13-Jan-09 & 0.0154453 \\\\\n", "\t8 & 14-Jan-09 & -0.0411676 \\\\\n", "\t9 & 15-Jan-09 & 0.000661905 \\\\\n", "\t10 & 16-Jan-09 & 0.0220373 \\\\\n", "\t11 & 19-Jan-09 & -0.0226925 \\\\\n", "\t12 & 20-Jan-09 & -0.0137087 \\\\\n", "\t13 & 21-Jan-09 & 0.000864697 \\\\\n", "\t14 & 22-Jan-09 & -0.00381506 \\\\\n", "\t15 & 23-Jan-09 & 0.00566126 \\\\\n", "\t16 & 26-Jan-09 & 0.0468313 \\\\\n", "\t17 & 27-Jan-09 & -0.00663498 \\\\\n", "\t18 & 28-Jan-09 & 0.034567 \\\\\n", "\t19 & 29-Jan-09 & -0.0205282 \\\\\n", "\t20 & 30-Jan-09 & -0.0087767 \\\\\n", "\t21 & 2-Feb-09 & -0.0259191 \\\\\n", "\t22 & 3-Feb-09 & 0.0152795 \\\\\n", "\t23 & 4-Feb-09 & 0.0185778 \\\\\n", "\t24 & 5-Feb-09 & -0.0141329 \\\\\n", "\t25 & 6-Feb-09 & 0.036607 \\\\\n", "\t26 & 9-Feb-09 & 0.0113532 \\\\\n", "\t27 & 10-Feb-09 & -0.040542 \\\\\n", "\t28 & 11-Feb-09 & -0.0221056 \\\\\n", "\t29 & 12-Feb-09 & -0.0148884 \\\\\n", "\t30 & 13-Feb-09 & 0.00702675 \\\\\n", "\t$\\dots$ & $\\dots$ & $\\dots$ \\\\\n", "\\end{tabular}\n" ], "text/plain": [ "\u001b[1m536×2 DataFrame\u001b[0m\n", "\u001b[1m Row \u001b[0m│\u001b[1m date \u001b[0m\u001b[1m ISE \u001b[0m\n", " │\u001b[90m String15 \u001b[0m\u001b[90m Float64 \u001b[0m\n", "─────┼─────────────────────────\n", " 1 │ 5-Jan-09 0.0357537\n", " 2 │ 6-Jan-09 0.0254259\n", " 3 │ 7-Jan-09 -0.0288617\n", " 4 │ 8-Jan-09 -0.0622081\n", " 5 │ 9-Jan-09 0.00985991\n", " 6 │ 12-Jan-09 -0.029191\n", " 7 │ 13-Jan-09 0.0154453\n", " 8 │ 14-Jan-09 -0.0411676\n", " 9 │ 15-Jan-09 0.000661905\n", " 10 │ 16-Jan-09 0.0220373\n", " 11 │ 19-Jan-09 -0.0226925\n", " ⋮ │ ⋮ ⋮\n", " 527 │ 9-Feb-11 0.00482299\n", " 528 │ 10-Feb-11 -0.0176644\n", " 529 │ 11-Feb-11 0.00478229\n", " 530 │ 14-Feb-11 -0.00249793\n", " 531 │ 15-Feb-11 0.00360638\n", " 532 │ 16-Feb-11 0.00859906\n", " 533 │ 17-Feb-11 0.00931031\n", " 534 │ 18-Feb-11 0.000190969\n", " 535 │ 21-Feb-11 -0.013069\n", " 536 │ 22-Feb-11 -0.00724632\n", "\u001b[36m 515 rows omitted\u001b[0m" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Read CSV file\n", "df = DataFrame(CSV.File(\"../datasets/stock_exchange.csv\"))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can plot the evolution of the stock market values over time." ] }, { "cell_type": "code", "execution_count": 4, "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=\"300\" viewBox=\"0 0 3200 1200\">\n", "<defs>\n", " <clipPath id=\"clip030\">\n", " <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip030)\" d=\"\n", "M0 1200 L3200 1200 L3200 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip031\">\n", " <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip030)\" d=\"\n", "M313.735 1023.28 L3112.95 1023.28 L3112.95 87.0516 L313.735 87.0516 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip032\">\n", " <rect x=\"313\" y=\"87\" width=\"2800\" height=\"937\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 392.958,1023.28 392.958,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1053.15,1023.28 1053.15,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1713.34,1023.28 1713.34,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2373.53,1023.28 2373.53,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 3033.73,1023.28 3033.73,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,1023.28 3112.95,1023.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 392.958,1023.28 392.958,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1053.15,1023.28 1053.15,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1713.34,1023.28 1713.34,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2373.53,1023.28 2373.53,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3033.73,1023.28 3033.73,1004.38 \n", " \"/>\n", "<path clip-path=\"url(#clip030)\" d=\"M279.788 1088.15 L296.107 1088.15 L296.107 1092.08 L274.163 1092.08 L274.163 1088.15 Q276.825 1085.39 281.408 1080.76 Q286.014 1076.11 287.195 1074.77 Q289.44 1072.24 290.32 1070.51 Q291.223 1068.75 291.223 1067.06 Q291.223 1064.3 289.278 1062.57 Q287.357 1060.83 284.255 1060.83 Q282.056 1060.83 279.602 1061.6 Q277.172 1062.36 274.394 1063.91 L274.394 1059.19 Q277.218 1058.05 279.672 1057.48 Q282.126 1056.9 284.163 1056.9 Q289.533 1056.9 292.727 1059.58 Q295.922 1062.27 295.922 1066.76 Q295.922 1068.89 295.112 1070.81 Q294.325 1072.71 292.218 1075.3 Q291.639 1075.97 288.538 1079.19 Q285.436 1082.38 279.788 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M304.741 1057.52 L326.963 1057.52 L326.963 1059.51 L314.417 1092.08 L309.533 1092.08 L321.338 1061.46 L304.741 1061.46 L304.741 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M333.329 1077.2 L345.806 1077.2 L345.806 1080.99 L333.329 1080.99 L333.329 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M373.491 1058.66 L373.491 1063.22 Q370.829 1061.94 368.468 1061.32 Q366.107 1060.69 363.908 1060.69 Q360.088 1060.69 358.005 1062.18 Q355.945 1063.66 355.945 1066.39 Q355.945 1068.68 357.31 1069.86 Q358.699 1071.02 362.542 1071.74 L365.366 1072.31 Q370.597 1073.31 373.074 1075.83 Q375.574 1078.33 375.574 1082.55 Q375.574 1087.57 372.195 1090.16 Q368.838 1092.75 362.333 1092.75 Q359.88 1092.75 357.102 1092.2 Q354.347 1091.64 351.384 1090.55 L351.384 1085.74 Q354.232 1087.34 356.963 1088.15 Q359.695 1088.96 362.333 1088.96 Q366.338 1088.96 368.514 1087.38 Q370.69 1085.81 370.69 1082.89 Q370.69 1080.35 369.116 1078.91 Q367.565 1077.48 364 1076.76 L361.153 1076.2 Q355.921 1075.16 353.584 1072.94 Q351.246 1070.72 351.246 1066.76 Q351.246 1062.18 354.463 1059.54 Q357.704 1056.9 363.375 1056.9 Q365.806 1056.9 368.329 1057.34 Q370.852 1057.78 373.491 1058.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M404.856 1078.05 L404.856 1080.14 L385.273 1080.14 Q385.551 1084.54 387.912 1086.85 Q390.296 1089.14 394.532 1089.14 Q396.986 1089.14 399.278 1088.54 Q401.593 1087.94 403.861 1086.74 L403.861 1090.76 Q401.569 1091.74 399.162 1092.24 Q396.755 1092.75 394.278 1092.75 Q388.074 1092.75 384.44 1089.14 Q380.829 1085.53 380.829 1079.37 Q380.829 1073.01 384.255 1069.28 Q387.704 1065.53 393.537 1065.53 Q398.768 1065.53 401.801 1068.91 Q404.856 1072.27 404.856 1078.05 M400.597 1076.8 Q400.551 1073.31 398.63 1071.23 Q396.731 1069.14 393.583 1069.14 Q390.018 1069.14 387.866 1071.16 Q385.736 1073.17 385.412 1076.83 L400.597 1076.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M415.967 1088.19 L415.967 1101.94 L411.685 1101.94 L411.685 1066.16 L415.967 1066.16 L415.967 1070.09 Q417.31 1067.78 419.347 1066.67 Q421.407 1065.53 424.254 1065.53 Q428.977 1065.53 431.916 1069.28 Q434.879 1073.03 434.879 1079.14 Q434.879 1085.25 431.916 1089 Q428.977 1092.75 424.254 1092.75 Q421.407 1092.75 419.347 1091.64 Q417.31 1090.51 415.967 1088.19 M430.458 1079.14 Q430.458 1074.44 428.514 1071.78 Q426.592 1069.1 423.213 1069.1 Q419.833 1069.1 417.889 1071.78 Q415.967 1074.44 415.967 1079.14 Q415.967 1083.84 417.889 1086.53 Q419.833 1089.19 423.213 1089.19 Q426.592 1089.19 428.514 1086.53 Q430.458 1083.84 430.458 1079.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M439.787 1077.2 L452.264 1077.2 L452.264 1080.99 L439.787 1080.99 L439.787 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M460.458 1088.15 L468.097 1088.15 L468.097 1061.78 L459.787 1063.45 L459.787 1059.19 L468.05 1057.52 L472.726 1057.52 L472.726 1088.15 L480.365 1088.15 L480.365 1092.08 L460.458 1092.08 L460.458 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M499.81 1060.6 Q496.198 1060.6 494.37 1064.17 Q492.564 1067.71 492.564 1074.84 Q492.564 1081.94 494.37 1085.51 Q496.198 1089.05 499.81 1089.05 Q503.444 1089.05 505.249 1085.51 Q507.078 1081.94 507.078 1074.84 Q507.078 1067.71 505.249 1064.17 Q503.444 1060.6 499.81 1060.6 M499.81 1056.9 Q505.62 1056.9 508.675 1061.5 Q511.754 1066.09 511.754 1074.84 Q511.754 1083.56 508.675 1088.17 Q505.62 1092.75 499.81 1092.75 Q493.999 1092.75 490.921 1088.17 Q487.865 1083.56 487.865 1074.84 Q487.865 1066.09 490.921 1061.5 Q493.999 1056.9 499.81 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M964.181 1073.45 Q967.537 1074.17 969.412 1076.43 Q971.31 1078.7 971.31 1082.04 Q971.31 1087.15 967.792 1089.95 Q964.273 1092.75 957.792 1092.75 Q955.616 1092.75 953.301 1092.31 Q951.009 1091.9 948.556 1091.04 L948.556 1086.53 Q950.5 1087.66 952.815 1088.24 Q955.13 1088.82 957.653 1088.82 Q962.051 1088.82 964.343 1087.08 Q966.657 1085.35 966.657 1082.04 Q966.657 1078.98 964.505 1077.27 Q962.375 1075.53 958.556 1075.53 L954.528 1075.53 L954.528 1071.69 L958.741 1071.69 Q962.19 1071.69 964.019 1070.32 Q965.847 1068.93 965.847 1066.34 Q965.847 1063.68 963.949 1062.27 Q962.074 1060.83 958.556 1060.83 Q956.634 1060.83 954.435 1061.25 Q952.236 1061.67 949.597 1062.55 L949.597 1058.38 Q952.259 1057.64 954.574 1057.27 Q956.912 1056.9 958.972 1056.9 Q964.296 1056.9 967.398 1059.33 Q970.5 1061.74 970.5 1065.86 Q970.5 1068.73 968.857 1070.72 Q967.213 1072.68 964.181 1073.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M977.421 1077.2 L989.898 1077.2 L989.898 1080.99 L977.421 1080.99 L977.421 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M996.866 1057.52 L1003.16 1057.52 L1018.49 1086.43 L1018.49 1057.52 L1023.02 1057.52 L1023.02 1092.08 L1016.73 1092.08 L1001.4 1063.17 L1001.4 1092.08 L996.866 1092.08 L996.866 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1042.19 1069.14 Q1038.76 1069.14 1036.77 1071.83 Q1034.78 1074.49 1034.78 1079.14 Q1034.78 1083.8 1036.75 1086.48 Q1038.74 1089.14 1042.19 1089.14 Q1045.59 1089.14 1047.58 1086.46 Q1049.57 1083.77 1049.57 1079.14 Q1049.57 1074.54 1047.58 1071.85 Q1045.59 1069.14 1042.19 1069.14 M1042.19 1065.53 Q1047.75 1065.53 1050.92 1069.14 Q1054.09 1072.75 1054.09 1079.14 Q1054.09 1085.51 1050.92 1089.14 Q1047.75 1092.75 1042.19 1092.75 Q1036.61 1092.75 1033.44 1089.14 Q1030.29 1085.51 1030.29 1079.14 Q1030.29 1072.75 1033.44 1069.14 Q1036.61 1065.53 1042.19 1065.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1058.09 1066.16 L1062.61 1066.16 L1070.71 1087.92 L1078.81 1066.16 L1083.32 1066.16 L1073.6 1092.08 L1067.81 1092.08 L1058.09 1066.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1085.78 1077.2 L1098.25 1077.2 L1098.25 1080.99 L1085.78 1080.99 L1085.78 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1106.45 1088.15 L1114.09 1088.15 L1114.09 1061.78 L1105.78 1063.45 L1105.78 1059.19 L1114.04 1057.52 L1118.72 1057.52 L1118.72 1088.15 L1126.36 1088.15 L1126.36 1092.08 L1106.45 1092.08 L1106.45 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1145.8 1060.6 Q1142.19 1060.6 1140.36 1064.17 Q1138.55 1067.71 1138.55 1074.84 Q1138.55 1081.94 1140.36 1085.51 Q1142.19 1089.05 1145.8 1089.05 Q1149.43 1089.05 1151.24 1085.51 Q1153.07 1081.94 1153.07 1074.84 Q1153.07 1067.71 1151.24 1064.17 Q1149.43 1060.6 1145.8 1060.6 M1145.8 1056.9 Q1151.61 1056.9 1154.67 1061.5 Q1157.74 1066.09 1157.74 1074.84 Q1157.74 1083.56 1154.67 1088.17 Q1151.61 1092.75 1145.8 1092.75 Q1139.99 1092.75 1136.91 1088.17 Q1133.86 1083.56 1133.86 1074.84 Q1133.86 1066.09 1136.91 1061.5 Q1139.99 1056.9 1145.8 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1594.89 1088.15 L1602.53 1088.15 L1602.53 1061.78 L1594.22 1063.45 L1594.22 1059.19 L1602.49 1057.52 L1607.16 1057.52 L1607.16 1088.15 L1614.8 1088.15 L1614.8 1092.08 L1594.89 1092.08 L1594.89 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1637.09 1061.6 L1625.29 1080.05 L1637.09 1080.05 L1637.09 1061.6 M1635.87 1057.52 L1641.74 1057.52 L1641.74 1080.05 L1646.68 1080.05 L1646.68 1083.93 L1641.74 1083.93 L1641.74 1092.08 L1637.09 1092.08 L1637.09 1083.93 L1621.49 1083.93 L1621.49 1079.42 L1635.87 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1651.65 1077.2 L1664.13 1077.2 L1664.13 1080.99 L1651.65 1080.99 L1651.65 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1675.77 1061.36 L1675.77 1088.24 L1681.42 1088.24 Q1688.57 1088.24 1691.88 1085 Q1695.22 1081.76 1695.22 1074.77 Q1695.22 1067.82 1691.88 1064.61 Q1688.57 1061.36 1681.42 1061.36 L1675.77 1061.36 M1671.1 1057.52 L1680.7 1057.52 Q1690.75 1057.52 1695.45 1061.71 Q1700.15 1065.88 1700.15 1074.77 Q1700.15 1083.7 1695.43 1087.89 Q1690.7 1092.08 1680.7 1092.08 L1671.1 1092.08 L1671.1 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1729.59 1078.05 L1729.59 1080.14 L1710.01 1080.14 Q1710.29 1084.54 1712.65 1086.85 Q1715.03 1089.14 1719.27 1089.14 Q1721.72 1089.14 1724.01 1088.54 Q1726.33 1087.94 1728.6 1086.74 L1728.6 1090.76 Q1726.3 1091.74 1723.9 1092.24 Q1721.49 1092.75 1719.01 1092.75 Q1712.81 1092.75 1709.18 1089.14 Q1705.56 1085.53 1705.56 1079.37 Q1705.56 1073.01 1708.99 1069.28 Q1712.44 1065.53 1718.27 1065.53 Q1723.5 1065.53 1726.54 1068.91 Q1729.59 1072.27 1729.59 1078.05 M1725.33 1076.8 Q1725.29 1073.31 1723.36 1071.23 Q1721.47 1069.14 1718.32 1069.14 Q1714.75 1069.14 1712.6 1071.16 Q1710.47 1073.17 1710.15 1076.83 L1725.33 1076.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1755.24 1067.15 L1755.24 1071.13 Q1753.43 1070.14 1751.61 1069.65 Q1749.8 1069.14 1747.95 1069.14 Q1743.8 1069.14 1741.51 1071.78 Q1739.22 1074.4 1739.22 1079.14 Q1739.22 1083.89 1741.51 1086.53 Q1743.8 1089.14 1747.95 1089.14 Q1749.8 1089.14 1751.61 1088.66 Q1753.43 1088.15 1755.24 1087.15 L1755.24 1091.09 Q1753.46 1091.92 1751.54 1092.34 Q1749.64 1092.75 1747.49 1092.75 Q1741.63 1092.75 1738.18 1089.07 Q1734.73 1085.39 1734.73 1079.14 Q1734.73 1072.8 1738.2 1069.17 Q1741.7 1065.53 1747.76 1065.53 Q1749.73 1065.53 1751.61 1065.95 Q1753.48 1066.34 1755.24 1067.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1760.49 1077.2 L1772.97 1077.2 L1772.97 1080.99 L1760.49 1080.99 L1760.49 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1781.17 1088.15 L1788.8 1088.15 L1788.8 1061.78 L1780.49 1063.45 L1780.49 1059.19 L1788.76 1057.52 L1793.43 1057.52 L1793.43 1088.15 L1801.07 1088.15 L1801.07 1092.08 L1781.17 1092.08 L1781.17 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1820.52 1060.6 Q1816.91 1060.6 1815.08 1064.17 Q1813.27 1067.71 1813.27 1074.84 Q1813.27 1081.94 1815.08 1085.51 Q1816.91 1089.05 1820.52 1089.05 Q1824.15 1089.05 1825.96 1085.51 Q1827.79 1081.94 1827.79 1074.84 Q1827.79 1067.71 1825.96 1064.17 Q1824.15 1060.6 1820.52 1060.6 M1820.52 1056.9 Q1826.33 1056.9 1829.38 1061.5 Q1832.46 1066.09 1832.46 1074.84 Q1832.46 1083.56 1829.38 1088.17 Q1826.33 1092.75 1820.52 1092.75 Q1814.71 1092.75 1811.63 1088.17 Q1808.57 1083.56 1808.57 1074.84 Q1808.57 1066.09 1811.63 1061.5 Q1814.71 1056.9 1820.52 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2263.71 1088.15 L2271.35 1088.15 L2271.35 1061.78 L2263.04 1063.45 L2263.04 1059.19 L2271.3 1057.52 L2275.98 1057.52 L2275.98 1088.15 L2283.62 1088.15 L2283.62 1092.08 L2263.71 1092.08 L2263.71 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2303.06 1075.67 Q2299.73 1075.67 2297.8 1077.45 Q2295.91 1079.24 2295.91 1082.36 Q2295.91 1085.49 2297.8 1087.27 Q2299.73 1089.05 2303.06 1089.05 Q2306.39 1089.05 2308.31 1087.27 Q2310.24 1085.46 2310.24 1082.36 Q2310.24 1079.24 2308.31 1077.45 Q2306.42 1075.67 2303.06 1075.67 M2298.38 1073.68 Q2295.37 1072.94 2293.68 1070.88 Q2292.02 1068.82 2292.02 1065.86 Q2292.02 1061.71 2294.96 1059.3 Q2297.92 1056.9 2303.06 1056.9 Q2308.22 1056.9 2311.16 1059.3 Q2314.1 1061.71 2314.1 1065.86 Q2314.1 1068.82 2312.41 1070.88 Q2310.74 1072.94 2307.76 1073.68 Q2311.14 1074.47 2313.01 1076.76 Q2314.91 1079.05 2314.91 1082.36 Q2314.91 1087.38 2311.83 1090.07 Q2308.78 1092.75 2303.06 1092.75 Q2297.34 1092.75 2294.26 1090.07 Q2291.21 1087.38 2291.21 1082.36 Q2291.21 1079.05 2293.11 1076.76 Q2295 1074.47 2298.38 1073.68 M2296.67 1066.3 Q2296.67 1068.98 2298.34 1070.49 Q2300.03 1071.99 2303.06 1071.99 Q2306.07 1071.99 2307.76 1070.49 Q2309.47 1068.98 2309.47 1066.3 Q2309.47 1063.61 2307.76 1062.11 Q2306.07 1060.6 2303.06 1060.6 Q2300.03 1060.6 2298.34 1062.11 Q2296.67 1063.61 2296.67 1066.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2320.47 1077.2 L2332.94 1077.2 L2332.94 1080.99 L2320.47 1080.99 L2320.47 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2342.55 1057.52 L2347.23 1057.52 L2347.23 1089.67 Q2347.23 1095.92 2344.84 1098.75 Q2342.48 1101.57 2337.23 1101.57 L2335.44 1101.57 L2335.44 1097.64 L2336.9 1097.64 Q2340 1097.64 2341.28 1095.9 Q2342.55 1094.17 2342.55 1089.67 L2342.55 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2368.13 1079.05 Q2362.97 1079.05 2360.98 1080.23 Q2358.99 1081.41 2358.99 1084.26 Q2358.99 1086.53 2360.47 1087.87 Q2361.97 1089.19 2364.54 1089.19 Q2368.08 1089.19 2370.21 1086.69 Q2372.36 1084.17 2372.36 1080 L2372.36 1079.05 L2368.13 1079.05 M2376.62 1077.29 L2376.62 1092.08 L2372.36 1092.08 L2372.36 1088.15 Q2370.91 1090.51 2368.73 1091.64 Q2366.55 1092.75 2363.41 1092.75 Q2359.42 1092.75 2357.06 1090.53 Q2354.73 1088.29 2354.73 1084.54 Q2354.73 1080.16 2357.64 1077.94 Q2360.58 1075.72 2366.39 1075.72 L2372.36 1075.72 L2372.36 1075.3 Q2372.36 1072.36 2370.42 1070.76 Q2368.5 1069.14 2365 1069.14 Q2362.78 1069.14 2360.67 1069.68 Q2358.57 1070.21 2356.62 1071.27 L2356.62 1067.34 Q2358.96 1066.43 2361.16 1065.99 Q2363.36 1065.53 2365.44 1065.53 Q2371.07 1065.53 2373.85 1068.45 Q2376.62 1071.36 2376.62 1077.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2406.95 1076.43 L2406.95 1092.08 L2402.69 1092.08 L2402.69 1076.57 Q2402.69 1072.89 2401.25 1071.06 Q2399.82 1069.24 2396.95 1069.24 Q2393.5 1069.24 2391.51 1071.43 Q2389.52 1073.63 2389.52 1077.43 L2389.52 1092.08 L2385.23 1092.08 L2385.23 1066.16 L2389.52 1066.16 L2389.52 1070.18 Q2391.05 1067.85 2393.11 1066.69 Q2395.19 1065.53 2397.9 1065.53 Q2402.36 1065.53 2404.66 1068.31 Q2406.95 1071.06 2406.95 1076.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2413.29 1077.2 L2425.77 1077.2 L2425.77 1080.99 L2413.29 1080.99 L2413.29 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2433.96 1088.15 L2441.6 1088.15 L2441.6 1061.78 L2433.29 1063.45 L2433.29 1059.19 L2441.55 1057.52 L2446.23 1057.52 L2446.23 1088.15 L2453.87 1088.15 L2453.87 1092.08 L2433.96 1092.08 L2433.96 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2464.12 1088.15 L2471.76 1088.15 L2471.76 1061.78 L2463.45 1063.45 L2463.45 1059.19 L2471.72 1057.52 L2476.39 1057.52 L2476.39 1088.15 L2484.03 1088.15 L2484.03 1092.08 L2464.12 1092.08 L2464.12 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2923.88 1088.15 L2940.2 1088.15 L2940.2 1092.08 L2918.25 1092.08 L2918.25 1088.15 Q2920.91 1085.39 2925.5 1080.76 Q2930.1 1076.11 2931.28 1074.77 Q2933.53 1072.24 2934.41 1070.51 Q2935.31 1068.75 2935.31 1067.06 Q2935.31 1064.3 2933.37 1062.57 Q2931.45 1060.83 2928.34 1060.83 Q2926.14 1060.83 2923.69 1061.6 Q2921.26 1062.36 2918.48 1063.91 L2918.48 1059.19 Q2921.31 1058.05 2923.76 1057.48 Q2926.21 1056.9 2928.25 1056.9 Q2933.62 1056.9 2936.82 1059.58 Q2940.01 1062.27 2940.01 1066.76 Q2940.01 1068.89 2939.2 1070.81 Q2938.41 1072.71 2936.31 1075.3 Q2935.73 1075.97 2932.63 1079.19 Q2929.52 1082.38 2923.88 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2954.04 1088.15 L2970.36 1088.15 L2970.36 1092.08 L2948.41 1092.08 L2948.41 1088.15 Q2951.08 1085.39 2955.66 1080.76 Q2960.27 1076.11 2961.45 1074.77 Q2963.69 1072.24 2964.57 1070.51 Q2965.47 1068.75 2965.47 1067.06 Q2965.47 1064.3 2963.53 1062.57 Q2961.61 1060.83 2958.51 1060.83 Q2956.31 1060.83 2953.85 1061.6 Q2951.42 1062.36 2948.64 1063.91 L2948.64 1059.19 Q2951.47 1058.05 2953.92 1057.48 Q2956.38 1056.9 2958.41 1056.9 Q2963.78 1056.9 2966.98 1059.58 Q2970.17 1062.27 2970.17 1066.76 Q2970.17 1068.89 2969.36 1070.81 Q2968.58 1072.71 2966.47 1075.3 Q2965.89 1075.97 2962.79 1079.19 Q2959.69 1082.38 2954.04 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2977.42 1077.2 L2989.89 1077.2 L2989.89 1080.99 L2977.42 1080.99 L2977.42 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M2996.86 1057.52 L3016.72 1057.52 L3016.72 1061.46 L3001.54 1061.46 L3001.54 1071.64 L3015.24 1071.64 L3015.24 1075.58 L3001.54 1075.58 L3001.54 1092.08 L2996.86 1092.08 L2996.86 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M3043.53 1078.05 L3043.53 1080.14 L3023.95 1080.14 Q3024.22 1084.54 3026.58 1086.85 Q3028.97 1089.14 3033.2 1089.14 Q3035.66 1089.14 3037.95 1088.54 Q3040.26 1087.94 3042.53 1086.74 L3042.53 1090.76 Q3040.24 1091.74 3037.83 1092.24 Q3035.43 1092.75 3032.95 1092.75 Q3026.75 1092.75 3023.11 1089.14 Q3019.5 1085.53 3019.5 1079.37 Q3019.5 1073.01 3022.93 1069.28 Q3026.38 1065.53 3032.21 1065.53 Q3037.44 1065.53 3040.47 1068.91 Q3043.53 1072.27 3043.53 1078.05 M3039.27 1076.8 Q3039.22 1073.31 3037.3 1071.23 Q3035.4 1069.14 3032.26 1069.14 Q3028.69 1069.14 3026.54 1071.16 Q3024.41 1073.17 3024.08 1076.83 L3039.27 1076.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M3069.13 1079.14 Q3069.13 1074.44 3067.19 1071.78 Q3065.26 1069.1 3061.88 1069.1 Q3058.51 1069.1 3056.56 1071.78 Q3054.64 1074.44 3054.64 1079.14 Q3054.64 1083.84 3056.56 1086.53 Q3058.51 1089.19 3061.88 1089.19 Q3065.26 1089.19 3067.19 1086.53 Q3069.13 1083.84 3069.13 1079.14 M3054.64 1070.09 Q3055.98 1067.78 3058.02 1066.67 Q3060.08 1065.53 3062.93 1065.53 Q3067.65 1065.53 3070.59 1069.28 Q3073.55 1073.03 3073.55 1079.14 Q3073.55 1085.25 3070.59 1089 Q3067.65 1092.75 3062.93 1092.75 Q3060.08 1092.75 3058.02 1091.64 Q3055.98 1090.51 3054.64 1088.19 L3054.64 1092.08 L3050.36 1092.08 L3050.36 1056.06 L3054.64 1056.06 L3054.64 1070.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M3078.46 1077.2 L3090.94 1077.2 L3090.94 1080.99 L3078.46 1080.99 L3078.46 1077.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M3099.13 1088.15 L3106.77 1088.15 L3106.77 1061.78 L3098.46 1063.45 L3098.46 1059.19 L3106.72 1057.52 L3111.4 1057.52 L3111.4 1088.15 L3119.04 1088.15 L3119.04 1092.08 L3099.13 1092.08 L3099.13 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M3129.29 1088.15 L3136.93 1088.15 L3136.93 1061.78 L3128.62 1063.45 L3128.62 1059.19 L3136.88 1057.52 L3141.56 1057.52 L3141.56 1088.15 L3149.2 1088.15 L3149.2 1092.08 L3129.29 1092.08 L3129.29 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1540.85 1134.38 L1540.85 1144.5 L1552.91 1144.5 L1552.91 1149.05 L1540.85 1149.05 L1540.85 1168.4 Q1540.85 1172.76 1542.02 1174 Q1543.23 1175.24 1546.89 1175.24 L1552.91 1175.24 L1552.91 1180.15 L1546.89 1180.15 Q1540.12 1180.15 1537.54 1177.63 Q1534.96 1175.09 1534.96 1168.4 L1534.96 1149.05 L1530.66 1149.05 L1530.66 1144.5 L1534.96 1144.5 L1534.96 1134.38 L1540.85 1134.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1560.61 1144.5 L1566.47 1144.5 L1566.47 1180.15 L1560.61 1180.15 L1560.61 1144.5 M1560.61 1130.62 L1566.47 1130.62 L1566.47 1138.04 L1560.61 1138.04 L1560.61 1130.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1606.48 1151.34 Q1608.67 1147.39 1611.73 1145.52 Q1614.78 1143.64 1618.92 1143.64 Q1624.49 1143.64 1627.52 1147.55 Q1630.54 1151.44 1630.54 1158.63 L1630.54 1180.15 L1624.65 1180.15 L1624.65 1158.82 Q1624.65 1153.7 1622.84 1151.21 Q1621.02 1148.73 1617.3 1148.73 Q1612.75 1148.73 1610.11 1151.76 Q1607.46 1154.78 1607.46 1160 L1607.46 1180.15 L1601.58 1180.15 L1601.58 1158.82 Q1601.58 1153.66 1599.76 1151.21 Q1597.95 1148.73 1594.16 1148.73 Q1589.67 1148.73 1587.03 1151.79 Q1584.39 1154.81 1584.39 1160 L1584.39 1180.15 L1578.5 1180.15 L1578.5 1144.5 L1584.39 1144.5 L1584.39 1150.04 Q1586.39 1146.76 1589.19 1145.2 Q1592 1143.64 1595.85 1143.64 Q1599.73 1143.64 1602.44 1145.61 Q1605.17 1147.59 1606.48 1151.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1672.71 1160.86 L1672.71 1163.72 L1645.79 1163.72 Q1646.17 1169.77 1649.41 1172.95 Q1652.69 1176.1 1658.52 1176.1 Q1661.89 1176.1 1665.04 1175.28 Q1668.22 1174.45 1671.34 1172.79 L1671.34 1178.33 Q1668.19 1179.67 1664.88 1180.37 Q1661.57 1181.07 1658.17 1181.07 Q1649.64 1181.07 1644.64 1176.1 Q1639.67 1171.14 1639.67 1162.67 Q1639.67 1153.92 1644.39 1148.8 Q1649.13 1143.64 1657.15 1143.64 Q1664.34 1143.64 1668.51 1148.29 Q1672.71 1152.9 1672.71 1160.86 M1666.86 1159.14 Q1666.79 1154.33 1664.15 1151.47 Q1661.54 1148.6 1657.21 1148.6 Q1652.31 1148.6 1649.35 1151.37 Q1646.42 1154.14 1645.98 1159.17 L1666.86 1159.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1717.11 1130.68 Q1712.85 1138.01 1710.78 1145.17 Q1708.71 1152.33 1708.71 1159.68 Q1708.71 1167.03 1710.78 1174.26 Q1712.88 1181.45 1717.11 1188.74 L1712.02 1188.74 Q1707.25 1181.26 1704.86 1174.04 Q1702.5 1166.81 1702.5 1159.68 Q1702.5 1152.58 1704.86 1145.39 Q1707.21 1138.2 1712.02 1130.68 L1717.11 1130.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1751.93 1149.91 L1751.93 1130.62 L1757.79 1130.62 L1757.79 1180.15 L1751.93 1180.15 L1751.93 1174.8 Q1750.09 1177.98 1747.26 1179.54 Q1744.45 1181.07 1740.51 1181.07 Q1734.05 1181.07 1729.97 1175.91 Q1725.93 1170.76 1725.93 1162.35 Q1725.93 1153.95 1729.97 1148.8 Q1734.05 1143.64 1740.51 1143.64 Q1744.45 1143.64 1747.26 1145.2 Q1750.09 1146.73 1751.93 1149.91 M1731.98 1162.35 Q1731.98 1168.82 1734.62 1172.51 Q1737.29 1176.17 1741.94 1176.17 Q1746.59 1176.17 1749.26 1172.51 Q1751.93 1168.82 1751.93 1162.35 Q1751.93 1155.89 1749.26 1152.23 Q1746.59 1148.54 1741.94 1148.54 Q1737.29 1148.54 1734.62 1152.23 Q1731.98 1155.89 1731.98 1162.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1786.05 1162.23 Q1778.96 1162.23 1776.22 1163.85 Q1773.48 1165.47 1773.48 1169.39 Q1773.48 1172.51 1775.52 1174.35 Q1777.59 1176.17 1781.12 1176.17 Q1785.99 1176.17 1788.92 1172.73 Q1791.88 1169.26 1791.88 1163.53 L1791.88 1162.23 L1786.05 1162.23 M1797.74 1159.81 L1797.74 1180.15 L1791.88 1180.15 L1791.88 1174.74 Q1789.87 1177.98 1786.88 1179.54 Q1783.89 1181.07 1779.56 1181.07 Q1774.09 1181.07 1770.84 1178.01 Q1767.63 1174.93 1767.63 1169.77 Q1767.63 1163.75 1771.64 1160.7 Q1775.68 1157.64 1783.67 1157.64 L1791.88 1157.64 L1791.88 1157.07 Q1791.88 1153.03 1789.21 1150.83 Q1786.56 1148.6 1781.76 1148.6 Q1778.7 1148.6 1775.81 1149.34 Q1772.91 1150.07 1770.24 1151.53 L1770.24 1146.12 Q1773.45 1144.88 1776.47 1144.28 Q1779.5 1143.64 1782.36 1143.64 Q1790.1 1143.64 1793.92 1147.65 Q1797.74 1151.66 1797.74 1159.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1824.63 1183.46 Q1822.15 1189.82 1819.79 1191.76 Q1817.44 1193.71 1813.49 1193.71 L1808.81 1193.71 L1808.81 1188.8 L1812.25 1188.8 Q1814.67 1188.8 1816 1187.66 Q1817.34 1186.51 1818.96 1182.25 L1820.02 1179.57 L1805.6 1144.5 L1811.8 1144.5 L1822.94 1172.38 L1834.08 1144.5 L1840.29 1144.5 L1824.63 1183.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1871.1 1145.55 L1871.1 1151.09 Q1868.62 1149.81 1865.94 1149.18 Q1863.27 1148.54 1860.41 1148.54 Q1856.05 1148.54 1853.85 1149.88 Q1851.68 1151.21 1851.68 1153.89 Q1851.68 1155.92 1853.24 1157.1 Q1854.8 1158.25 1859.51 1159.3 L1861.52 1159.74 Q1867.76 1161.08 1870.37 1163.53 Q1873.01 1165.95 1873.01 1170.31 Q1873.01 1175.28 1869.06 1178.17 Q1865.15 1181.07 1858.27 1181.07 Q1855.41 1181.07 1852.29 1180.5 Q1849.2 1179.96 1845.76 1178.84 L1845.76 1172.79 Q1849.01 1174.48 1852.16 1175.34 Q1855.31 1176.17 1858.4 1176.17 Q1862.54 1176.17 1864.77 1174.77 Q1866.99 1173.34 1866.99 1170.76 Q1866.99 1168.37 1865.37 1167.1 Q1863.78 1165.82 1858.34 1164.65 L1856.3 1164.17 Q1850.86 1163.02 1848.44 1160.67 Q1846.02 1158.28 1846.02 1154.14 Q1846.02 1149.11 1849.58 1146.38 Q1853.15 1143.64 1859.71 1143.64 Q1862.95 1143.64 1865.82 1144.12 Q1868.68 1144.59 1871.1 1145.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M1881.41 1130.68 L1886.5 1130.68 Q1891.28 1138.2 1893.63 1145.39 Q1896.02 1152.58 1896.02 1159.68 Q1896.02 1166.81 1893.63 1174.04 Q1891.28 1181.26 1886.5 1188.74 L1881.41 1188.74 Q1885.65 1181.45 1887.71 1174.26 Q1889.82 1167.03 1889.82 1159.68 Q1889.82 1152.33 1887.71 1145.17 Q1885.65 1138.01 1881.41 1130.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,971.176 3112.95,971.176 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,835.016 3112.95,835.016 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,698.855 3112.95,698.855 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,562.694 3112.95,562.694 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,426.534 3112.95,426.534 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,290.373 3112.95,290.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip032)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 313.735,154.212 3112.95,154.212 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,1023.28 313.735,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,971.176 332.633,971.176 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,835.016 332.633,835.016 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,698.855 332.633,698.855 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,562.694 332.633,562.694 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,426.534 332.633,426.534 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,290.373 332.633,290.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 313.735,154.212 332.633,154.212 \n", " \"/>\n", "<path clip-path=\"url(#clip030)\" d=\"M129.278 971.628 L158.953 971.628 L158.953 975.563 L129.278 975.563 L129.278 971.628 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.046 956.975 Q175.435 956.975 173.606 960.54 Q171.801 964.082 171.801 971.211 Q171.801 978.318 173.606 981.882 Q175.435 985.424 179.046 985.424 Q182.68 985.424 184.486 981.882 Q186.314 978.318 186.314 971.211 Q186.314 964.082 184.486 960.54 Q182.68 956.975 179.046 956.975 M179.046 953.271 Q184.856 953.271 187.912 957.878 Q190.99 962.461 190.99 971.211 Q190.99 979.938 187.912 984.544 Q184.856 989.128 179.046 989.128 Q173.236 989.128 170.157 984.544 Q167.102 979.938 167.102 971.211 Q167.102 962.461 170.157 957.878 Q173.236 953.271 179.046 953.271 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M199.208 982.577 L204.092 982.577 L204.092 988.456 L199.208 988.456 L199.208 982.577 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M224.277 956.975 Q220.666 956.975 218.837 960.54 Q217.032 964.082 217.032 971.211 Q217.032 978.318 218.837 981.882 Q220.666 985.424 224.277 985.424 Q227.911 985.424 229.717 981.882 Q231.546 978.318 231.546 971.211 Q231.546 964.082 229.717 960.54 Q227.911 956.975 224.277 956.975 M224.277 953.271 Q230.087 953.271 233.143 957.878 Q236.222 962.461 236.222 971.211 Q236.222 979.938 233.143 984.544 Q230.087 989.128 224.277 989.128 Q218.467 989.128 215.388 984.544 Q212.333 979.938 212.333 971.211 Q212.333 962.461 215.388 957.878 Q218.467 953.271 224.277 953.271 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M258.606 969.822 Q261.962 970.54 263.837 972.808 Q265.735 975.077 265.735 978.41 Q265.735 983.526 262.217 986.327 Q258.698 989.128 252.217 989.128 Q250.041 989.128 247.726 988.688 Q245.434 988.271 242.981 987.415 L242.981 982.901 Q244.925 984.035 247.24 984.614 Q249.555 985.193 252.078 985.193 Q256.476 985.193 258.768 983.456 Q261.083 981.72 261.083 978.41 Q261.083 975.355 258.93 973.642 Q256.8 971.906 252.981 971.906 L248.953 971.906 L248.953 968.063 L253.166 968.063 Q256.615 968.063 258.444 966.697 Q260.272 965.308 260.272 962.716 Q260.272 960.054 258.374 958.642 Q256.499 957.207 252.981 957.207 Q251.059 957.207 248.86 957.623 Q246.661 958.04 244.022 958.92 L244.022 954.753 Q246.684 954.012 248.999 953.642 Q251.337 953.271 253.397 953.271 Q258.721 953.271 261.823 955.702 Q264.925 958.109 264.925 962.23 Q264.925 965.1 263.282 967.091 Q261.638 969.058 258.606 969.822 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M130.227 835.467 L159.903 835.467 L159.903 839.402 L130.227 839.402 L130.227 835.467 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.995 820.814 Q176.384 820.814 174.555 824.379 Q172.75 827.921 172.75 835.05 Q172.75 842.157 174.555 845.722 Q176.384 849.263 179.995 849.263 Q183.629 849.263 185.435 845.722 Q187.263 842.157 187.263 835.05 Q187.263 827.921 185.435 824.379 Q183.629 820.814 179.995 820.814 M179.995 817.111 Q185.805 817.111 188.861 821.717 Q191.939 826.3 191.939 835.05 Q191.939 843.777 188.861 848.384 Q185.805 852.967 179.995 852.967 Q174.185 852.967 171.106 848.384 Q168.051 843.777 168.051 835.05 Q168.051 826.3 171.106 821.717 Q174.185 817.111 179.995 817.111 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M200.157 846.416 L205.041 846.416 L205.041 852.296 L200.157 852.296 L200.157 846.416 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M225.226 820.814 Q221.615 820.814 219.786 824.379 Q217.981 827.921 217.981 835.05 Q217.981 842.157 219.786 845.722 Q221.615 849.263 225.226 849.263 Q228.86 849.263 230.666 845.722 Q232.495 842.157 232.495 835.05 Q232.495 827.921 230.666 824.379 Q228.86 820.814 225.226 820.814 M225.226 817.111 Q231.036 817.111 234.092 821.717 Q237.171 826.3 237.171 835.05 Q237.171 843.777 234.092 848.384 Q231.036 852.967 225.226 852.967 Q219.416 852.967 216.337 848.384 Q213.282 843.777 213.282 835.05 Q213.282 826.3 216.337 821.717 Q219.416 817.111 225.226 817.111 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M249.416 848.361 L265.735 848.361 L265.735 852.296 L243.791 852.296 L243.791 848.361 Q246.453 845.606 251.036 840.976 Q255.643 836.324 256.823 834.981 Q259.069 832.458 259.948 830.722 Q260.851 828.963 260.851 827.273 Q260.851 824.518 258.907 822.782 Q256.985 821.046 253.883 821.046 Q251.684 821.046 249.231 821.81 Q246.8 822.574 244.022 824.125 L244.022 819.402 Q246.846 818.268 249.3 817.689 Q251.754 817.111 253.791 817.111 Q259.161 817.111 262.356 819.796 Q265.55 822.481 265.55 826.972 Q265.55 829.101 264.74 831.023 Q263.953 832.921 261.846 835.513 Q261.268 836.185 258.166 839.402 Q255.064 842.597 249.416 848.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M129.856 699.306 L159.532 699.306 L159.532 703.242 L129.856 703.242 L129.856 699.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.625 684.654 Q176.014 684.654 174.185 688.218 Q172.379 691.76 172.379 698.89 Q172.379 705.996 174.185 709.561 Q176.014 713.103 179.625 713.103 Q183.259 713.103 185.064 709.561 Q186.893 705.996 186.893 698.89 Q186.893 691.76 185.064 688.218 Q183.259 684.654 179.625 684.654 M179.625 680.95 Q185.435 680.95 188.49 685.556 Q191.569 690.14 191.569 698.89 Q191.569 707.617 188.49 712.223 Q185.435 716.806 179.625 716.806 Q173.814 716.806 170.736 712.223 Q167.68 707.617 167.68 698.89 Q167.68 690.14 170.736 685.556 Q173.814 680.95 179.625 680.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M199.787 710.255 L204.671 710.255 L204.671 716.135 L199.787 716.135 L199.787 710.255 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M224.856 684.654 Q221.245 684.654 219.416 688.218 Q217.611 691.76 217.611 698.89 Q217.611 705.996 219.416 709.561 Q221.245 713.103 224.856 713.103 Q228.49 713.103 230.296 709.561 Q232.124 705.996 232.124 698.89 Q232.124 691.76 230.296 688.218 Q228.49 684.654 224.856 684.654 M224.856 680.95 Q230.666 680.95 233.722 685.556 Q236.8 690.14 236.8 698.89 Q236.8 707.617 233.722 712.223 Q230.666 716.806 224.856 716.806 Q219.046 716.806 215.967 712.223 Q212.911 707.617 212.911 698.89 Q212.911 690.14 215.967 685.556 Q219.046 680.95 224.856 680.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M245.828 712.2 L253.467 712.2 L253.467 685.834 L245.157 687.501 L245.157 683.242 L253.421 681.575 L258.096 681.575 L258.096 712.2 L265.735 712.2 L265.735 716.135 L245.828 716.135 L245.828 712.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M178.398 548.493 Q174.787 548.493 172.958 552.058 Q171.152 555.599 171.152 562.729 Q171.152 569.835 172.958 573.4 Q174.787 576.942 178.398 576.942 Q182.032 576.942 183.838 573.4 Q185.666 569.835 185.666 562.729 Q185.666 555.599 183.838 552.058 Q182.032 548.493 178.398 548.493 M178.398 544.789 Q184.208 544.789 187.263 549.396 Q190.342 553.979 190.342 562.729 Q190.342 571.456 187.263 576.062 Q184.208 580.646 178.398 580.646 Q172.588 580.646 169.509 576.062 Q166.453 571.456 166.453 562.729 Q166.453 553.979 169.509 549.396 Q172.588 544.789 178.398 544.789 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M198.56 574.095 L203.444 574.095 L203.444 579.974 L198.56 579.974 L198.56 574.095 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M223.629 548.493 Q220.018 548.493 218.189 552.058 Q216.384 555.599 216.384 562.729 Q216.384 569.835 218.189 573.4 Q220.018 576.942 223.629 576.942 Q227.263 576.942 229.069 573.4 Q230.898 569.835 230.898 562.729 Q230.898 555.599 229.069 552.058 Q227.263 548.493 223.629 548.493 M223.629 544.789 Q229.439 544.789 232.495 549.396 Q235.573 553.979 235.573 562.729 Q235.573 571.456 232.495 576.062 Q229.439 580.646 223.629 580.646 Q217.819 580.646 214.74 576.062 Q211.685 571.456 211.685 562.729 Q211.685 553.979 214.74 549.396 Q217.819 544.789 223.629 544.789 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M253.791 548.493 Q250.18 548.493 248.351 552.058 Q246.546 555.599 246.546 562.729 Q246.546 569.835 248.351 573.4 Q250.18 576.942 253.791 576.942 Q257.425 576.942 259.231 573.4 Q261.059 569.835 261.059 562.729 Q261.059 555.599 259.231 552.058 Q257.425 548.493 253.791 548.493 M253.791 544.789 Q259.601 544.789 262.657 549.396 Q265.735 553.979 265.735 562.729 Q265.735 571.456 262.657 576.062 Q259.601 580.646 253.791 580.646 Q247.981 580.646 244.902 576.062 Q241.847 571.456 241.847 562.729 Q241.847 553.979 244.902 549.396 Q247.981 544.789 253.791 544.789 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.625 412.332 Q176.014 412.332 174.185 415.897 Q172.379 419.439 172.379 426.568 Q172.379 433.675 174.185 437.24 Q176.014 440.781 179.625 440.781 Q183.259 440.781 185.064 437.24 Q186.893 433.675 186.893 426.568 Q186.893 419.439 185.064 415.897 Q183.259 412.332 179.625 412.332 M179.625 408.629 Q185.435 408.629 188.49 413.235 Q191.569 417.818 191.569 426.568 Q191.569 435.295 188.49 439.902 Q185.435 444.485 179.625 444.485 Q173.814 444.485 170.736 439.902 Q167.68 435.295 167.68 426.568 Q167.68 417.818 170.736 413.235 Q173.814 408.629 179.625 408.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M199.787 437.934 L204.671 437.934 L204.671 443.814 L199.787 443.814 L199.787 437.934 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M224.856 412.332 Q221.245 412.332 219.416 415.897 Q217.611 419.439 217.611 426.568 Q217.611 433.675 219.416 437.24 Q221.245 440.781 224.856 440.781 Q228.49 440.781 230.296 437.24 Q232.124 433.675 232.124 426.568 Q232.124 419.439 230.296 415.897 Q228.49 412.332 224.856 412.332 M224.856 408.629 Q230.666 408.629 233.722 413.235 Q236.8 417.818 236.8 426.568 Q236.8 435.295 233.722 439.902 Q230.666 444.485 224.856 444.485 Q219.046 444.485 215.967 439.902 Q212.911 435.295 212.911 426.568 Q212.911 417.818 215.967 413.235 Q219.046 408.629 224.856 408.629 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M245.828 439.878 L253.467 439.878 L253.467 413.513 L245.157 415.179 L245.157 410.92 L253.421 409.254 L258.096 409.254 L258.096 439.878 L265.735 439.878 L265.735 443.814 L245.828 443.814 L245.828 439.878 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.995 276.172 Q176.384 276.172 174.555 279.736 Q172.75 283.278 172.75 290.408 Q172.75 297.514 174.555 301.079 Q176.384 304.62 179.995 304.62 Q183.629 304.62 185.435 301.079 Q187.263 297.514 187.263 290.408 Q187.263 283.278 185.435 279.736 Q183.629 276.172 179.995 276.172 M179.995 272.468 Q185.805 272.468 188.861 277.074 Q191.939 281.658 191.939 290.408 Q191.939 299.134 188.861 303.741 Q185.805 308.324 179.995 308.324 Q174.185 308.324 171.106 303.741 Q168.051 299.134 168.051 290.408 Q168.051 281.658 171.106 277.074 Q174.185 272.468 179.995 272.468 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M200.157 301.773 L205.041 301.773 L205.041 307.653 L200.157 307.653 L200.157 301.773 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M225.226 276.172 Q221.615 276.172 219.786 279.736 Q217.981 283.278 217.981 290.408 Q217.981 297.514 219.786 301.079 Q221.615 304.62 225.226 304.62 Q228.86 304.62 230.666 301.079 Q232.495 297.514 232.495 290.408 Q232.495 283.278 230.666 279.736 Q228.86 276.172 225.226 276.172 M225.226 272.468 Q231.036 272.468 234.092 277.074 Q237.171 281.658 237.171 290.408 Q237.171 299.134 234.092 303.741 Q231.036 308.324 225.226 308.324 Q219.416 308.324 216.337 303.741 Q213.282 299.134 213.282 290.408 Q213.282 281.658 216.337 277.074 Q219.416 272.468 225.226 272.468 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M249.416 303.718 L265.735 303.718 L265.735 307.653 L243.791 307.653 L243.791 303.718 Q246.453 300.963 251.036 296.333 Q255.643 291.681 256.823 290.338 Q259.069 287.815 259.948 286.079 Q260.851 284.32 260.851 282.63 Q260.851 279.875 258.907 278.139 Q256.985 276.403 253.883 276.403 Q251.684 276.403 249.231 277.167 Q246.8 277.931 244.022 279.482 L244.022 274.76 Q246.846 273.625 249.3 273.047 Q251.754 272.468 253.791 272.468 Q259.161 272.468 262.356 275.153 Q265.55 277.838 265.55 282.329 Q265.55 284.459 264.74 286.38 Q263.953 288.278 261.846 290.871 Q261.268 291.542 258.166 294.759 Q255.064 297.954 249.416 303.718 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M179.046 140.011 Q175.435 140.011 173.606 143.576 Q171.801 147.117 171.801 154.247 Q171.801 161.353 173.606 164.918 Q175.435 168.46 179.046 168.46 Q182.68 168.46 184.486 164.918 Q186.314 161.353 186.314 154.247 Q186.314 147.117 184.486 143.576 Q182.68 140.011 179.046 140.011 M179.046 136.307 Q184.856 136.307 187.912 140.914 Q190.99 145.497 190.99 154.247 Q190.99 162.974 187.912 167.58 Q184.856 172.163 179.046 172.163 Q173.236 172.163 170.157 167.58 Q167.102 162.974 167.102 154.247 Q167.102 145.497 170.157 140.914 Q173.236 136.307 179.046 136.307 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M199.208 165.613 L204.092 165.613 L204.092 171.492 L199.208 171.492 L199.208 165.613 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M224.277 140.011 Q220.666 140.011 218.837 143.576 Q217.032 147.117 217.032 154.247 Q217.032 161.353 218.837 164.918 Q220.666 168.46 224.277 168.46 Q227.911 168.46 229.717 164.918 Q231.546 161.353 231.546 154.247 Q231.546 147.117 229.717 143.576 Q227.911 140.011 224.277 140.011 M224.277 136.307 Q230.087 136.307 233.143 140.914 Q236.222 145.497 236.222 154.247 Q236.222 162.974 233.143 167.58 Q230.087 172.163 224.277 172.163 Q218.467 172.163 215.388 167.58 Q212.333 162.974 212.333 154.247 Q212.333 145.497 215.388 140.914 Q218.467 136.307 224.277 136.307 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M258.606 152.858 Q261.962 153.576 263.837 155.844 Q265.735 158.113 265.735 161.446 Q265.735 166.562 262.217 169.363 Q258.698 172.163 252.217 172.163 Q250.041 172.163 247.726 171.724 Q245.434 171.307 242.981 170.45 L242.981 165.937 Q244.925 167.071 247.24 167.65 Q249.555 168.228 252.078 168.228 Q256.476 168.228 258.768 166.492 Q261.083 164.756 261.083 161.446 Q261.083 158.39 258.93 156.677 Q256.8 154.941 252.981 154.941 L248.953 154.941 L248.953 151.099 L253.166 151.099 Q256.615 151.099 258.444 149.733 Q260.272 148.344 260.272 145.752 Q260.272 143.09 258.374 141.677 Q256.499 140.242 252.981 140.242 Q251.059 140.242 248.86 140.659 Q246.661 141.076 244.022 141.955 L244.022 137.789 Q246.684 137.048 248.999 136.678 Q251.337 136.307 253.397 136.307 Q258.721 136.307 261.823 138.738 Q264.925 141.145 264.925 145.265 Q264.925 148.136 263.282 150.127 Q261.638 152.094 258.606 152.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M21.0613 846.812 L27.3315 846.812 Q25.5809 850.472 24.7216 853.719 Q23.8622 856.965 23.8622 859.989 Q23.8622 865.241 25.8992 868.105 Q27.9362 870.938 31.692 870.938 Q34.843 870.938 36.4663 869.06 Q38.0577 867.15 39.0444 861.867 L39.8401 857.984 Q41.2087 850.79 44.6781 847.385 Q48.1155 843.947 53.9083 843.947 Q60.8151 843.947 64.3799 848.594 Q67.9447 853.209 67.9447 862.153 Q67.9447 865.527 67.1808 869.346 Q66.4169 873.134 64.921 877.208 L58.3007 877.208 Q60.4968 873.293 61.6108 869.537 Q62.7248 865.782 62.7248 862.153 Q62.7248 856.647 60.5605 853.655 Q58.3961 850.663 54.3858 850.663 Q50.8846 850.663 48.9112 852.827 Q46.9379 854.96 45.9512 859.862 L45.1873 863.776 Q43.755 870.97 40.6995 874.184 Q37.6439 877.399 32.2013 877.399 Q25.8992 877.399 22.2708 872.975 Q18.6423 868.519 18.6423 860.721 Q18.6423 857.379 19.2471 853.91 Q19.8518 850.44 21.0613 846.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M21.2523 828.383 L31.3737 828.383 L31.3737 816.32 L35.9252 816.32 L35.9252 828.383 L55.277 828.383 Q59.6375 828.383 60.8788 827.205 Q62.1201 825.996 62.1201 822.336 L62.1201 816.32 L67.0217 816.32 L67.0217 822.336 Q67.0217 829.115 64.5072 831.693 Q61.9609 834.271 55.277 834.271 L35.9252 834.271 L35.9252 838.568 L31.3737 838.568 L31.3737 834.271 L21.2523 834.271 L21.2523 828.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M35.4796 794.804 Q35.4796 799.515 39.1717 802.252 Q42.832 804.989 49.2295 804.989 Q55.6271 804.989 59.3192 802.284 Q62.9795 799.546 62.9795 794.804 Q62.9795 790.125 59.2873 787.388 Q55.5952 784.651 49.2295 784.651 Q42.8957 784.651 39.2035 787.388 Q35.4796 790.125 35.4796 794.804 M30.5144 794.804 Q30.5144 787.165 35.4796 782.805 Q40.4449 778.444 49.2295 778.444 Q57.9824 778.444 62.9795 782.805 Q67.9447 787.165 67.9447 794.804 Q67.9447 802.475 62.9795 806.835 Q57.9824 811.164 49.2295 811.164 Q40.4449 811.164 35.4796 806.835 Q30.5144 802.475 30.5144 794.804 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M32.7424 743.083 L38.2169 743.083 Q36.8482 745.565 36.1798 748.08 Q35.4796 750.562 35.4796 753.109 Q35.4796 758.806 39.1081 761.957 Q42.7047 765.108 49.2295 765.108 Q55.7544 765.108 59.3828 761.957 Q62.9795 758.806 62.9795 753.109 Q62.9795 750.562 62.3111 748.08 Q61.6108 745.565 60.2422 743.083 L65.6531 743.083 Q66.7989 745.533 67.3718 748.175 Q67.9447 750.785 67.9447 753.745 Q67.9447 761.798 62.884 766.54 Q57.8232 771.283 49.2295 771.283 Q40.5085 771.283 35.5114 766.508 Q30.5144 761.702 30.5144 753.363 Q30.5144 750.658 31.0873 748.08 Q31.6284 745.502 32.7424 743.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M17.4965 733.12 L17.4965 727.232 L46.7469 727.232 L31.3737 709.758 L31.3737 702.278 L48.0519 721.185 L67.0217 701.483 L67.0217 709.122 L49.6115 727.232 L67.0217 727.232 L67.0217 733.12 L17.4965 733.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M19.5017 674.174 L19.5017 664.593 L51.8395 652.467 L19.5017 640.276 L19.5017 630.696 L67.0217 630.696 L67.0217 636.966 L25.2945 636.966 L57.8869 649.22 L57.8869 655.681 L25.2945 667.935 L67.0217 667.935 L67.0217 674.174 L19.5017 674.174 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M49.1022 601.987 Q49.1022 609.085 50.7255 611.822 Q52.3487 614.559 56.2636 614.559 Q59.3828 614.559 61.2289 612.522 Q63.0431 610.453 63.0431 606.92 Q63.0431 602.05 59.6056 599.122 Q56.1363 596.162 50.4072 596.162 L49.1022 596.162 L49.1022 601.987 M46.6832 590.306 L67.0217 590.306 L67.0217 596.162 L61.6108 596.162 Q64.8573 598.167 66.4169 601.159 Q67.9447 604.151 67.9447 608.48 Q67.9447 613.954 64.8892 617.201 Q61.8018 620.415 56.6456 620.415 Q50.63 620.415 47.5744 616.405 Q44.5189 612.363 44.5189 604.374 L44.5189 596.162 L43.946 596.162 Q39.9038 596.162 37.7076 598.836 Q35.4796 601.477 35.4796 606.284 Q35.4796 609.339 36.2117 612.236 Q36.9437 615.132 38.4078 617.806 L32.997 617.806 Q31.7557 614.591 31.1509 611.567 Q30.5144 608.543 30.5144 605.679 Q30.5144 597.945 34.5247 594.125 Q38.5351 590.306 46.6832 590.306 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M36.8482 557.586 Q36.2753 558.573 36.0207 559.75 Q35.7342 560.896 35.7342 562.297 Q35.7342 567.262 38.9807 569.935 Q42.1954 572.577 48.2428 572.577 L67.0217 572.577 L67.0217 578.465 L31.3737 578.465 L31.3737 572.577 L36.9119 572.577 Q33.6654 570.731 32.1058 567.771 Q30.5144 564.811 30.5144 560.578 Q30.5144 559.973 30.6098 559.241 Q30.6735 558.509 30.8326 557.618 L36.8482 557.586 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M17.4965 551.666 L17.4965 545.778 L46.7469 545.778 L31.3737 528.304 L31.3737 520.824 L48.0519 539.73 L67.0217 520.028 L67.0217 527.667 L49.6115 545.778 L67.0217 545.778 L67.0217 551.666 L17.4965 551.666 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M47.7336 485.526 L50.5982 485.526 L50.5982 512.453 Q56.6456 512.071 59.8284 508.825 Q62.9795 505.546 62.9795 499.722 Q62.9795 496.348 62.1519 493.197 Q61.3244 490.014 59.6693 486.895 L65.2075 486.895 Q66.5443 490.046 67.2445 493.356 Q67.9447 496.666 67.9447 500.072 Q67.9447 508.602 62.9795 513.599 Q58.0142 518.564 49.5478 518.564 Q40.795 518.564 35.6706 513.854 Q30.5144 509.111 30.5144 501.09 Q30.5144 493.897 35.1613 489.728 Q39.7765 485.526 47.7336 485.526 M46.0148 491.383 Q41.2087 491.446 38.3442 494.088 Q35.4796 496.698 35.4796 501.027 Q35.4796 505.928 38.2487 508.888 Q41.0178 511.817 46.0467 512.262 L46.0148 491.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M21.2523 470.121 L31.3737 470.121 L31.3737 458.058 L35.9252 458.058 L35.9252 470.121 L55.277 470.121 Q59.6375 470.121 60.8788 468.943 Q62.1201 467.734 62.1201 464.074 L62.1201 458.058 L67.0217 458.058 L67.0217 464.074 Q67.0217 470.853 64.5072 473.431 Q61.9609 476.009 55.277 476.009 L35.9252 476.009 L35.9252 480.306 L31.3737 480.306 L31.3737 476.009 L21.2523 476.009 L21.2523 470.121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M19.5017 429.381 L19.5017 422.951 L61.6108 422.951 L61.6108 399.812 L67.0217 399.812 L67.0217 429.381 L19.5017 429.381 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M47.7336 363.973 L50.5982 363.973 L50.5982 390.9 Q56.6456 390.518 59.8284 387.271 Q62.9795 383.993 62.9795 378.168 Q62.9795 374.795 62.1519 371.644 Q61.3244 368.461 59.6693 365.342 L65.2075 365.342 Q66.5443 368.493 67.2445 371.803 Q67.9447 375.113 67.9447 378.519 Q67.9447 387.049 62.9795 392.046 Q58.0142 397.011 49.5478 397.011 Q40.795 397.011 35.6706 392.3 Q30.5144 387.558 30.5144 379.537 Q30.5144 372.344 35.1613 368.174 Q39.7765 363.973 47.7336 363.973 M46.0148 369.829 Q41.2087 369.893 38.3442 372.535 Q35.4796 375.145 35.4796 379.473 Q35.4796 384.375 38.2487 387.335 Q41.0178 390.263 46.0467 390.709 L46.0148 369.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M31.3737 358.562 L31.3737 352.356 L61.2925 341.216 L31.3737 330.076 L31.3737 323.869 L67.0217 337.237 L67.0217 345.194 L31.3737 358.562 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M47.7336 285.293 L50.5982 285.293 L50.5982 312.22 Q56.6456 311.838 59.8284 308.591 Q62.9795 305.313 62.9795 299.488 Q62.9795 296.115 62.1519 292.964 Q61.3244 289.781 59.6693 286.661 L65.2075 286.661 Q66.5443 289.812 67.2445 293.123 Q67.9447 296.433 67.9447 299.838 Q67.9447 308.369 62.9795 313.366 Q58.0142 318.331 49.5478 318.331 Q40.795 318.331 35.6706 313.62 Q30.5144 308.878 30.5144 300.857 Q30.5144 293.664 35.1613 289.494 Q39.7765 285.293 47.7336 285.293 M46.0148 291.149 Q41.2087 291.213 38.3442 293.855 Q35.4796 296.465 35.4796 300.793 Q35.4796 305.695 38.2487 308.655 Q41.0178 311.583 46.0467 312.029 L46.0148 291.149 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M17.4965 275.681 L17.4965 269.824 L67.0217 269.824 L67.0217 275.681 L17.4965 275.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M32.4241 234.845 L37.9622 234.845 Q36.6891 237.327 36.0525 240.001 Q35.4159 242.674 35.4159 245.539 Q35.4159 249.9 36.7527 252.096 Q38.0895 254.26 40.7631 254.26 Q42.8002 254.26 43.9778 252.7 Q45.1237 251.141 46.174 246.43 L46.6196 244.425 Q47.9564 238.187 50.4072 235.577 Q52.8262 232.935 57.1867 232.935 Q62.1519 232.935 65.0483 236.882 Q67.9447 240.797 67.9447 247.672 Q67.9447 250.536 67.3718 253.655 Q66.8307 256.743 65.7167 260.18 L59.6693 260.18 Q61.3562 256.934 62.2156 253.783 Q63.0431 250.632 63.0431 247.544 Q63.0431 243.406 61.6427 241.178 Q60.2104 238.95 57.6323 238.95 Q55.2451 238.95 53.972 240.574 Q52.6988 242.165 51.5212 247.608 L51.0438 249.645 Q49.8979 255.088 47.5426 257.507 Q45.1555 259.925 41.0178 259.925 Q35.9889 259.925 33.2516 256.361 Q30.5144 252.796 30.5144 246.239 Q30.5144 242.993 30.9918 240.128 Q31.4692 237.264 32.4241 234.845 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip032)\" cx=\"392.958\" cy=\"481.166\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"419.366\" cy=\"361.388\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"445.774\" cy=\"570.687\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"472.181\" cy=\"516.454\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"498.589\" cy=\"748.539\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"524.997\" cy=\"451.458\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"551.404\" cy=\"383.151\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"577.812\" cy=\"440.706\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"604.22\" cy=\"587.304\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"630.627\" cy=\"469.545\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"657.035\" cy=\"206.278\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"683.443\" cy=\"430.117\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"709.85\" cy=\"466.921\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"736.258\" cy=\"746.567\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"762.666\" cy=\"391.571\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"789.073\" cy=\"493.573\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"815.481\" cy=\"682.892\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"841.889\" cy=\"655.464\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"868.296\" cy=\"351.211\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"894.704\" cy=\"455.559\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"921.112\" cy=\"578.616\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"947.519\" cy=\"596.739\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"973.927\" cy=\"984.538\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1000.33\" cy=\"466.59\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1026.74\" cy=\"671.967\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1053.15\" cy=\"546.326\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1079.56\" cy=\"113.549\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1105.97\" cy=\"586.958\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1132.37\" cy=\"531.583\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1158.78\" cy=\"447.599\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1185.19\" cy=\"750.927\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1211.6\" cy=\"654.874\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1238\" cy=\"666.42\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1264.41\" cy=\"475.858\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1290.82\" cy=\"971.747\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1317.23\" cy=\"885.42\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1343.63\" cy=\"380.153\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1370.04\" cy=\"579.281\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1396.45\" cy=\"767.226\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1422.86\" cy=\"996.785\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1449.27\" cy=\"293.634\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1475.67\" cy=\"395.924\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1502.08\" cy=\"402.508\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1528.49\" cy=\"578.751\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1554.9\" cy=\"390.299\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1581.3\" cy=\"530.283\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1607.71\" cy=\"596.611\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1634.12\" cy=\"927.674\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1660.53\" cy=\"803.375\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1686.93\" cy=\"225.976\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1713.34\" cy=\"536.204\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1739.75\" cy=\"771.157\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1766.16\" cy=\"786.905\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1792.56\" cy=\"755.371\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1818.97\" cy=\"567.539\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1845.38\" cy=\"282.968\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1871.79\" cy=\"432.955\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1898.2\" cy=\"401.615\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1924.6\" cy=\"552.754\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1951.01\" cy=\"544.37\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"1977.42\" cy=\"545.192\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2003.83\" cy=\"505.895\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2030.23\" cy=\"541.798\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2056.64\" cy=\"730.333\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2083.05\" cy=\"235.878\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2109.46\" cy=\"439.602\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2135.86\" cy=\"442.062\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2162.27\" cy=\"467.622\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2188.68\" cy=\"669.378\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2215.09\" cy=\"741.184\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2241.5\" cy=\"604.026\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2267.9\" cy=\"511.491\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2294.31\" cy=\"432.705\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2320.72\" cy=\"701.565\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2347.13\" cy=\"774.607\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2373.53\" cy=\"645.063\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2399.94\" cy=\"555.604\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2426.35\" cy=\"805.537\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2452.76\" cy=\"430.018\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2479.16\" cy=\"713.384\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2505.57\" cy=\"572.891\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2531.98\" cy=\"394.861\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2558.39\" cy=\"754.437\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2584.79\" cy=\"950.728\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2611.2\" cy=\"548.313\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2637.61\" cy=\"234.332\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2664.02\" cy=\"461.299\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2690.43\" cy=\"895.99\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2716.83\" cy=\"229.011\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2743.24\" cy=\"647.061\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2769.65\" cy=\"489.772\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2796.06\" cy=\"497.024\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2822.46\" cy=\"803.214\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2848.87\" cy=\"497.578\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2875.28\" cy=\"596.706\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2901.69\" cy=\"513.59\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2928.09\" cy=\"445.609\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2954.5\" cy=\"435.924\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"2980.91\" cy=\"560.094\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"3007.32\" cy=\"740.643\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip032)\" cx=\"3033.73\" cy=\"661.361\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "</svg>\n" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Count number of samples\n", "time_period = 436:536\n", "num_samples = length(time_period)\n", "\n", "# Extract columns\n", "dates_num = 1:num_samples\n", "dates_str = df[time_period,1]\n", "stock_val = df[time_period,2]\n", "\n", "# Set xticks\n", "xtick_points = Int64.(round.(range(1, stop=num_samples, length=5)))\n", "\n", "# Scatter exchange levels\n", "scatter(dates_num, \n", " stock_val, \n", " color=\"black\",\n", " label=\"\", \n", " ylabel=\"Stock Market Levels\", \n", " xlabel=\"time (days)\",\n", " xticks=(xtick_points, [dates_str[i] for i in xtick_points]), \n", " size=(800,300))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Model specification\n", "\n", "We have a date $x_i \\in \\mathbb{R}$, referred to as a \"covariate\" or input variable, and the value of the stock exchange at that time point $y_i \\in \\mathbb{R}$, referred to as a \"response\" or output variable. A regression model has parameters $\\theta$, used to predict $y = (y_1, \\dots, y_N)$ from $x = (x_1, \\dots, x_N)$. We are looking for a posterior distribution for the parameters $\\theta$:\n", "\n", "$$\\underbrace{p(\\theta \\mid y, x)}_{\\text{posterior}} \\propto\\ \\underbrace{p(y \\mid x, \\theta)}_{\\text{likelihood}} \\cdot \\underbrace{p(\\theta)}_{\\text{prior}}$$\n", "\n", "We assume each observation $y_i$ is generated via: \n", "\n", "$$ y_i = f_\\theta(x_i) + e_i$$ \n", "\n", "where $e_i$ is white noise, $e_i \\sim \\mathcal{N}(0, \\sigma^2_y)$, and the regression function $f_\\theta$ is linear: $f_\\theta(x) = x \\theta_1 + \\theta_2$. The parameters consist of a slope coefficient $\\theta_1$ and an intercept $\\theta_2$, which are summarized into the vector $\\theta = \\begin{bmatrix}\\theta_1 \\\\ \\theta_2 \\end{bmatrix}$. In practice, we augment the data point $x$ with a 1, i.e., $\\begin{bmatrix}x \\\\ 1 \\end{bmatrix}$, so that we may define $f_\\theta(x) = \\theta^{\\top}x$. \n", "\n", "#### Likelihood\n", "If we integrate out the noise $e$, then we obtain a Gaussian likelihood function centered on $f_\\theta(x)$ with variance $\\sigma^2_Y$:\n", "\n", "$$p(y_i \\mid x_i, \\theta) = \\mathcal{N}(y_i \\mid f_\\theta(x_i),\\sigma^2_y)\\, \\ .$$ \n", "\n", "But this is just for a single sample and we have an entire data set. The likelihood of all $(x,y)$ is:\n", "\n", "$$\\begin{aligned} p(y \\mid x, \\theta) &= \\prod_{i=1}^{N} p(y_i \\mid x_i, \\theta) \\\\ & = \\prod_{i=1}^{N} \\mathcal{N}(y_i \\mid f_{\\theta}(x_i), \\sigma^2_y) \\, . \\end{aligned} $$ \n", "\n", "#### Prior distribution\n", "We know that the weights are real numbers and that they can be negative. That motivates us to use a Gaussian prior:\n", "\n", "$$ p(\\theta) = \\mathcal{N}(\\theta \\mid \\mu_\\theta, \\Sigma_\\theta) \\, .$$\n", "\n", "We can specify these equations almost directly in our PPL." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "@model function linear_regression(μ_θ, Σ_θ, σ2_y; N=1)\n", " \"Bayesian linear regression\"\n", " \n", " # Allocate data variables\n", " X = datavar(Vector{Float64}, N)\n", " y = datavar(Float64, N)\n", " \n", " # Prior distribution of coefficients\n", " θ ~ MvNormalMeanCovariance(μ_θ, Σ_θ)\n", " \n", " for i = 1:N\n", "\n", " # Likelihood of i-th sample\n", " y[i] ~ NormalMeanVariance(dot(θ,X[i]), σ2_y)\n", " \n", " end\n", " return y, X, θ\n", "end" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "# Prior parameters\n", "μ_θ, Σ_θ = (zeros(2), diagm(ones(2)))\n", "\n", "# Likelihood variance\n", "σ2_y = 1.0;" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Now that we have our model, it is time to infer parameters." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Inference results:\n", " Posteriors | available for (θ)\n" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Call inference function\n", "results = inference(\n", " model = linear_regression(μ_θ, Σ_θ, σ2_y, N=num_samples),\n", " data = (y = stock_val, X = [[dates_num[i], 1.0] for i in 1:num_samples]),\n", " returnvars = (θ = KeepLast()),\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's visualize the resulting posterior." ] }, { "cell_type": "code", "execution_count": 8, "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=\"900\" height=\"300\" viewBox=\"0 0 3600 1200\">\n", "<defs>\n", " <clipPath id=\"clip070\">\n", " <rect x=\"0\" y=\"0\" width=\"3600\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip070)\" d=\"\n", "M0 1200 L3600 1200 L3600 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip071\">\n", " <rect x=\"720\" y=\"0\" width=\"2521\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip070)\" d=\"\n", "M238.793 1028.41 L1372.7 1028.41 L1372.7 133.04 L238.793 133.04 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip072\">\n", " <rect x=\"238\" y=\"133\" width=\"1135\" height=\"896\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,1028.41 238.793,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 427.778,1028.41 427.778,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 616.763,1028.41 616.763,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 805.748,1028.41 805.748,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 994.733,1028.41 994.733,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1183.72,1028.41 1183.72,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1372.7,1028.41 1372.7,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,1028.41 1372.7,1028.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,1028.41 238.793,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 427.778,1028.41 427.778,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.763,1028.41 616.763,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 805.748,1028.41 805.748,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 994.733,1028.41 994.733,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1183.72,1028.41 1183.72,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,1028.41 1372.7,1009.51 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M185.819 1083.58 L215.495 1083.58 L215.495 1087.52 L185.819 1087.52 L185.819 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M226.398 1096.48 L234.037 1096.48 L234.037 1070.11 L225.726 1071.78 L225.726 1067.52 L233.99 1065.85 L238.666 1065.85 L238.666 1096.48 L246.305 1096.48 L246.305 1100.41 L226.398 1100.41 L226.398 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M255.749 1094.53 L260.634 1094.53 L260.634 1100.41 L255.749 1100.41 L255.749 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M270.865 1065.85 L289.221 1065.85 L289.221 1069.79 L275.147 1069.79 L275.147 1078.26 Q276.166 1077.91 277.184 1077.75 Q278.203 1077.57 279.221 1077.57 Q285.008 1077.57 288.388 1080.74 Q291.768 1083.91 291.768 1089.32 Q291.768 1094.9 288.296 1098 Q284.823 1101.08 278.504 1101.08 Q276.328 1101.08 274.059 1100.71 Q271.814 1100.34 269.407 1099.6 L269.407 1094.9 Q271.49 1096.04 273.712 1096.59 Q275.934 1097.15 278.411 1097.15 Q282.416 1097.15 284.754 1095.04 Q287.092 1092.94 287.092 1089.32 Q287.092 1085.71 284.754 1083.61 Q282.416 1081.5 278.411 1081.5 Q276.536 1081.5 274.661 1081.92 Q272.809 1082.33 270.865 1083.21 L270.865 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M374.306 1083.58 L403.982 1083.58 L403.982 1087.52 L374.306 1087.52 L374.306 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M414.885 1096.48 L422.524 1096.48 L422.524 1070.11 L414.214 1071.78 L414.214 1067.52 L422.477 1065.85 L427.153 1065.85 L427.153 1096.48 L434.792 1096.48 L434.792 1100.41 L414.885 1100.41 L414.885 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M444.237 1094.53 L449.121 1094.53 L449.121 1100.41 L444.237 1100.41 L444.237 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M469.306 1068.93 Q465.695 1068.93 463.866 1072.5 Q462.061 1076.04 462.061 1083.17 Q462.061 1090.27 463.866 1093.84 Q465.695 1097.38 469.306 1097.38 Q472.94 1097.38 474.746 1093.84 Q476.574 1090.27 476.574 1083.17 Q476.574 1076.04 474.746 1072.5 Q472.94 1068.93 469.306 1068.93 M469.306 1065.23 Q475.116 1065.23 478.172 1069.83 Q481.25 1074.42 481.25 1083.17 Q481.25 1091.89 478.172 1096.5 Q475.116 1101.08 469.306 1101.08 Q463.496 1101.08 460.417 1096.5 Q457.361 1091.89 457.361 1083.17 Q457.361 1074.42 460.417 1069.83 Q463.496 1065.23 469.306 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M563.789 1083.58 L593.465 1083.58 L593.465 1087.52 L563.789 1087.52 L563.789 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M613.557 1068.93 Q609.946 1068.93 608.117 1072.5 Q606.312 1076.04 606.312 1083.17 Q606.312 1090.27 608.117 1093.84 Q609.946 1097.38 613.557 1097.38 Q617.191 1097.38 618.997 1093.84 Q620.826 1090.27 620.826 1083.17 Q620.826 1076.04 618.997 1072.5 Q617.191 1068.93 613.557 1068.93 M613.557 1065.23 Q619.367 1065.23 622.423 1069.83 Q625.501 1074.42 625.501 1083.17 Q625.501 1091.89 622.423 1096.5 Q619.367 1101.08 613.557 1101.08 Q607.747 1101.08 604.668 1096.5 Q601.613 1091.89 601.613 1083.17 Q601.613 1074.42 604.668 1069.83 Q607.747 1065.23 613.557 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M633.719 1094.53 L638.603 1094.53 L638.603 1100.41 L633.719 1100.41 L633.719 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M648.835 1065.85 L667.191 1065.85 L667.191 1069.79 L653.117 1069.79 L653.117 1078.26 Q654.136 1077.91 655.154 1077.75 Q656.173 1077.57 657.191 1077.57 Q662.978 1077.57 666.358 1080.74 Q669.737 1083.91 669.737 1089.32 Q669.737 1094.9 666.265 1098 Q662.793 1101.08 656.474 1101.08 Q654.298 1101.08 652.029 1100.71 Q649.784 1100.34 647.376 1099.6 L647.376 1094.9 Q649.46 1096.04 651.682 1096.59 Q653.904 1097.15 656.381 1097.15 Q660.386 1097.15 662.724 1095.04 Q665.061 1092.94 665.061 1089.32 Q665.061 1085.71 662.724 1083.61 Q660.386 1081.5 656.381 1081.5 Q654.506 1081.5 652.631 1081.92 Q650.779 1082.33 648.835 1083.21 L648.835 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M783.132 1068.93 Q779.521 1068.93 777.693 1072.5 Q775.887 1076.04 775.887 1083.17 Q775.887 1090.27 777.693 1093.84 Q779.521 1097.38 783.132 1097.38 Q786.767 1097.38 788.572 1093.84 Q790.401 1090.27 790.401 1083.17 Q790.401 1076.04 788.572 1072.5 Q786.767 1068.93 783.132 1068.93 M783.132 1065.23 Q788.942 1065.23 791.998 1069.83 Q795.077 1074.42 795.077 1083.17 Q795.077 1091.89 791.998 1096.5 Q788.942 1101.08 783.132 1101.08 Q777.322 1101.08 774.243 1096.5 Q771.188 1091.89 771.188 1083.17 Q771.188 1074.42 774.243 1069.83 Q777.322 1065.23 783.132 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M803.294 1094.53 L808.178 1094.53 L808.178 1100.41 L803.294 1100.41 L803.294 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M828.364 1068.93 Q824.752 1068.93 822.924 1072.5 Q821.118 1076.04 821.118 1083.17 Q821.118 1090.27 822.924 1093.84 Q824.752 1097.38 828.364 1097.38 Q831.998 1097.38 833.803 1093.84 Q835.632 1090.27 835.632 1083.17 Q835.632 1076.04 833.803 1072.5 Q831.998 1068.93 828.364 1068.93 M828.364 1065.23 Q834.174 1065.23 837.229 1069.83 Q840.308 1074.42 840.308 1083.17 Q840.308 1091.89 837.229 1096.5 Q834.174 1101.08 828.364 1101.08 Q822.553 1101.08 819.475 1096.5 Q816.419 1091.89 816.419 1083.17 Q816.419 1074.42 819.475 1069.83 Q822.553 1065.23 828.364 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M972.615 1068.93 Q969.004 1068.93 967.175 1072.5 Q965.369 1076.04 965.369 1083.17 Q965.369 1090.27 967.175 1093.84 Q969.004 1097.38 972.615 1097.38 Q976.249 1097.38 978.055 1093.84 Q979.883 1090.27 979.883 1083.17 Q979.883 1076.04 978.055 1072.5 Q976.249 1068.93 972.615 1068.93 M972.615 1065.23 Q978.425 1065.23 981.481 1069.83 Q984.559 1074.42 984.559 1083.17 Q984.559 1091.89 981.481 1096.5 Q978.425 1101.08 972.615 1101.08 Q966.805 1101.08 963.726 1096.5 Q960.67 1091.89 960.67 1083.17 Q960.67 1074.42 963.726 1069.83 Q966.805 1065.23 972.615 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M992.777 1094.53 L997.661 1094.53 L997.661 1100.41 L992.777 1100.41 L992.777 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1007.89 1065.85 L1026.25 1065.85 L1026.25 1069.79 L1012.17 1069.79 L1012.17 1078.26 Q1013.19 1077.91 1014.21 1077.75 Q1015.23 1077.57 1016.25 1077.57 Q1022.04 1077.57 1025.42 1080.74 Q1028.8 1083.91 1028.8 1089.32 Q1028.8 1094.9 1025.32 1098 Q1021.85 1101.08 1015.53 1101.08 Q1013.36 1101.08 1011.09 1100.71 Q1008.84 1100.34 1006.43 1099.6 L1006.43 1094.9 Q1008.52 1096.04 1010.74 1096.59 Q1012.96 1097.15 1015.44 1097.15 Q1019.44 1097.15 1021.78 1095.04 Q1024.12 1092.94 1024.12 1089.32 Q1024.12 1085.71 1021.78 1083.61 Q1019.44 1081.5 1015.44 1081.5 Q1013.56 1081.5 1011.69 1081.92 Q1009.84 1082.33 1007.89 1083.21 L1007.89 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1150.87 1096.48 L1158.51 1096.48 L1158.51 1070.11 L1150.2 1071.78 L1150.2 1067.52 L1158.46 1065.85 L1163.14 1065.85 L1163.14 1096.48 L1170.78 1096.48 L1170.78 1100.41 L1150.87 1100.41 L1150.87 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1180.22 1094.53 L1185.11 1094.53 L1185.11 1100.41 L1180.22 1100.41 L1180.22 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1205.29 1068.93 Q1201.68 1068.93 1199.85 1072.5 Q1198.05 1076.04 1198.05 1083.17 Q1198.05 1090.27 1199.85 1093.84 Q1201.68 1097.38 1205.29 1097.38 Q1208.93 1097.38 1210.73 1093.84 Q1212.56 1090.27 1212.56 1083.17 Q1212.56 1076.04 1210.73 1072.5 Q1208.93 1068.93 1205.29 1068.93 M1205.29 1065.23 Q1211.1 1065.23 1214.16 1069.83 Q1217.24 1074.42 1217.24 1083.17 Q1217.24 1091.89 1214.16 1096.5 Q1211.1 1101.08 1205.29 1101.08 Q1199.48 1101.08 1196.4 1096.5 Q1193.35 1091.89 1193.35 1083.17 Q1193.35 1074.42 1196.4 1069.83 Q1199.48 1065.23 1205.29 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1340.35 1096.48 L1347.99 1096.48 L1347.99 1070.11 L1339.68 1071.78 L1339.68 1067.52 L1347.95 1065.85 L1352.62 1065.85 L1352.62 1096.48 L1360.26 1096.48 L1360.26 1100.41 L1340.35 1100.41 L1340.35 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1369.7 1094.53 L1374.59 1094.53 L1374.59 1100.41 L1369.7 1100.41 L1369.7 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1384.82 1065.85 L1403.18 1065.85 L1403.18 1069.79 L1389.1 1069.79 L1389.1 1078.26 Q1390.12 1077.91 1391.14 1077.75 Q1392.16 1077.57 1393.18 1077.57 Q1398.96 1077.57 1402.34 1080.74 Q1405.72 1083.91 1405.72 1089.32 Q1405.72 1094.9 1402.25 1098 Q1398.78 1101.08 1392.46 1101.08 Q1390.28 1101.08 1388.01 1100.71 Q1385.77 1100.34 1383.36 1099.6 L1383.36 1094.9 Q1385.45 1096.04 1387.67 1096.59 Q1389.89 1097.15 1392.37 1097.15 Q1396.37 1097.15 1398.71 1095.04 Q1401.05 1092.94 1401.05 1089.32 Q1401.05 1085.71 1398.71 1083.61 Q1396.37 1081.5 1392.37 1081.5 Q1390.49 1081.5 1388.62 1081.92 Q1386.76 1082.33 1384.82 1083.21 L1384.82 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M796.359 1168.68 L776.084 1168.68 Q776.561 1178.19 778.757 1182.24 Q781.495 1187.2 786.237 1187.2 Q791.011 1187.2 793.653 1182.21 Q795.977 1177.81 796.359 1168.68 M796.263 1163.27 Q795.372 1154.23 793.653 1151.05 Q790.916 1146.02 786.237 1146.02 Q781.367 1146.02 778.789 1150.98 Q776.752 1154.99 776.147 1163.27 L796.263 1163.27 M786.237 1141.24 Q793.876 1141.24 798.236 1147.99 Q802.597 1154.71 802.597 1166.61 Q802.597 1178.48 798.236 1185.23 Q793.876 1192.01 786.237 1192.01 Q778.566 1192.01 774.238 1185.23 Q769.877 1178.48 769.877 1166.61 Q769.877 1154.71 774.238 1147.99 Q778.566 1141.24 786.237 1141.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M814.246 1185.87 L824.75 1185.87 L824.75 1149.61 L813.323 1151.9 L813.323 1146.05 L824.686 1143.76 L831.115 1143.76 L831.115 1185.87 L841.619 1185.87 L841.619 1191.28 L814.246 1191.28 L814.246 1185.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,938.875 1372.7,938.875 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,759.801 1372.7,759.801 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,580.726 1372.7,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,401.651 1372.7,401.651 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 238.793,222.577 1372.7,222.577 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,1028.41 238.793,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,938.875 253.137,938.875 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,759.801 253.137,759.801 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,580.726 253.137,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,401.651 253.137,401.651 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,222.577 253.137,222.577 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M124.678 939.326 L154.354 939.326 L154.354 943.262 L124.678 943.262 L124.678 939.326 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M168.474 952.22 L184.793 952.22 L184.793 956.155 L162.849 956.155 L162.849 952.22 Q165.511 949.465 170.094 944.836 Q174.701 940.183 175.881 938.84 Q178.127 936.317 179.006 934.581 Q179.909 932.822 179.909 931.132 Q179.909 928.377 177.965 926.641 Q176.044 924.905 172.942 924.905 Q170.743 924.905 168.289 925.669 Q165.858 926.433 163.081 927.984 L163.081 923.262 Q165.905 922.127 168.358 921.549 Q170.812 920.97 172.849 920.97 Q178.219 920.97 181.414 923.655 Q184.608 926.34 184.608 930.831 Q184.608 932.961 183.798 934.882 Q183.011 936.78 180.905 939.373 Q180.326 940.044 177.224 943.262 Q174.122 946.456 168.474 952.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M124.308 760.252 L153.983 760.252 L153.983 764.187 L124.308 764.187 L124.308 760.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M164.886 773.145 L172.525 773.145 L172.525 746.78 L164.215 748.446 L164.215 744.187 L172.479 742.521 L177.155 742.521 L177.155 773.145 L184.793 773.145 L184.793 777.081 L164.886 777.081 L164.886 773.145 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M172.849 566.525 Q169.238 566.525 167.409 570.089 Q165.604 573.631 165.604 580.761 Q165.604 587.867 167.409 591.432 Q169.238 594.974 172.849 594.974 Q176.483 594.974 178.289 591.432 Q180.118 587.867 180.118 580.761 Q180.118 573.631 178.289 570.089 Q176.483 566.525 172.849 566.525 M172.849 562.821 Q178.659 562.821 181.715 567.427 Q184.793 572.011 184.793 580.761 Q184.793 589.488 181.715 594.094 Q178.659 598.677 172.849 598.677 Q167.039 598.677 163.96 594.094 Q160.905 589.488 160.905 580.761 Q160.905 572.011 163.96 567.427 Q167.039 562.821 172.849 562.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M164.886 414.996 L172.525 414.996 L172.525 388.631 L164.215 390.297 L164.215 386.038 L172.479 384.371 L177.155 384.371 L177.155 414.996 L184.793 414.996 L184.793 418.931 L164.886 418.931 L164.886 414.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M168.474 235.922 L184.793 235.922 L184.793 239.857 L162.849 239.857 L162.849 235.922 Q165.511 233.167 170.094 228.538 Q174.701 223.885 175.881 222.542 Q178.127 220.019 179.006 218.283 Q179.909 216.524 179.909 214.834 Q179.909 212.079 177.965 210.343 Q176.044 208.607 172.942 208.607 Q170.743 208.607 168.289 209.371 Q165.858 210.135 163.081 211.686 L163.081 206.964 Q165.905 205.829 168.358 205.251 Q170.812 204.672 172.849 204.672 Q178.219 204.672 181.414 207.357 Q184.608 210.042 184.608 214.533 Q184.608 216.663 183.798 218.584 Q183.011 220.482 180.905 223.075 Q180.326 223.746 177.224 226.963 Q174.122 230.158 168.474 235.922 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M33.4534 589.861 L33.4534 610.136 Q42.9702 609.658 47.0124 607.462 Q51.9776 604.725 51.9776 599.982 Q51.9776 595.208 46.9805 592.566 Q42.5882 590.243 33.4534 589.861 M28.0426 589.956 Q19.0033 590.847 15.8204 592.566 Q10.7915 595.303 10.7915 599.982 Q10.7915 604.852 15.7568 607.43 Q19.7672 609.467 28.0426 610.072 L28.0426 589.956 M6.01723 599.982 Q6.01723 592.343 12.7649 587.983 Q19.4807 583.622 31.3846 583.622 Q43.2566 583.622 50.0043 587.983 Q56.7837 592.343 56.7837 599.982 Q56.7837 607.653 50.0043 611.982 Q43.2566 616.342 31.3846 616.342 Q19.4807 616.342 12.7649 611.982 Q6.01723 607.653 6.01723 599.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M50.6408 567.549 L50.6408 545.11 L56.0517 545.11 L56.0517 575.283 L50.6408 575.283 Q46.8532 571.623 40.4875 565.321 Q34.09 558.987 32.2439 557.364 Q28.7746 554.276 26.3875 553.067 Q23.9685 551.826 21.645 551.826 Q17.8574 551.826 15.4703 554.499 Q13.0832 557.141 13.0832 561.406 Q13.0832 564.43 14.1335 567.804 Q15.1838 571.146 17.3164 574.965 L10.8233 574.965 Q9.26374 571.082 8.46802 567.708 Q7.67231 564.334 7.67231 561.533 Q7.67231 554.149 11.3644 549.757 Q15.0565 545.364 21.2313 545.364 Q24.1595 545.364 26.8013 546.478 Q29.4112 547.561 32.976 550.457 Q33.899 551.253 38.3232 555.518 Q42.7155 559.783 50.6408 567.549 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M719.666 65.7705 L719.666 89.8329 L712.172 89.8329 L712.172 27.2059 L719.666 27.2059 L719.666 34.0924 Q722.016 30.0415 725.581 28.0971 Q729.186 26.1121 734.168 26.1121 Q742.432 26.1121 747.577 32.6746 Q752.762 39.2371 752.762 49.9314 Q752.762 60.6258 747.577 67.1883 Q742.432 73.7508 734.168 73.7508 Q729.186 73.7508 725.581 71.8063 Q722.016 69.8214 719.666 65.7705 M745.025 49.9314 Q745.025 41.7081 741.622 37.0496 Q738.26 32.3505 732.346 32.3505 Q726.431 32.3505 723.028 37.0496 Q719.666 41.7081 719.666 49.9314 Q719.666 58.1548 723.028 62.8538 Q726.431 67.5124 732.346 67.5124 Q738.26 67.5124 741.622 62.8538 Q745.025 58.1548 745.025 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M791.408 34.1734 Q790.152 33.4443 788.653 33.1202 Q787.195 32.7556 785.412 32.7556 Q779.093 32.7556 775.69 36.8875 Q772.328 40.9789 772.328 48.6757 L772.328 72.576 L764.834 72.576 L764.834 27.2059 L772.328 27.2059 L772.328 34.2544 Q774.677 30.1225 778.445 28.1376 Q782.212 26.1121 787.6 26.1121 Q788.37 26.1121 789.301 26.2337 Q790.233 26.3147 791.367 26.5172 L791.408 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M799.226 27.2059 L806.68 27.2059 L806.68 72.576 L799.226 72.576 L799.226 27.2059 M799.226 9.54393 L806.68 9.54393 L806.68 18.9825 L799.226 18.9825 L799.226 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M839.857 32.4315 Q833.861 32.4315 830.377 37.1306 Q826.894 41.7891 826.894 49.9314 Q826.894 58.0738 830.337 62.7728 Q833.821 67.4314 839.857 67.4314 Q845.811 67.4314 849.295 62.7323 Q852.779 58.0333 852.779 49.9314 Q852.779 41.8701 849.295 37.1711 Q845.811 32.4315 839.857 32.4315 M839.857 26.1121 Q849.579 26.1121 855.128 32.4315 Q860.678 38.7509 860.678 49.9314 Q860.678 61.0714 855.128 67.4314 Q849.579 73.7508 839.857 73.7508 Q830.094 73.7508 824.544 67.4314 Q819.035 61.0714 819.035 49.9314 Q819.035 38.7509 824.544 32.4315 Q830.094 26.1121 839.857 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M899.324 34.1734 Q898.068 33.4443 896.569 33.1202 Q895.111 32.7556 893.328 32.7556 Q887.009 32.7556 883.606 36.8875 Q880.244 40.9789 880.244 48.6757 L880.244 72.576 L872.75 72.576 L872.75 27.2059 L880.244 27.2059 L880.244 34.2544 Q882.594 30.1225 886.361 28.1376 Q890.128 26.1121 895.516 26.1121 Q896.286 26.1121 897.217 26.2337 Q898.149 26.3147 899.283 26.5172 L899.324 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip072)\" style=\"stroke:#090621; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,886.071 240.213,886.66 241.066,887.014 243.338,887.952 244.567,888.454 245.611,888.882 247.883,889.806 248.98,890.249 250.155,890.724 252.428,891.634 \n", " 253.455,892.043 254.7,892.539 256.972,893.437 257.993,893.837 259.245,894.33 261.517,895.215 262.595,895.632 263.789,896.095 266.062,896.968 267.263,897.426 \n", " 268.334,897.836 270.607,898.697 271.998,899.22 272.879,899.552 275.151,900.403 276.803,901.015 277.424,901.245 279.696,902.085 281.68,902.809 281.968,902.915 \n", " 284.241,903.743 286.513,904.561 286.63,904.603 288.785,905.379 291.058,906.187 291.655,906.398 293.33,906.992 295.603,907.79 296.758,908.192 297.875,908.582 \n", " 300.147,909.371 301.942,909.986 302.42,910.151 304.692,910.93 306.964,911.699 307.208,911.781 309.237,912.467 311.509,913.227 312.559,913.575 313.781,913.983 \n", " 316.054,914.734 317.999,915.369 318.326,915.477 320.599,916.219 322.871,916.953 323.529,917.164 325.143,917.684 327.416,918.409 329.154,918.958 329.688,919.127 \n", " 331.96,919.845 334.233,920.553 334.877,920.752 336.505,921.26 338.777,921.96 340.701,922.547 341.05,922.654 343.322,923.347 345.595,924.032 346.629,924.341 \n", " 347.867,924.713 350.139,925.391 352.412,926.06 352.668,926.135 354.684,926.73 356.956,927.392 358.819,927.93 359.229,928.049 361.501,928.704 363.773,929.352 \n", " 365.089,929.724 366.046,929.996 368.318,930.638 370.59,931.271 371.483,931.518 372.863,931.903 375.135,932.531 377.408,933.151 378.006,933.313 379.68,933.77 \n", " 381.952,934.384 384.225,934.991 384.663,935.107 386.497,935.597 388.769,936.198 391.042,936.792 391.463,936.901 393.314,937.386 395.586,937.974 397.859,938.555 \n", " 398.411,938.696 400.131,939.136 402.404,939.712 404.676,940.281 405.515,940.49 406.948,940.849 409.221,941.413 411.493,941.97 412.785,942.284 413.765,942.525 \n", " 416.038,943.077 418.31,943.623 420.229,944.079 420.582,944.163 422.855,944.705 425.127,945.239 427.4,945.767 427.857,945.873 429.672,946.296 431.944,946.82 \n", " 434.217,947.337 435.681,947.667 436.489,947.851 438.761,948.364 441.034,948.871 443.306,949.372 443.714,949.462 445.578,949.874 447.851,950.371 450.123,950.861 \n", " 451.969,951.256 452.396,951.348 454.668,951.835 456.94,952.316 459.213,952.791 460.464,953.05 461.485,953.264 463.757,953.735 466.03,954.201 468.302,954.661 \n", " 469.216,954.845 470.574,955.12 472.847,955.577 475.119,956.028 477.392,956.473 478.245,956.639 479.664,956.918 481.936,957.36 484.209,957.796 486.481,958.228 \n", " 487.575,958.433 488.753,958.657 491.026,959.085 493.298,959.508 495.57,959.925 497.233,960.228 497.843,960.34 500.115,960.754 502.388,961.163 504.66,961.567 \n", " 506.932,961.966 507.252,962.022 509.205,962.366 511.477,962.762 513.749,963.153 516.022,963.539 517.669,963.816 518.294,963.923 520.566,964.306 522.839,964.684 \n", " 525.111,965.058 527.384,965.426 528.53,965.611 529.656,965.794 531.928,966.16 534.201,966.521 536.473,966.878 538.745,967.23 539.886,967.405 541.018,967.581 \n", " 543.29,967.93 545.562,968.275 547.835,968.615 550.107,968.951 551.807,969.199 552.38,969.284 554.652,969.617 556.924,969.946 559.197,970.27 561.469,970.59 \n", " 563.741,970.906 564.375,970.994 566.014,971.222 568.286,971.535 570.558,971.844 572.831,972.149 575.103,972.45 577.375,972.746 577.697,972.788 579.648,973.044 \n", " 581.92,973.337 584.193,973.627 586.465,973.913 588.737,974.195 591.01,974.473 591.915,974.582 593.282,974.75 595.554,975.025 597.827,975.296 600.099,975.564 \n", " 602.371,975.827 604.644,976.087 606.916,976.343 607.219,976.377 609.189,976.599 611.461,976.852 613.733,977.102 616.006,977.347 618.278,977.589 620.55,977.828 \n", " 622.823,978.063 623.887,978.171 625.095,978.296 627.367,978.528 629.64,978.756 631.912,978.981 634.185,979.202 636.457,979.419 638.729,979.633 641.002,979.844 \n", " 642.331,979.965 643.274,980.053 645.546,980.26 647.819,980.464 650.091,980.665 652.363,980.862 654.636,981.056 656.908,981.246 659.181,981.434 661.453,981.617 \n", " 663.241,981.76 663.725,981.799 665.998,981.979 668.27,982.156 670.542,982.33 672.815,982.501 675.087,982.668 677.359,982.833 679.632,982.994 681.904,983.151 \n", " 684.177,983.306 686.449,983.457 687.926,983.554 688.721,983.607 690.994,983.755 693.266,983.899 695.538,984.041 697.811,984.179 700.083,984.314 702.355,984.447 \n", " 704.628,984.576 706.9,984.702 709.173,984.825 711.445,984.945 713.717,985.062 715.99,985.175 718.262,985.286 719.566,985.348 720.534,985.395 722.807,985.502 \n", " 725.079,985.606 727.351,985.706 729.624,985.804 731.896,985.899 734.169,985.991 736.441,986.08 738.713,986.166 740.986,986.249 743.258,986.329 745.53,986.406 \n", " 747.803,986.48 750.075,986.551 752.347,986.619 754.62,986.685 756.892,986.747 759.164,986.807 761.437,986.864 763.709,986.917 765.982,986.968 768.254,987.017 \n", " 770.526,987.062 772.799,987.104 775.005,987.143 775.071,987.144 777.343,987.181 779.616,987.216 781.888,987.247 784.16,987.276 786.433,987.302 788.705,987.325 \n", " 790.978,987.345 793.25,987.362 795.522,987.377 797.795,987.388 800.067,987.397 802.339,987.402 804.612,987.405 806.884,987.405 809.156,987.402 811.429,987.397 \n", " 813.701,987.388 815.974,987.377 818.246,987.362 820.518,987.345 822.791,987.325 825.063,987.302 827.335,987.276 829.608,987.247 831.88,987.216 834.152,987.181 \n", " 836.425,987.144 836.491,987.143 838.697,987.104 840.97,987.062 843.242,987.017 845.514,986.968 847.787,986.917 850.059,986.864 852.331,986.807 854.604,986.747 \n", " 856.876,986.685 859.148,986.619 861.421,986.551 863.693,986.48 865.966,986.406 868.238,986.329 870.51,986.249 872.783,986.166 875.055,986.08 877.327,985.991 \n", " 879.6,985.899 881.872,985.804 884.144,985.706 886.417,985.606 888.689,985.502 890.962,985.395 891.93,985.348 893.234,985.286 895.506,985.175 897.779,985.062 \n", " 900.051,984.945 902.323,984.825 904.596,984.702 906.868,984.576 909.14,984.447 911.413,984.314 913.685,984.179 915.958,984.041 918.23,983.899 920.502,983.755 \n", " 922.775,983.607 923.57,983.554 925.047,983.457 927.319,983.306 929.592,983.151 931.864,982.994 934.136,982.833 936.409,982.668 938.681,982.501 940.954,982.33 \n", " 943.226,982.156 945.498,981.979 947.771,981.799 948.255,981.76 950.043,981.617 952.315,981.434 954.588,981.246 956.86,981.056 959.132,980.862 961.405,980.665 \n", " 963.677,980.464 965.949,980.26 968.222,980.053 969.165,979.965 970.494,979.844 972.767,979.633 975.039,979.419 977.311,979.202 979.584,978.981 981.856,978.756 \n", " 984.128,978.528 986.401,978.296 987.609,978.171 988.673,978.063 990.945,977.828 993.218,977.589 995.49,977.347 997.763,977.102 1000.03,976.852 1002.31,976.599 \n", " 1004.28,976.377 1004.58,976.343 1006.85,976.087 1009.12,975.827 1011.4,975.564 1013.67,975.296 1015.94,975.025 1018.21,974.75 1019.58,974.582 1020.49,974.473 \n", " 1022.76,974.195 1025.03,973.913 1027.3,973.627 1029.58,973.337 1031.85,973.044 1033.8,972.788 1034.12,972.746 1036.39,972.45 1038.67,972.149 1040.94,971.844 \n", " 1043.21,971.535 1045.48,971.222 1047.12,970.994 1047.75,970.906 1050.03,970.59 1052.3,970.27 1054.57,969.946 1056.84,969.617 1059.12,969.284 1059.69,969.199 \n", " 1061.39,968.951 1063.66,968.615 1065.93,968.275 1068.21,967.93 1070.48,967.581 1071.61,967.405 1072.75,967.23 1075.02,966.878 1077.3,966.521 1079.57,966.16 \n", " 1081.84,965.794 1082.97,965.611 1084.11,965.426 1086.38,965.058 1088.66,964.684 1090.93,964.306 1093.2,963.923 1093.83,963.816 1095.47,963.539 1097.75,963.153 \n", " 1100.02,962.762 1102.29,962.366 1104.24,962.022 1104.56,961.966 1106.84,961.567 1109.11,961.163 1111.38,960.754 1113.65,960.34 1114.26,960.228 1115.93,959.925 \n", " 1118.2,959.508 1120.47,959.085 1122.74,958.657 1123.92,958.433 1125.01,958.228 1127.29,957.796 1129.56,957.36 1131.83,956.918 1133.25,956.639 1134.1,956.473 \n", " 1136.38,956.028 1138.65,955.577 1140.92,955.12 1142.28,954.845 1143.19,954.661 1145.47,954.201 1147.74,953.735 1150.01,953.264 1151.03,953.05 1152.28,952.791 \n", " 1154.56,952.316 1156.83,951.835 1159.1,951.348 1159.53,951.256 1161.37,950.861 1163.65,950.371 1165.92,949.874 1167.78,949.462 1168.19,949.372 1170.46,948.871 \n", " 1172.73,948.364 1175.01,947.851 1175.81,947.667 1177.28,947.337 1179.55,946.82 1181.82,946.296 1183.64,945.873 1184.1,945.767 1186.37,945.239 1188.64,944.705 \n", " 1190.91,944.163 1191.27,944.079 1193.19,943.623 1195.46,943.077 1197.73,942.525 1198.71,942.284 1200,941.97 1202.28,941.413 1204.55,940.849 1205.98,940.49 \n", " 1206.82,940.281 1209.09,939.712 1211.36,939.136 1213.08,938.696 1213.64,938.555 1215.91,937.974 1218.18,937.386 1220.03,936.901 1220.45,936.792 1222.73,936.198 \n", " 1225,935.597 1226.83,935.107 1227.27,934.991 1229.54,934.384 1231.82,933.77 1233.49,933.313 1234.09,933.151 1236.36,932.531 1238.63,931.903 1240.01,931.518 \n", " 1240.91,931.271 1243.18,930.638 1245.45,929.996 1246.41,929.724 1247.72,929.352 1249.99,928.704 1252.27,928.049 1252.68,927.93 1254.54,927.392 1256.81,926.73 \n", " 1258.83,926.135 1259.08,926.06 1261.36,925.391 1263.63,924.713 1264.87,924.341 1265.9,924.032 1268.17,923.347 1270.45,922.654 1270.8,922.547 1272.72,921.96 \n", " 1274.99,921.26 1276.62,920.752 1277.26,920.553 1279.54,919.845 1281.81,919.127 1282.34,918.958 1284.08,918.409 1286.35,917.684 1287.97,917.164 1288.62,916.953 \n", " 1290.9,916.219 1293.17,915.477 1293.5,915.369 1295.44,914.734 1297.71,913.983 1298.94,913.575 1299.99,913.227 1302.26,912.467 1304.29,911.781 1304.53,911.699 \n", " 1306.8,910.93 1309.08,910.151 1309.55,909.986 1311.35,909.371 1313.62,908.582 1314.74,908.192 1315.89,907.79 1318.17,906.992 1319.84,906.398 1320.44,906.187 \n", " 1322.71,905.379 1324.87,904.603 1324.98,904.561 1327.26,903.743 1329.53,902.915 1329.82,902.809 1331.8,902.085 1334.07,901.245 1334.69,901.015 1336.34,900.403 \n", " 1338.62,899.552 1339.5,899.22 1340.89,898.697 1343.16,897.836 1344.23,897.426 1345.43,896.968 1347.71,896.095 1348.9,895.632 1349.98,895.215 1352.25,894.33 \n", " 1353.5,893.837 1354.52,893.437 1356.8,892.539 1358.04,892.043 1359.07,891.634 1361.34,890.724 1362.52,890.249 1363.61,889.806 1365.89,888.882 1366.93,888.454 \n", " 1368.16,887.952 1370.43,887.014 1371.28,886.66 1372.7,886.071 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#1f0c47; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,815.483 1370.48,816.681 1370.43,816.708 1368.16,817.924 1367.12,818.475 1365.89,819.128 1363.71,820.27 1363.61,820.32 1361.34,821.504 1360.26,822.064 \n", " 1359.07,822.676 1356.8,823.836 1356.75,823.858 1354.52,824.988 1353.2,825.653 1352.25,826.129 1349.98,827.259 1349.6,827.447 1347.71,828.381 1345.95,829.241 \n", " 1345.43,829.492 1343.16,830.594 1342.24,831.036 1340.89,831.687 1338.62,832.768 1338.49,832.83 1336.34,833.844 1334.68,834.624 1334.07,834.908 1331.8,835.964 \n", " 1330.81,836.419 1329.53,837.011 1327.26,838.048 1326.89,838.213 1324.98,839.079 1322.91,840.007 1322.71,840.098 1320.44,841.112 1318.88,841.802 1318.17,842.115 \n", " 1315.89,843.112 1314.78,843.596 1313.62,844.099 1311.35,845.078 1310.62,845.39 1309.08,846.051 1306.8,847.013 1306.4,847.185 1304.53,847.97 1302.26,848.917 \n", " 1302.11,848.979 1299.99,849.859 1297.76,850.773 1297.71,850.79 1295.44,851.717 1293.33,852.568 1293.17,852.634 1290.9,853.546 1288.84,854.362 1288.62,854.448 \n", " 1286.35,855.346 1284.28,856.156 1284.08,856.233 1281.81,857.117 1279.64,857.951 1279.54,857.99 1277.26,858.86 1274.99,859.72 1274.92,859.745 1272.72,860.576 \n", " 1270.45,861.422 1270.13,861.539 1268.17,862.265 1265.9,863.099 1265.26,863.334 1263.63,863.927 1261.36,864.748 1260.3,865.128 1259.08,865.564 1256.81,866.372 \n", " 1255.25,866.922 1254.54,867.174 1252.27,867.971 1250.12,868.717 1249.99,868.759 1247.72,869.545 1245.45,870.321 1244.89,870.511 1243.18,871.093 1240.91,871.858 \n", " 1239.57,872.305 1238.63,872.618 1236.36,873.372 1234.14,874.1 1234.09,874.117 1231.82,874.861 1229.54,875.596 1228.62,875.894 1227.27,876.327 1225,877.052 \n", " 1222.98,877.688 1222.73,877.769 1220.45,878.484 1218.18,879.191 1217.24,879.483 1215.91,879.893 1213.64,880.59 1211.37,881.277 1211.36,881.279 1209.09,881.967 \n", " 1206.82,882.647 1205.39,883.071 1204.55,883.321 1202.28,883.992 1200,884.655 1199.28,884.866 1197.73,885.315 1195.46,885.969 1193.19,886.616 1193.03,886.66 \n", " 1190.91,887.261 1188.64,887.899 1186.64,888.454 1186.37,888.531 1184.1,889.161 1181.82,889.784 1180.11,890.249 1179.55,890.401 1177.28,891.016 1175.01,891.624 \n", " 1173.42,892.043 1172.73,892.226 1170.46,892.826 1168.19,893.419 1166.57,893.837 1165.92,894.007 1163.65,894.593 1161.37,895.171 1159.55,895.632 1159.1,895.744 \n", " 1156.83,896.316 1154.56,896.881 1152.34,897.426 1152.28,897.439 1150.01,897.997 1147.74,898.549 1145.47,899.093 1144.93,899.22 1143.19,899.637 1140.92,900.175 \n", " 1138.65,900.707 1137.32,901.015 1136.38,901.235 1134.1,901.76 1131.83,902.279 1129.56,902.792 1129.48,902.809 1127.29,903.305 1125.01,903.812 1122.74,904.312 \n", " 1121.41,904.603 1120.47,904.809 1118.2,905.304 1115.93,905.793 1113.65,906.275 1113.07,906.398 1111.38,906.757 1109.11,907.234 1106.84,907.705 1104.56,908.171 \n", " 1104.46,908.192 1102.29,908.636 1100.02,909.096 1097.75,909.55 1095.54,909.986 1095.47,909.999 1093.2,910.448 1090.93,910.891 1088.66,911.329 1086.38,911.761 \n", " 1086.28,911.781 1084.11,912.194 1081.84,912.621 1079.57,913.043 1077.3,913.459 1076.66,913.575 1075.02,913.875 1072.75,914.286 1070.48,914.692 1068.21,915.093 \n", " 1066.62,915.369 1065.93,915.491 1063.66,915.887 1061.39,916.278 1059.12,916.664 1056.84,917.045 1056.13,917.164 1054.57,917.425 1052.3,917.801 1050.03,918.173 \n", " 1047.75,918.539 1045.48,918.901 1045.12,918.958 1043.21,919.262 1040.94,919.619 1038.67,919.971 1036.39,920.319 1034.12,920.662 1033.51,920.752 1031.85,921.003 \n", " 1029.58,921.342 1027.3,921.675 1025.03,922.005 1022.76,922.329 1021.22,922.547 1020.49,922.651 1018.21,922.971 1015.94,923.286 1013.67,923.597 1011.4,923.904 \n", " 1009.12,924.207 1008.1,924.341 1006.85,924.507 1004.58,924.805 1002.31,925.099 1000.03,925.388 997.763,925.673 995.49,925.954 994.001,926.135 993.218,926.232 \n", " 990.945,926.508 988.673,926.781 986.401,927.049 984.128,927.313 981.856,927.573 979.584,927.828 978.672,927.93 977.311,928.082 975.039,928.334 972.767,928.581 \n", " 970.494,928.825 968.222,929.064 965.949,929.3 963.677,929.531 961.754,929.724 961.405,929.759 959.132,929.986 956.86,930.21 954.588,930.429 952.315,930.645 \n", " 950.043,930.856 947.771,931.064 945.498,931.268 943.226,931.469 942.655,931.518 940.954,931.668 938.681,931.864 936.409,932.056 934.136,932.244 931.864,932.429 \n", " 929.592,932.61 927.319,932.787 925.047,932.961 922.775,933.131 920.502,933.298 920.297,933.313 918.23,933.463 915.958,933.625 913.685,933.783 911.413,933.938 \n", " 909.14,934.089 906.868,934.237 904.596,934.381 902.323,934.521 900.051,934.659 897.779,934.792 895.506,934.923 893.234,935.049 892.173,935.107 890.962,935.174 \n", " 888.689,935.295 886.417,935.414 884.144,935.529 881.872,935.64 879.6,935.748 877.327,935.853 875.055,935.954 872.783,936.052 870.51,936.146 868.238,936.238 \n", " 865.966,936.325 863.693,936.41 861.421,936.491 859.148,936.569 856.876,936.643 854.604,936.715 852.331,936.783 850.059,936.847 848.057,936.901 847.787,936.909 \n", " 845.514,936.968 843.242,937.023 840.97,937.076 838.697,937.125 836.425,937.171 834.152,937.213 831.88,937.252 829.608,937.288 827.335,937.321 825.063,937.35 \n", " 822.791,937.376 820.518,937.399 818.246,937.419 815.974,937.435 813.701,937.448 811.429,937.458 809.156,937.464 806.884,937.468 804.612,937.468 802.339,937.464 \n", " 800.067,937.458 797.795,937.448 795.522,937.435 793.25,937.419 790.978,937.399 788.705,937.376 786.433,937.35 784.16,937.321 781.888,937.288 779.616,937.252 \n", " 777.343,937.213 775.071,937.171 772.799,937.125 770.526,937.076 768.254,937.023 765.982,936.968 763.709,936.909 763.439,936.901 761.437,936.847 759.164,936.783 \n", " 756.892,936.715 754.62,936.643 752.347,936.569 750.075,936.491 747.803,936.41 745.53,936.325 743.258,936.238 740.986,936.146 738.713,936.052 736.441,935.954 \n", " 734.169,935.853 731.896,935.748 729.624,935.64 727.351,935.529 725.079,935.414 722.807,935.295 720.534,935.174 719.322,935.107 718.262,935.049 715.99,934.923 \n", " 713.717,934.792 711.445,934.659 709.173,934.521 706.9,934.381 704.628,934.237 702.355,934.089 700.083,933.938 697.811,933.783 695.538,933.625 693.266,933.463 \n", " 691.199,933.313 690.994,933.298 688.721,933.131 686.449,932.961 684.177,932.787 681.904,932.61 679.632,932.429 677.359,932.244 675.087,932.056 672.815,931.864 \n", " 670.542,931.668 668.84,931.518 668.27,931.469 665.998,931.268 663.725,931.064 661.453,930.856 659.181,930.645 656.908,930.429 654.636,930.21 652.363,929.986 \n", " 650.091,929.759 649.742,929.724 647.819,929.531 645.546,929.3 643.274,929.064 641.002,928.825 638.729,928.581 636.457,928.334 634.185,928.082 632.824,927.93 \n", " 631.912,927.828 629.64,927.573 627.367,927.313 625.095,927.049 622.823,926.781 620.55,926.508 618.278,926.232 617.494,926.135 616.006,925.954 613.733,925.673 \n", " 611.461,925.388 609.189,925.099 606.916,924.805 604.644,924.507 603.394,924.341 602.371,924.207 600.099,923.904 597.827,923.597 595.554,923.286 593.282,922.971 \n", " 591.01,922.651 590.28,922.547 588.737,922.329 586.465,922.005 584.193,921.675 581.92,921.342 579.648,921.003 577.982,920.752 577.375,920.662 575.103,920.319 \n", " 572.831,919.971 570.558,919.619 568.286,919.262 566.375,918.958 566.014,918.901 563.741,918.539 561.469,918.173 559.197,917.801 556.924,917.425 555.364,917.164 \n", " 554.652,917.045 552.38,916.664 550.107,916.278 547.835,915.887 545.562,915.491 544.871,915.369 543.29,915.093 541.018,914.692 538.745,914.286 536.473,913.875 \n", " 534.838,913.575 534.201,913.459 531.928,913.043 529.656,912.621 527.384,912.194 525.213,911.781 525.111,911.761 522.839,911.329 520.566,910.891 518.294,910.448 \n", " 516.022,909.999 515.958,909.986 513.749,909.55 511.477,909.096 509.205,908.636 507.037,908.192 506.932,908.171 504.66,907.705 502.388,907.234 500.115,906.757 \n", " 498.423,906.398 497.843,906.275 495.57,905.793 493.298,905.304 491.026,904.809 490.088,904.603 488.753,904.312 486.481,903.812 484.209,903.305 482.012,902.809 \n", " 481.936,902.792 479.664,902.279 477.392,901.76 475.119,901.235 474.176,901.015 472.847,900.707 470.574,900.175 468.302,899.637 466.564,899.22 466.03,899.093 \n", " 463.757,898.549 461.485,897.997 459.213,897.439 459.159,897.426 456.94,896.881 454.668,896.316 452.396,895.744 451.951,895.632 450.123,895.171 447.851,894.593 \n", " 445.578,894.007 444.926,893.837 443.306,893.419 441.034,892.826 438.761,892.226 438.074,892.043 436.489,891.624 434.217,891.016 431.944,890.401 431.386,890.249 \n", " 429.672,889.784 427.4,889.161 425.127,888.531 424.852,888.454 422.855,887.899 420.582,887.261 418.467,886.66 418.31,886.616 416.038,885.969 413.765,885.315 \n", " 412.221,884.866 411.493,884.655 409.221,883.992 406.948,883.321 406.108,883.071 404.676,882.647 402.404,881.967 400.131,881.279 400.124,881.277 397.859,880.59 \n", " 395.586,879.893 394.26,879.483 393.314,879.191 391.042,878.484 388.769,877.769 388.514,877.688 386.497,877.052 384.225,876.327 382.88,875.894 381.952,875.596 \n", " 379.68,874.861 377.408,874.117 377.354,874.1 375.135,873.372 372.863,872.618 371.93,872.305 370.59,871.858 368.318,871.093 366.606,870.511 366.046,870.321 \n", " 363.773,869.545 361.501,868.759 361.379,868.717 359.229,867.971 356.956,867.174 356.244,866.922 354.684,866.372 352.412,865.564 351.198,865.128 350.139,864.748 \n", " 347.867,863.927 346.24,863.334 345.595,863.099 343.322,862.265 341.365,861.539 341.05,861.422 338.777,860.576 336.572,859.745 336.505,859.72 334.233,858.86 \n", " 331.96,857.99 331.857,857.951 329.688,857.117 327.416,856.233 327.218,856.156 325.143,855.346 322.871,854.448 322.654,854.362 320.599,853.546 318.326,852.634 \n", " 318.162,852.568 316.054,851.717 313.781,850.79 313.74,850.773 311.509,849.859 309.386,848.979 309.237,848.917 306.964,847.97 305.099,847.185 304.692,847.013 \n", " 302.42,846.051 300.876,845.39 300.147,845.078 297.875,844.099 296.717,843.596 295.603,843.112 293.33,842.115 292.619,841.802 291.058,841.112 288.785,840.098 \n", " 288.583,840.007 286.513,839.079 284.604,838.213 284.241,838.048 281.968,837.011 280.682,836.419 279.696,835.964 277.424,834.908 276.818,834.624 275.151,833.844 \n", " 273.009,832.83 272.879,832.768 270.607,831.687 269.252,831.036 268.334,830.594 266.062,829.492 265.548,829.241 263.789,828.381 261.897,827.447 261.517,827.259 \n", " 259.245,826.129 258.295,825.653 256.972,824.988 254.744,823.858 254.7,823.836 252.428,822.676 251.24,822.064 250.155,821.504 247.883,820.32 247.786,820.27 \n", " 245.611,819.128 244.376,818.475 243.338,817.924 241.066,816.708 241.015,816.681 238.793,815.483 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#3b0964; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,757.823 240.808,759.262 241.066,759.445 243.338,761.046 243.353,761.057 245.611,762.627 245.934,762.851 247.883,764.188 248.553,764.645 250.155,765.729 \n", " 251.211,766.44 252.428,767.252 253.908,768.234 254.7,768.756 256.644,770.028 256.972,770.241 259.245,771.71 259.42,771.823 261.517,773.161 262.236,773.617 \n", " 263.789,774.595 265.094,775.411 266.062,776.013 267.994,777.206 268.334,777.414 270.607,778.8 270.936,779 272.879,780.171 273.921,780.794 275.151,781.526 \n", " 276.95,782.589 277.424,782.866 279.696,784.192 280.025,784.383 281.968,785.504 283.144,786.177 284.241,786.802 286.31,787.972 286.513,788.086 288.785,789.356 \n", " 289.523,789.766 291.058,790.614 292.784,791.56 293.33,791.858 295.603,793.09 296.094,793.355 297.875,794.309 299.454,795.149 300.147,795.516 302.42,796.71 \n", " 302.866,796.943 304.692,797.893 306.329,798.738 306.964,799.064 309.237,800.224 309.845,800.532 311.509,801.372 313.416,802.326 313.781,802.509 316.054,803.635 \n", " 317.041,804.121 318.326,804.75 320.599,805.854 320.725,805.915 322.871,806.949 324.465,807.709 325.143,808.032 327.416,809.106 328.264,809.504 329.688,810.169 \n", " 331.96,811.222 332.126,811.298 334.233,812.266 336.048,813.092 336.505,813.3 338.777,814.324 340.035,814.887 341.05,815.339 343.322,816.345 344.087,816.681 \n", " 345.595,817.342 347.867,818.328 348.207,818.475 350.139,819.308 352.396,820.27 352.412,820.276 354.684,821.238 356.655,822.064 356.956,822.19 359.229,823.135 \n", " 360.988,823.858 361.501,824.069 363.773,824.997 365.396,825.653 366.046,825.915 368.318,826.826 369.881,827.447 370.59,827.729 372.863,828.624 374.446,829.241 \n", " 375.135,829.51 377.408,830.39 379.094,831.036 379.68,831.26 381.952,832.125 383.827,832.83 384.225,832.98 386.497,833.829 388.648,834.624 388.769,834.669 \n", " 391.042,835.505 393.314,836.33 393.56,836.419 395.586,837.151 397.859,837.962 398.566,838.213 400.131,838.768 402.404,839.566 403.671,840.007 404.676,840.357 \n", " 406.948,841.142 408.877,841.802 409.221,841.919 411.493,842.691 413.765,843.454 414.19,843.596 416.038,844.213 418.31,844.964 419.612,845.39 420.582,845.709 \n", " 422.855,846.447 425.127,847.178 425.149,847.185 427.4,847.905 429.672,848.623 430.807,848.979 431.944,849.336 434.217,850.044 436.489,850.743 436.59,850.773 \n", " 438.761,851.439 441.034,852.127 442.504,852.568 443.306,852.809 445.578,853.486 447.851,854.156 448.557,854.362 450.123,854.821 452.396,855.48 454.668,856.132 \n", " 454.754,856.156 456.94,856.781 459.213,857.422 461.105,857.951 461.485,858.057 463.757,858.689 466.03,859.313 467.617,859.745 468.302,859.932 470.574,860.547 \n", " 472.847,861.154 474.301,861.539 475.119,861.757 477.392,862.355 479.664,862.947 481.166,863.334 481.936,863.533 484.209,864.115 486.481,864.691 488.225,865.128 \n", " 488.753,865.261 491.026,865.828 493.298,866.388 495.49,866.922 495.57,866.942 497.843,867.494 500.115,868.039 502.388,868.578 502.978,868.717 504.66,869.114 \n", " 506.932,869.644 509.205,870.169 510.704,870.511 511.477,870.688 513.749,871.205 516.022,871.715 518.294,872.219 518.687,872.305 520.566,872.721 522.839,873.217 \n", " 525.111,873.707 526.951,874.1 527.384,874.192 529.656,874.675 531.928,875.152 534.201,875.623 535.521,875.894 536.473,876.09 538.745,876.554 541.018,877.012 \n", " 543.29,877.465 544.425,877.688 545.562,877.914 547.835,878.359 550.107,878.799 552.38,879.233 553.701,879.483 554.652,879.663 556.924,880.091 559.197,880.513 \n", " 561.469,880.929 563.391,881.277 563.741,881.341 566.014,881.751 568.286,882.155 570.558,882.555 572.831,882.948 573.547,883.071 575.103,883.34 577.375,883.728 \n", " 579.648,884.11 581.92,884.487 584.193,884.859 584.231,884.866 586.465,885.23 588.737,885.596 591.01,885.957 593.282,886.313 595.526,886.66 595.554,886.664 \n", " 597.827,887.014 600.099,887.359 602.371,887.699 604.644,888.035 606.916,888.365 607.538,888.454 609.189,888.693 611.461,889.018 613.733,889.337 616.006,889.653 \n", " 618.278,889.963 620.401,890.249 620.55,890.269 622.823,890.573 625.095,890.873 627.367,891.169 629.64,891.459 631.912,891.746 634.185,892.027 634.311,892.043 \n", " 636.457,892.308 638.729,892.584 641.002,892.855 643.274,893.123 645.546,893.385 647.819,893.644 649.548,893.837 650.091,893.899 652.363,894.151 654.636,894.4 \n", " 656.908,894.644 659.181,894.884 661.453,895.119 663.725,895.351 665.998,895.578 666.542,895.632 668.27,895.803 670.542,896.025 672.815,896.242 675.087,896.455 \n", " 677.359,896.665 679.632,896.87 681.904,897.071 684.177,897.267 686.042,897.426 686.449,897.461 688.721,897.652 690.994,897.839 693.266,898.022 695.538,898.202 \n", " 697.811,898.377 700.083,898.548 702.355,898.716 704.628,898.879 706.9,899.039 709.173,899.194 709.561,899.22 711.445,899.348 713.717,899.497 715.99,899.643 \n", " 718.262,899.786 720.534,899.924 722.807,900.058 725.079,900.189 727.351,900.316 729.624,900.439 731.896,900.558 734.169,900.674 736.441,900.785 738.713,900.894 \n", " 740.986,900.998 741.361,901.015 743.258,901.1 745.53,901.198 747.803,901.292 750.075,901.383 752.347,901.47 754.62,901.553 756.892,901.633 759.164,901.709 \n", " 761.437,901.781 763.709,901.85 765.982,901.915 768.254,901.976 770.526,902.034 772.799,902.088 775.071,902.138 777.343,902.185 779.616,902.228 781.888,902.268 \n", " 784.16,902.304 786.433,902.336 788.705,902.365 790.978,902.39 793.25,902.412 795.522,902.43 797.795,902.444 800.067,902.455 802.339,902.462 804.612,902.466 \n", " 806.884,902.466 809.156,902.462 811.429,902.455 813.701,902.444 815.974,902.43 818.246,902.412 820.518,902.39 822.791,902.365 825.063,902.336 827.335,902.304 \n", " 829.608,902.268 831.88,902.228 834.152,902.185 836.425,902.138 838.697,902.088 840.97,902.034 843.242,901.976 845.514,901.915 847.787,901.85 850.059,901.781 \n", " 852.331,901.709 854.604,901.633 856.876,901.553 859.148,901.47 861.421,901.383 863.693,901.292 865.966,901.198 868.238,901.1 870.135,901.015 870.51,900.998 \n", " 872.783,900.894 875.055,900.785 877.327,900.674 879.6,900.558 881.872,900.439 884.144,900.316 886.417,900.189 888.689,900.058 890.962,899.924 893.234,899.786 \n", " 895.506,899.643 897.779,899.497 900.051,899.348 901.935,899.22 902.323,899.194 904.596,899.039 906.868,898.879 909.14,898.716 911.413,898.548 913.685,898.377 \n", " 915.958,898.202 918.23,898.022 920.502,897.839 922.775,897.652 925.047,897.461 925.454,897.426 927.319,897.267 929.592,897.071 931.864,896.87 934.136,896.665 \n", " 936.409,896.455 938.681,896.242 940.954,896.025 943.226,895.803 944.954,895.632 945.498,895.578 947.771,895.351 950.043,895.119 952.315,894.884 954.588,894.644 \n", " 956.86,894.4 959.132,894.151 961.405,893.899 961.948,893.837 963.677,893.644 965.949,893.385 968.222,893.123 970.494,892.855 972.767,892.584 975.039,892.308 \n", " 977.185,892.043 977.311,892.027 979.584,891.746 981.856,891.459 984.128,891.169 986.401,890.873 988.673,890.573 990.945,890.269 991.095,890.249 993.218,889.963 \n", " 995.49,889.653 997.763,889.337 1000.03,889.018 1002.31,888.693 1003.96,888.454 1004.58,888.365 1006.85,888.035 1009.12,887.699 1011.4,887.359 1013.67,887.014 \n", " 1015.94,886.664 1015.97,886.66 1018.21,886.313 1020.49,885.957 1022.76,885.596 1025.03,885.23 1027.27,884.866 1027.3,884.859 1029.58,884.487 1031.85,884.11 \n", " 1034.12,883.728 1036.39,883.34 1037.95,883.071 1038.67,882.948 1040.94,882.555 1043.21,882.155 1045.48,881.751 1047.75,881.341 1048.11,881.277 1050.03,880.929 \n", " 1052.3,880.513 1054.57,880.091 1056.84,879.663 1057.79,879.483 1059.12,879.233 1061.39,878.799 1063.66,878.359 1065.93,877.914 1067.07,877.688 1068.21,877.465 \n", " 1070.48,877.012 1072.75,876.554 1075.02,876.09 1075.98,875.894 1077.3,875.623 1079.57,875.152 1081.84,874.675 1084.11,874.192 1084.54,874.1 1086.38,873.707 \n", " 1088.66,873.217 1090.93,872.721 1092.81,872.305 1093.2,872.219 1095.47,871.715 1097.75,871.205 1100.02,870.688 1100.79,870.511 1102.29,870.169 1104.56,869.644 \n", " 1106.84,869.114 1108.52,868.717 1109.11,868.578 1111.38,868.039 1113.65,867.494 1115.93,866.942 1116.01,866.922 1118.2,866.388 1120.47,865.828 1122.74,865.261 \n", " 1123.27,865.128 1125.01,864.691 1127.29,864.115 1129.56,863.533 1130.33,863.334 1131.83,862.947 1134.1,862.355 1136.38,861.757 1137.19,861.539 1138.65,861.154 \n", " 1140.92,860.547 1143.19,859.932 1143.88,859.745 1145.47,859.313 1147.74,858.689 1150.01,858.057 1150.39,857.951 1152.28,857.422 1154.56,856.781 1156.74,856.156 \n", " 1156.83,856.132 1159.1,855.48 1161.37,854.821 1162.94,854.362 1163.65,854.156 1165.92,853.486 1168.19,852.809 1168.99,852.568 1170.46,852.127 1172.73,851.439 \n", " 1174.91,850.773 1175.01,850.743 1177.28,850.044 1179.55,849.336 1180.69,848.979 1181.82,848.623 1184.1,847.905 1186.35,847.185 1186.37,847.178 1188.64,846.447 \n", " 1190.91,845.709 1191.88,845.39 1193.19,844.964 1195.46,844.213 1197.31,843.596 1197.73,843.454 1200,842.691 1202.28,841.919 1202.62,841.802 1204.55,841.142 \n", " 1206.82,840.357 1207.82,840.007 1209.09,839.566 1211.36,838.768 1212.93,838.213 1213.64,837.962 1215.91,837.151 1217.94,836.419 1218.18,836.33 1220.45,835.505 \n", " 1222.73,834.669 1222.85,834.624 1225,833.829 1227.27,832.98 1227.67,832.83 1229.54,832.125 1231.82,831.26 1232.4,831.036 1234.09,830.39 1236.36,829.51 \n", " 1237.05,829.241 1238.63,828.624 1240.91,827.729 1241.61,827.447 1243.18,826.826 1245.45,825.915 1246.1,825.653 1247.72,824.997 1249.99,824.069 1250.51,823.858 \n", " 1252.27,823.135 1254.54,822.19 1254.84,822.064 1256.81,821.238 1259.08,820.276 1259.1,820.27 1261.36,819.308 1263.29,818.475 1263.63,818.328 1265.9,817.342 \n", " 1267.41,816.681 1268.17,816.345 1270.45,815.339 1271.46,814.887 1272.72,814.324 1274.99,813.3 1275.45,813.092 1277.26,812.266 1279.37,811.298 1279.54,811.222 \n", " 1281.81,810.169 1283.23,809.504 1284.08,809.106 1286.35,808.032 1287.03,807.709 1288.62,806.949 1290.77,805.915 1290.9,805.854 1293.17,804.75 1294.45,804.121 \n", " 1295.44,803.635 1297.71,802.509 1298.08,802.326 1299.99,801.372 1301.65,800.532 1302.26,800.224 1304.53,799.064 1305.17,798.738 1306.8,797.893 1308.63,796.943 \n", " 1309.08,796.71 1311.35,795.516 1312.04,795.149 1313.62,794.309 1315.4,793.355 1315.89,793.09 1318.17,791.858 1318.71,791.56 1320.44,790.614 1321.97,789.766 \n", " 1322.71,789.356 1324.98,788.086 1325.19,787.972 1327.26,786.802 1328.35,786.177 1329.53,785.504 1331.47,784.383 1331.8,784.192 1334.07,782.866 1334.55,782.589 \n", " 1336.34,781.526 1337.58,780.794 1338.62,780.171 1340.56,779 1340.89,778.8 1343.16,777.414 1343.5,777.206 1345.43,776.013 1346.4,775.411 1347.71,774.595 \n", " 1349.26,773.617 1349.98,773.161 1352.08,771.823 1352.25,771.71 1354.52,770.241 1354.85,770.028 1356.8,768.756 1357.59,768.234 1359.07,767.252 1360.28,766.44 \n", " 1361.34,765.729 1362.94,764.645 1363.61,764.188 1365.56,762.851 1365.89,762.627 1368.14,761.057 1368.16,761.046 1370.43,759.445 1370.69,759.262 1372.7,757.823 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#550f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,699.349 1372.05,700.049 1370.43,701.759 1370.35,701.844 1368.62,703.638 1368.16,704.11 1366.86,705.432 1365.89,706.409 1365.07,707.227 1363.61,708.658 \n", " 1363.24,709.021 1361.39,710.815 1361.34,710.859 1359.5,712.61 1359.07,713.014 1357.58,714.404 1356.8,715.126 1355.63,716.198 1354.52,717.197 1353.64,717.993 \n", " 1352.25,719.229 1351.62,719.787 1349.98,721.223 1349.57,721.581 1347.71,723.182 1347.48,723.376 1345.43,725.105 1345.36,725.17 1343.2,726.964 1343.16,726.996 \n", " 1341.01,728.759 1340.89,728.854 1338.78,730.553 1338.62,730.681 1336.51,732.347 1336.34,732.479 1334.21,734.142 1334.07,734.249 1331.87,735.936 1331.8,735.99 \n", " 1329.53,737.705 1329.49,737.73 1327.26,739.394 1327.08,739.525 1324.98,741.058 1324.62,741.319 1322.71,742.698 1322.13,743.113 1320.44,744.314 1319.6,744.908 \n", " 1318.17,745.908 1317.02,746.702 1315.89,747.479 1314.41,748.496 1313.62,749.029 1311.75,750.291 1311.35,750.558 1309.08,752.067 1309.05,752.085 1306.8,753.555 \n", " 1306.31,753.879 1304.53,755.024 1303.52,755.674 1302.26,756.475 1300.69,757.468 1299.99,757.907 1297.81,759.262 1297.71,759.32 1295.44,760.717 1294.89,761.057 \n", " 1293.17,762.096 1291.92,762.851 1290.9,763.459 1288.9,764.645 1288.62,764.805 1286.35,766.135 1285.83,766.44 1284.08,767.449 1282.71,768.234 1281.81,768.748 \n", " 1279.54,770.028 1279.54,770.032 1277.26,771.302 1276.32,771.823 1274.99,772.557 1273.05,773.617 1272.72,773.797 1270.45,775.024 1269.72,775.411 1268.17,776.237 \n", " 1266.34,777.206 1265.9,777.437 1263.63,778.624 1262.9,779 1261.36,779.798 1259.41,780.794 1259.08,780.958 1256.81,782.107 1255.85,782.589 1254.54,783.244 \n", " 1252.27,784.368 1252.24,784.383 1249.99,785.481 1248.56,786.177 1247.72,786.581 1245.45,787.671 1244.82,787.972 1243.18,788.749 1241.01,789.766 1240.91,789.816 \n", " 1238.63,790.872 1237.14,791.56 1236.36,791.918 1234.09,792.952 1233.2,793.355 1231.82,793.977 1229.54,794.99 1229.19,795.149 1227.27,795.995 1225.1,796.943 \n", " 1225,796.988 1222.73,797.973 1220.94,798.738 1220.45,798.946 1218.18,799.911 1216.71,800.532 1215.91,800.866 1213.64,801.812 1212.39,802.326 1211.36,802.748 \n", " 1209.09,803.676 1207.99,804.121 1206.82,804.594 1204.55,805.503 1203.51,805.915 1202.28,806.404 1200,807.296 1198.94,807.709 1197.73,808.179 1195.46,809.054 \n", " 1194.28,809.504 1193.19,809.92 1190.91,810.779 1189.53,811.298 1188.64,811.628 1186.37,812.47 1184.67,813.092 1184.1,813.304 1181.82,814.13 1179.72,814.887 \n", " 1179.55,814.947 1177.28,815.758 1175.01,816.56 1174.66,816.681 1172.73,817.356 1170.46,818.143 1169.49,818.475 1168.19,818.923 1165.92,819.695 1164.21,820.27 \n", " 1163.65,820.46 1161.37,821.218 1159.1,821.968 1158.81,822.064 1156.83,822.713 1154.56,823.449 1153.28,823.858 1152.28,824.178 1150.01,824.901 1147.74,825.616 \n", " 1147.62,825.653 1145.47,826.326 1143.19,827.028 1141.82,827.447 1140.92,827.723 1138.65,828.413 1136.38,829.094 1135.88,829.241 1134.1,829.77 1131.83,830.44 \n", " 1129.79,831.036 1129.56,831.102 1127.29,831.759 1125.01,832.409 1123.53,832.83 1122.74,833.053 1120.47,833.691 1118.2,834.322 1117.1,834.624 1115.93,834.947 \n", " 1113.65,835.567 1111.38,836.18 1110.49,836.419 1109.11,836.787 1106.84,837.389 1104.56,837.984 1103.68,838.213 1102.29,838.574 1100.02,839.158 1097.75,839.735 \n", " 1096.66,840.007 1095.47,840.307 1093.2,840.875 1090.93,841.435 1089.43,841.802 1088.66,841.99 1086.38,842.54 1084.11,843.084 1081.95,843.596 1081.84,843.621 \n", " 1079.57,844.155 1077.3,844.683 1075.02,845.204 1074.2,845.39 1072.75,845.721 1070.48,846.233 1068.21,846.738 1066.17,847.185 1065.93,847.238 1063.66,847.735 \n", " 1061.39,848.225 1059.12,848.709 1057.83,848.979 1056.84,849.188 1054.57,849.664 1052.3,850.133 1050.03,850.596 1049.15,850.773 1047.75,851.056 1045.48,851.511 \n", " 1043.21,851.96 1040.94,852.403 1040.08,852.568 1038.67,852.842 1036.39,853.277 1034.12,853.706 1031.85,854.13 1030.59,854.362 1029.58,854.549 1027.3,854.964 \n", " 1025.03,855.374 1022.76,855.778 1020.61,856.156 1020.49,856.177 1018.21,856.574 1015.94,856.965 1013.67,857.35 1011.4,857.731 1010.06,857.951 1009.12,858.107 \n", " 1006.85,858.479 1004.58,858.847 1002.31,859.209 1000.03,859.565 998.877,859.745 997.763,859.919 995.49,860.268 993.218,860.612 990.945,860.951 988.673,861.286 \n", " 986.921,861.539 986.401,861.615 984.128,861.942 981.856,862.264 979.584,862.581 977.311,862.893 975.039,863.2 974.032,863.334 972.767,863.503 970.494,863.803 \n", " 968.222,864.098 965.949,864.389 963.677,864.674 961.405,864.955 959.979,865.128 959.132,865.232 956.86,865.505 954.588,865.774 952.315,866.039 950.043,866.298 \n", " 947.771,866.553 945.498,866.804 944.405,866.922 943.226,867.051 940.954,867.295 938.681,867.534 936.409,867.768 934.136,867.998 931.864,868.224 929.592,868.445 \n", " 927.319,868.661 926.728,868.717 925.047,868.875 922.775,869.085 920.502,869.29 918.23,869.491 915.958,869.688 913.685,869.88 911.413,870.068 909.14,870.252 \n", " 906.868,870.431 905.834,870.511 904.596,870.607 902.323,870.78 900.051,870.948 897.779,871.112 895.506,871.272 893.234,871.428 890.962,871.579 888.689,871.726 \n", " 886.417,871.869 884.144,872.008 881.872,872.143 879.6,872.274 879.03,872.305 877.327,872.401 875.055,872.525 872.783,872.644 870.51,872.76 868.238,872.871 \n", " 865.966,872.978 863.693,873.082 861.421,873.181 859.148,873.276 856.876,873.367 854.604,873.454 852.331,873.537 850.059,873.616 847.787,873.691 845.514,873.762 \n", " 843.242,873.829 840.97,873.892 838.697,873.951 836.425,874.006 834.152,874.057 832.107,874.1 831.88,874.104 829.608,874.148 827.335,874.188 825.063,874.223 \n", " 822.791,874.255 820.518,874.283 818.246,874.307 815.974,874.327 813.701,874.342 811.429,874.354 809.156,874.362 806.884,874.366 804.612,874.366 802.339,874.362 \n", " 800.067,874.354 797.795,874.342 795.522,874.327 793.25,874.307 790.978,874.283 788.705,874.255 786.433,874.223 784.16,874.188 781.888,874.148 779.616,874.104 \n", " 779.389,874.1 777.343,874.057 775.071,874.006 772.799,873.951 770.526,873.892 768.254,873.829 765.982,873.762 763.709,873.691 761.437,873.616 759.164,873.537 \n", " 756.892,873.454 754.62,873.367 752.347,873.276 750.075,873.181 747.803,873.082 745.53,872.978 743.258,872.871 740.986,872.76 738.713,872.644 736.441,872.525 \n", " 734.169,872.401 732.466,872.305 731.896,872.274 729.624,872.143 727.351,872.008 725.079,871.869 722.807,871.726 720.534,871.579 718.262,871.428 715.99,871.272 \n", " 713.717,871.112 711.445,870.948 709.173,870.78 706.9,870.607 705.662,870.511 704.628,870.431 702.355,870.252 700.083,870.068 697.811,869.88 695.538,869.688 \n", " 693.266,869.491 690.994,869.29 688.721,869.085 686.449,868.875 684.768,868.717 684.177,868.661 681.904,868.445 679.632,868.224 677.359,867.998 675.087,867.768 \n", " 672.815,867.534 670.542,867.295 668.27,867.051 667.091,866.922 665.998,866.804 663.725,866.553 661.453,866.298 659.181,866.039 656.908,865.774 654.636,865.505 \n", " 652.363,865.232 651.517,865.128 650.091,864.955 647.819,864.674 645.546,864.389 643.274,864.098 641.002,863.803 638.729,863.503 637.463,863.334 636.457,863.2 \n", " 634.185,862.893 631.912,862.581 629.64,862.264 627.367,861.942 625.095,861.615 624.575,861.539 622.823,861.286 620.55,860.951 618.278,860.612 616.006,860.268 \n", " 613.733,859.919 612.619,859.745 611.461,859.565 609.189,859.209 606.916,858.847 604.644,858.479 602.371,858.107 601.431,857.951 600.099,857.731 597.827,857.35 \n", " 595.554,856.965 593.282,856.574 591.01,856.177 590.89,856.156 588.737,855.778 586.465,855.374 584.193,854.964 581.92,854.549 580.91,854.362 579.648,854.13 \n", " 577.375,853.706 575.103,853.277 572.831,852.842 571.413,852.568 570.558,852.403 568.286,851.96 566.014,851.511 563.741,851.056 562.346,850.773 561.469,850.596 \n", " 559.197,850.133 556.924,849.664 554.652,849.188 553.662,848.979 552.38,848.709 550.107,848.225 547.835,847.735 545.562,847.238 545.321,847.185 543.29,846.738 \n", " 541.018,846.233 538.745,845.721 537.294,845.39 536.473,845.204 534.201,844.683 531.928,844.155 529.656,843.621 529.551,843.596 527.384,843.084 525.111,842.54 \n", " 522.839,841.99 522.071,841.802 520.566,841.435 518.294,840.875 516.022,840.307 514.831,840.007 513.749,839.735 511.477,839.158 509.205,838.574 507.816,838.213 \n", " 506.932,837.984 504.66,837.389 502.388,836.787 501.009,836.419 500.115,836.18 497.843,835.567 495.57,834.947 494.397,834.624 493.298,834.322 491.026,833.691 \n", " 488.753,833.053 487.968,832.83 486.481,832.409 484.209,831.759 481.936,831.102 481.71,831.036 479.664,830.44 477.392,829.77 475.615,829.241 475.119,829.094 \n", " 472.847,828.413 470.574,827.723 469.673,827.447 468.302,827.028 466.03,826.326 463.875,825.653 463.757,825.616 461.485,824.901 459.213,824.178 458.216,823.858 \n", " 456.94,823.449 454.668,822.713 452.688,822.064 452.396,821.968 450.123,821.218 447.851,820.46 447.286,820.27 445.578,819.695 443.306,818.923 442.003,818.475 \n", " 441.034,818.143 438.761,817.356 436.835,816.681 436.489,816.56 434.217,815.758 431.944,814.947 431.776,814.887 429.672,814.13 427.4,813.304 426.823,813.092 \n", " 425.127,812.47 422.855,811.628 421.971,811.298 420.582,810.779 418.31,809.92 417.216,809.504 416.038,809.054 413.765,808.179 412.556,807.709 411.493,807.296 \n", " 409.221,806.404 407.986,805.915 406.948,805.503 404.676,804.594 403.503,804.121 402.404,803.676 400.131,802.748 399.106,802.326 397.859,801.812 395.586,800.866 \n", " 394.79,800.532 393.314,799.911 391.042,798.946 390.554,798.738 388.769,797.973 386.497,796.988 386.395,796.943 384.225,795.995 382.31,795.149 381.952,794.99 \n", " 379.68,793.977 378.298,793.355 377.408,792.952 375.135,791.918 374.356,791.56 372.863,790.872 370.59,789.816 370.484,789.766 368.318,788.749 366.678,787.972 \n", " 366.046,787.671 363.773,786.581 362.937,786.177 361.501,785.481 359.26,784.383 359.229,784.368 356.956,783.244 355.644,782.589 354.684,782.107 352.412,780.958 \n", " 352.089,780.794 350.139,779.798 348.593,779 347.867,778.624 345.595,777.437 345.154,777.206 343.322,776.237 341.772,775.411 341.05,775.024 338.777,773.797 \n", " 338.446,773.617 336.505,772.557 335.173,771.823 334.233,771.302 331.96,770.032 331.953,770.028 329.688,768.748 328.784,768.234 327.416,767.449 325.667,766.44 \n", " 325.143,766.135 322.871,764.805 322.6,764.645 320.599,763.459 319.581,762.851 318.326,762.096 316.61,761.057 316.054,760.717 313.781,759.32 313.687,759.262 \n", " 311.509,757.907 310.809,757.468 309.237,756.475 307.977,755.674 306.964,755.024 305.19,753.879 304.692,753.555 302.447,752.085 302.42,752.067 300.147,750.558 \n", " 299.747,750.291 297.875,749.029 297.089,748.496 295.603,747.479 294.473,746.702 293.33,745.908 291.898,744.908 291.058,744.314 289.365,743.113 288.785,742.698 \n", " 286.871,741.319 286.513,741.058 284.417,739.525 284.241,739.394 282.001,737.73 281.968,737.705 279.696,735.99 279.624,735.936 277.424,734.249 277.285,734.142 \n", " 275.151,732.479 274.983,732.347 272.879,730.681 272.717,730.553 270.607,728.854 270.489,728.759 268.334,726.996 268.296,726.964 266.138,725.17 266.062,725.105 \n", " 264.016,723.376 263.789,723.182 261.928,721.581 261.517,721.223 259.874,719.787 259.245,719.229 257.854,717.993 256.972,717.197 255.868,716.198 254.7,715.126 \n", " 253.916,714.404 252.428,713.014 251.996,712.61 250.155,710.859 250.109,710.815 248.253,709.021 247.883,708.658 246.429,707.227 245.611,706.409 244.636,705.432 \n", " 243.338,704.11 242.876,703.638 241.146,701.844 241.066,701.759 239.446,700.049 238.793,699.349 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#6e186e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,602.298 238.938,603.155 239.267,604.949 239.621,606.744 240.001,608.538 240.407,610.332 240.839,612.127 241.066,613.015 241.296,613.921 241.779,615.715 \n", " 242.287,617.51 242.823,619.304 243.338,620.951 243.384,621.098 243.97,622.893 244.583,624.687 245.223,626.482 245.611,627.525 245.889,628.276 246.58,630.07 \n", " 247.299,631.865 247.883,633.268 248.045,633.659 248.817,635.453 249.616,637.248 250.155,638.418 250.442,639.042 251.294,640.836 252.176,642.631 252.428,643.129 \n", " 253.083,644.425 254.018,646.219 254.7,647.49 254.981,648.014 255.971,649.808 256.972,651.57 256.99,651.602 258.036,653.397 259.111,655.191 259.245,655.408 \n", " 260.214,656.985 261.346,658.78 261.517,659.044 262.506,660.574 263.696,662.368 263.789,662.505 264.914,664.163 266.062,665.812 266.163,665.957 267.439,667.751 \n", " 268.334,668.979 268.747,669.546 270.084,671.34 270.607,672.026 271.451,673.134 272.85,674.929 272.879,674.965 274.277,676.723 275.151,677.798 275.737,678.517 \n", " 277.228,680.312 277.424,680.542 278.749,682.106 279.696,683.2 280.303,683.9 281.89,685.695 281.968,685.782 283.507,687.489 284.241,688.288 285.157,689.283 \n", " 286.513,690.729 286.841,691.078 288.558,692.872 288.785,693.106 290.308,694.666 291.058,695.422 292.091,696.461 293.33,697.684 293.91,698.255 295.603,699.894 \n", " 295.763,700.049 297.651,701.844 297.875,702.053 299.574,703.638 300.147,704.164 301.533,705.432 302.42,706.231 303.528,707.227 304.692,708.256 305.56,709.021 \n", " 306.964,710.24 307.629,710.815 309.237,712.186 309.736,712.61 311.509,714.094 311.881,714.404 313.781,715.967 314.064,716.198 316.054,717.806 316.286,717.993 \n", " 318.326,719.612 318.548,719.787 320.599,721.387 320.849,721.581 322.871,723.131 323.192,723.376 325.143,724.846 325.575,725.17 327.416,726.533 328.001,726.964 \n", " 329.688,728.193 330.469,728.759 331.96,729.826 332.981,730.553 334.233,731.435 335.536,732.347 336.505,733.018 338.136,734.142 338.777,734.578 340.782,735.936 \n", " 341.05,736.115 343.322,737.63 343.474,737.73 345.595,739.122 346.212,739.525 347.867,740.593 348.998,741.319 350.139,742.044 351.833,743.113 352.412,743.475 \n", " 354.684,744.886 354.719,744.908 356.956,746.278 357.653,746.702 359.229,747.651 360.64,748.496 361.501,749.007 363.68,750.291 363.773,750.345 366.046,751.665 \n", " 366.773,752.085 368.318,752.969 369.921,753.879 370.59,754.256 372.863,755.527 373.126,755.674 375.135,756.783 376.387,757.468 377.408,758.023 379.68,759.248 \n", " 379.707,759.262 381.952,760.458 383.087,761.057 384.225,761.653 386.497,762.834 386.529,762.851 388.769,764.002 390.033,764.645 391.042,765.156 393.314,766.296 \n", " 393.602,766.44 395.586,767.423 397.238,768.234 397.859,768.537 400.131,769.639 400.941,770.028 402.404,770.728 404.676,771.804 404.715,771.823 406.948,772.869 \n", " 408.56,773.617 409.221,773.922 411.493,774.963 412.48,775.411 413.765,775.993 416.038,777.011 416.476,777.206 418.31,778.018 420.55,779 420.582,779.014 \n", " 422.855,780 424.706,780.794 425.127,780.974 427.4,781.939 428.945,782.589 429.672,782.893 431.944,783.837 433.272,784.383 434.217,784.77 436.489,785.694 \n", " 437.688,786.177 438.761,786.608 441.034,787.513 442.197,787.972 443.306,788.408 445.578,789.293 446.803,789.766 447.851,790.169 450.123,791.037 451.509,791.56 \n", " 452.396,791.894 454.668,792.744 456.32,793.355 456.94,793.584 459.213,794.415 461.239,795.149 461.485,795.238 463.757,796.053 466.03,796.858 466.272,796.943 \n", " 468.302,797.656 470.574,798.445 471.424,798.738 472.847,799.227 475.119,800 476.7,800.532 477.392,800.765 479.664,801.522 481.936,802.271 482.105,802.326 \n", " 484.209,803.013 486.481,803.747 487.649,804.121 488.753,804.474 491.026,805.193 493.298,805.903 493.335,805.915 495.57,806.608 497.843,807.305 499.176,807.709 \n", " 500.115,807.994 502.388,808.677 504.66,809.352 505.176,809.504 506.932,810.021 509.205,810.682 511.347,811.298 511.477,811.335 513.749,811.984 516.022,812.624 \n", " 517.701,813.092 518.294,813.258 520.566,813.886 522.839,814.506 524.249,814.887 525.111,815.119 527.384,815.728 529.656,816.328 531.005,816.681 531.928,816.922 \n", " 534.201,817.511 536.473,818.093 537.985,818.475 538.745,818.668 541.018,819.238 543.29,819.801 545.207,820.27 545.562,820.357 547.835,820.909 550.107,821.453 \n", " 552.38,821.991 552.691,822.064 554.652,822.524 556.924,823.051 559.197,823.572 560.463,823.858 561.469,824.086 563.741,824.596 566.014,825.099 568.286,825.596 \n", " 568.549,825.653 570.558,826.088 572.831,826.575 575.103,827.055 576.983,827.447 577.375,827.529 579.648,827.999 581.92,828.463 584.193,828.92 585.806,829.241 \n", " 586.465,829.373 588.737,829.821 591.01,830.262 593.282,830.698 595.066,831.036 595.554,831.128 597.827,831.555 600.099,831.975 602.371,832.39 604.644,832.798 \n", " 604.822,832.83 606.916,833.203 609.189,833.603 611.461,833.997 613.733,834.385 615.155,834.624 616.006,834.768 618.278,835.147 620.55,835.521 622.823,835.889 \n", " 625.095,836.251 626.16,836.419 627.367,836.609 629.64,836.963 631.912,837.312 634.185,837.654 636.457,837.992 637.969,838.213 638.729,838.325 641.002,838.654 \n", " 643.274,838.978 645.546,839.296 647.819,839.609 650.091,839.917 650.767,840.007 652.363,840.221 654.636,840.521 656.908,840.816 659.181,841.105 661.453,841.389 \n", " 663.725,841.669 664.825,841.802 665.998,841.944 668.27,842.215 670.542,842.481 672.815,842.743 675.087,842.999 677.359,843.25 679.632,843.497 680.565,843.596 \n", " 681.904,843.739 684.177,843.978 686.449,844.212 688.721,844.44 690.994,844.664 693.266,844.884 695.538,845.098 697.811,845.308 698.725,845.39 700.083,845.514 \n", " 702.355,845.716 704.628,845.913 706.9,846.105 709.173,846.293 711.445,846.476 713.717,846.655 715.99,846.829 718.262,846.998 720.534,847.163 720.843,847.185 \n", " 722.807,847.324 725.079,847.481 727.351,847.633 729.624,847.781 731.896,847.925 734.169,848.064 736.441,848.198 738.713,848.328 740.986,848.453 743.258,848.574 \n", " 745.53,848.691 747.803,848.803 750.075,848.91 751.582,848.979 752.347,849.014 754.62,849.114 756.892,849.209 759.164,849.3 761.437,849.386 763.709,849.469 \n", " 765.982,849.546 768.254,849.62 770.526,849.689 772.799,849.753 775.071,849.814 777.343,849.87 779.616,849.921 781.888,849.969 784.16,850.012 786.433,850.05 \n", " 788.705,850.085 790.978,850.115 793.25,850.141 795.522,850.162 797.795,850.179 800.067,850.192 802.339,850.201 804.612,850.205 806.884,850.205 809.156,850.201 \n", " 811.429,850.192 813.701,850.179 815.974,850.162 818.246,850.141 820.518,850.115 822.791,850.085 825.063,850.05 827.335,850.012 829.608,849.969 831.88,849.921 \n", " 834.152,849.87 836.425,849.814 838.697,849.753 840.97,849.689 843.242,849.62 845.514,849.546 847.787,849.469 850.059,849.386 852.331,849.3 854.604,849.209 \n", " 856.876,849.114 859.148,849.014 859.914,848.979 861.421,848.91 863.693,848.803 865.966,848.691 868.238,848.574 870.51,848.453 872.783,848.328 875.055,848.198 \n", " 877.327,848.064 879.6,847.925 881.872,847.781 884.144,847.633 886.417,847.481 888.689,847.324 890.653,847.185 890.962,847.163 893.234,846.998 895.506,846.829 \n", " 897.779,846.655 900.051,846.476 902.323,846.293 904.596,846.105 906.868,845.913 909.14,845.716 911.413,845.514 912.771,845.39 913.685,845.308 915.958,845.098 \n", " 918.23,844.884 920.502,844.664 922.775,844.44 925.047,844.212 927.319,843.978 929.592,843.739 930.931,843.596 931.864,843.497 934.136,843.25 936.409,842.999 \n", " 938.681,842.743 940.954,842.481 943.226,842.215 945.498,841.944 946.671,841.802 947.771,841.669 950.043,841.389 952.315,841.105 954.588,840.816 956.86,840.521 \n", " 959.132,840.221 960.728,840.007 961.405,839.917 963.677,839.609 965.949,839.296 968.222,838.978 970.494,838.654 972.767,838.325 973.527,838.213 975.039,837.992 \n", " 977.311,837.654 979.584,837.312 981.856,836.963 984.128,836.609 985.336,836.419 986.401,836.251 988.673,835.889 990.945,835.521 993.218,835.147 995.49,834.768 \n", " 996.341,834.624 997.763,834.385 1000.03,833.997 1002.31,833.603 1004.58,833.203 1006.67,832.83 1006.85,832.798 1009.12,832.39 1011.4,831.975 1013.67,831.555 \n", " 1015.94,831.128 1016.43,831.036 1018.21,830.698 1020.49,830.262 1022.76,829.821 1025.03,829.373 1025.69,829.241 1027.3,828.92 1029.58,828.463 1031.85,827.999 \n", " 1034.12,827.529 1034.51,827.447 1036.39,827.055 1038.67,826.575 1040.94,826.088 1042.95,825.653 1043.21,825.596 1045.48,825.099 1047.75,824.596 1050.03,824.086 \n", " 1051.03,823.858 1052.3,823.572 1054.57,823.051 1056.84,822.524 1058.8,822.064 1059.12,821.991 1061.39,821.453 1063.66,820.909 1065.93,820.357 1066.29,820.27 \n", " 1068.21,819.801 1070.48,819.238 1072.75,818.668 1073.51,818.475 1075.02,818.093 1077.3,817.511 1079.57,816.922 1080.49,816.681 1081.84,816.328 1084.11,815.728 \n", " 1086.38,815.119 1087.25,814.887 1088.66,814.506 1090.93,813.886 1093.2,813.258 1093.79,813.092 1095.47,812.624 1097.75,811.984 1100.02,811.335 1100.15,811.298 \n", " 1102.29,810.682 1104.56,810.021 1106.32,809.504 1106.84,809.352 1109.11,808.677 1111.38,807.994 1112.32,807.709 1113.65,807.305 1115.93,806.608 1118.16,805.915 \n", " 1118.2,805.903 1120.47,805.193 1122.74,804.474 1123.85,804.121 1125.01,803.747 1127.29,803.013 1129.39,802.326 1129.56,802.271 1131.83,801.522 1134.1,800.765 \n", " 1134.8,800.532 1136.38,800 1138.65,799.227 1140.07,798.738 1140.92,798.445 1143.19,797.656 1145.22,796.943 1145.47,796.858 1147.74,796.053 1150.01,795.238 \n", " 1150.26,795.149 1152.28,794.415 1154.56,793.584 1155.18,793.355 1156.83,792.744 1159.1,791.894 1159.99,791.56 1161.37,791.037 1163.65,790.169 1164.69,789.766 \n", " 1165.92,789.293 1168.19,788.408 1169.3,787.972 1170.46,787.513 1172.73,786.608 1173.81,786.177 1175.01,785.694 1177.28,784.77 1178.22,784.383 1179.55,783.837 \n", " 1181.82,782.893 1182.55,782.589 1184.1,781.939 1186.37,780.974 1186.79,780.794 1188.64,780 1190.91,779.014 1190.95,779 1193.19,778.018 1195.02,777.206 \n", " 1195.46,777.011 1197.73,775.993 1199.02,775.411 1200,774.963 1202.28,773.922 1202.94,773.617 1204.55,772.869 1206.78,771.823 1206.82,771.804 1209.09,770.728 \n", " 1210.55,770.028 1211.36,769.639 1213.64,768.537 1214.26,768.234 1215.91,767.423 1217.89,766.44 1218.18,766.296 1220.45,765.156 1221.46,764.645 1222.73,764.002 \n", " 1224.97,762.851 1225,762.834 1227.27,761.653 1228.41,761.057 1229.54,760.458 1231.79,759.262 1231.82,759.248 1234.09,758.023 1235.11,757.468 1236.36,756.783 \n", " 1238.37,755.674 1238.63,755.527 1240.91,754.256 1241.57,753.879 1243.18,752.969 1244.72,752.085 1245.45,751.665 1247.72,750.345 1247.82,750.291 1249.99,749.007 \n", " 1250.86,748.496 1252.27,747.651 1253.84,746.702 1254.54,746.278 1256.78,744.908 1256.81,744.886 1259.08,743.475 1259.66,743.113 1261.36,742.044 1262.5,741.319 \n", " 1263.63,740.593 1265.28,739.525 1265.9,739.122 1268.02,737.73 1268.17,737.63 1270.45,736.115 1270.71,735.936 1272.72,734.578 1273.36,734.142 1274.99,733.018 \n", " 1275.96,732.347 1277.26,731.435 1278.52,730.553 1279.54,729.826 1281.03,728.759 1281.81,728.193 1283.49,726.964 1284.08,726.533 1285.92,725.17 1286.35,724.846 \n", " 1288.3,723.376 1288.62,723.131 1290.65,721.581 1290.9,721.387 1292.95,719.787 1293.17,719.612 1295.21,717.993 1295.44,717.806 1297.43,716.198 1297.71,715.967 \n", " 1299.62,714.404 1299.99,714.094 1301.76,712.61 1302.26,712.186 1303.87,710.815 1304.53,710.24 1305.94,709.021 1306.8,708.256 1307.97,707.227 1309.08,706.231 \n", " 1309.96,705.432 1311.35,704.164 1311.92,703.638 1313.62,702.053 1313.84,701.844 1315.73,700.049 1315.89,699.894 1317.59,698.255 1318.17,697.684 1319.4,696.461 \n", " 1320.44,695.422 1321.19,694.666 1322.71,693.106 1322.94,692.872 1324.65,691.078 1324.98,690.729 1326.34,689.283 1327.26,688.288 1327.99,687.489 1329.53,685.782 \n", " 1329.61,685.695 1331.19,683.9 1331.8,683.2 1332.75,682.106 1334.07,680.542 1334.27,680.312 1335.76,678.517 1336.34,677.798 1337.22,676.723 1338.62,674.965 \n", " 1338.65,674.929 1340.04,673.134 1340.89,672.026 1341.41,671.34 1342.75,669.546 1343.16,668.979 1344.06,667.751 1345.33,665.957 1345.43,665.812 1346.58,664.163 \n", " 1347.71,662.505 1347.8,662.368 1348.99,660.574 1349.98,659.044 1350.15,658.78 1351.28,656.985 1352.25,655.408 1352.38,655.191 1353.46,653.397 1354.51,651.602 \n", " 1354.52,651.57 1355.53,649.808 1356.51,648.014 1356.8,647.49 1357.48,646.219 1358.41,644.425 1359.07,643.129 1359.32,642.631 1360.2,640.836 1361.05,639.042 \n", " 1361.34,638.418 1361.88,637.248 1362.68,635.453 1363.45,633.659 1363.61,633.268 1364.2,631.865 1364.92,630.07 1365.61,628.276 1365.89,627.525 1366.27,626.482 \n", " 1366.91,624.687 1367.53,622.893 1368.11,621.098 1368.16,620.951 1368.67,619.304 1369.21,617.51 1369.72,615.715 1370.2,613.921 1370.43,613.015 1370.66,612.127 \n", " 1371.09,610.332 1371.49,608.538 1371.88,606.744 1372.23,604.949 1372.56,603.155 1372.7,602.298 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#6e186e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,559.154 1372.56,558.297 1372.23,556.502 1371.88,554.708 1371.49,552.914 1371.09,551.119 1370.66,549.325 1370.43,548.437 1370.2,547.531 1369.72,545.736 \n", " 1369.21,543.942 1368.67,542.148 1368.16,540.501 1368.11,540.353 1367.53,538.559 1366.91,536.765 1366.27,534.97 1365.89,533.927 1365.61,533.176 1364.92,531.382 \n", " 1364.2,529.587 1363.61,528.184 1363.45,527.793 1362.68,525.999 1361.88,524.204 1361.34,523.034 1361.05,522.41 1360.2,520.616 1359.32,518.821 1359.07,518.323 \n", " 1358.41,517.027 1357.48,515.233 1356.8,513.962 1356.51,513.438 1355.53,511.644 1354.52,509.882 1354.51,509.85 1353.46,508.055 1352.38,506.261 1352.25,506.044 \n", " 1351.28,504.467 1350.15,502.672 1349.98,502.408 1348.99,500.878 1347.8,499.084 1347.71,498.947 1346.58,497.289 1345.43,495.64 1345.33,495.495 1344.06,493.701 \n", " 1343.16,492.473 1342.75,491.906 1341.41,490.112 1340.89,489.426 1340.04,488.318 1338.65,486.523 1338.62,486.487 1337.22,484.729 1336.34,483.654 1335.76,482.935 \n", " 1334.27,481.14 1334.07,480.91 1332.75,479.346 1331.8,478.252 1331.19,477.552 1329.61,475.757 1329.53,475.67 1327.99,473.963 1327.26,473.164 1326.34,472.169 \n", " 1324.98,470.723 1324.65,470.374 1322.94,468.58 1322.71,468.346 1321.19,466.786 1320.44,466.03 1319.4,464.991 1318.17,463.768 1317.59,463.197 1315.89,461.558 \n", " 1315.73,461.403 1313.84,459.608 1313.62,459.399 1311.92,457.814 1311.35,457.288 1309.96,456.02 1309.08,455.221 1307.97,454.225 1306.8,453.196 1305.94,452.431 \n", " 1304.53,451.212 1303.87,450.637 1302.26,449.266 1301.76,448.842 1299.99,447.358 1299.62,447.048 1297.71,445.485 1297.43,445.254 1295.44,443.646 1295.21,443.459 \n", " 1293.17,441.84 1292.95,441.665 1290.9,440.065 1290.65,439.871 1288.62,438.321 1288.3,438.076 1286.35,436.606 1285.92,436.282 1284.08,434.919 1283.49,434.488 \n", " 1281.81,433.259 1281.03,432.693 1279.54,431.626 1278.52,430.899 1277.26,430.017 1275.96,429.105 1274.99,428.434 1273.36,427.31 1272.72,426.874 1270.71,425.516 \n", " 1270.45,425.337 1268.17,423.822 1268.02,423.722 1265.9,422.33 1265.28,421.927 1263.63,420.859 1262.5,420.133 1261.36,419.408 1259.66,418.339 1259.08,417.977 \n", " 1256.81,416.566 1256.78,416.544 1254.54,415.174 1253.84,414.75 1252.27,413.801 1250.86,412.956 1249.99,412.445 1247.82,411.161 1247.72,411.107 1245.45,409.787 \n", " 1244.72,409.367 1243.18,408.483 1241.57,407.573 1240.91,407.196 1238.63,405.924 1238.37,405.778 1236.36,404.669 1235.11,403.984 1234.09,403.429 1231.82,402.204 \n", " 1231.79,402.19 1229.54,400.994 1228.41,400.395 1227.27,399.799 1225,398.618 1224.97,398.601 1222.73,397.45 1221.46,396.807 1220.45,396.296 1218.18,395.156 \n", " 1217.89,395.012 1215.91,394.029 1214.26,393.218 1213.64,392.915 1211.36,391.813 1210.55,391.424 1209.09,390.724 1206.82,389.648 1206.78,389.629 1204.55,388.583 \n", " 1202.94,387.835 1202.28,387.53 1200,386.489 1199.02,386.041 1197.73,385.459 1195.46,384.441 1195.02,384.246 1193.19,383.434 1190.95,382.452 1190.91,382.438 \n", " 1188.64,381.452 1186.79,380.658 1186.37,380.478 1184.1,379.513 1182.55,378.863 1181.82,378.559 1179.55,377.615 1178.22,377.069 1177.28,376.682 1175.01,375.758 \n", " 1173.81,375.275 1172.73,374.844 1170.46,373.939 1169.3,373.48 1168.19,373.044 1165.92,372.159 1164.69,371.686 1163.65,371.283 1161.37,370.415 1159.99,369.892 \n", " 1159.1,369.558 1156.83,368.708 1155.18,368.097 1154.56,367.868 1152.28,367.036 1150.26,366.303 1150.01,366.214 1147.74,365.399 1145.47,364.594 1145.22,364.509 \n", " 1143.19,363.796 1140.92,363.007 1140.07,362.714 1138.65,362.225 1136.38,361.452 1134.8,360.92 1134.1,360.687 1131.83,359.93 1129.56,359.181 1129.39,359.126 \n", " 1127.29,358.439 1125.01,357.705 1123.85,357.331 1122.74,356.978 1120.47,356.259 1118.2,355.549 1118.16,355.537 1115.93,354.844 1113.65,354.147 1112.32,353.743 \n", " 1111.38,353.458 1109.11,352.775 1106.84,352.1 1106.32,351.948 1104.56,351.431 1102.29,350.77 1100.15,350.154 1100.02,350.117 1097.75,349.468 1095.47,348.828 \n", " 1093.79,348.36 1093.2,348.194 1090.93,347.566 1088.66,346.946 1087.25,346.565 1086.38,346.332 1084.11,345.724 1081.84,345.124 1080.49,344.771 1079.57,344.53 \n", " 1077.3,343.941 1075.02,343.359 1073.51,342.977 1072.75,342.784 1070.48,342.214 1068.21,341.651 1066.29,341.182 1065.93,341.095 1063.66,340.543 1061.39,339.999 \n", " 1059.12,339.461 1058.8,339.388 1056.84,338.928 1054.57,338.401 1052.3,337.88 1051.03,337.594 1050.03,337.366 1047.75,336.856 1045.48,336.353 1043.21,335.856 \n", " 1042.95,335.799 1040.94,335.363 1038.67,334.877 1036.39,334.397 1034.51,334.005 1034.12,333.923 1031.85,333.453 1029.58,332.989 1027.3,332.532 1025.69,332.211 \n", " 1025.03,332.079 1022.76,331.631 1020.49,331.19 1018.21,330.754 1016.43,330.416 1015.94,330.324 1013.67,329.897 1011.4,329.477 1009.12,329.062 1006.85,328.654 \n", " 1006.67,328.622 1004.58,328.249 1002.31,327.849 1000.03,327.455 997.763,327.067 996.341,326.828 995.49,326.684 993.218,326.305 990.945,325.931 988.673,325.563 \n", " 986.401,325.201 985.336,325.033 984.128,324.843 981.856,324.489 979.584,324.14 977.311,323.798 975.039,323.46 973.527,323.239 972.767,323.127 970.494,322.798 \n", " 968.222,322.474 965.949,322.156 963.677,321.843 961.405,321.535 960.728,321.445 959.132,321.231 956.86,320.931 954.588,320.636 952.315,320.347 950.043,320.063 \n", " 947.771,319.783 946.671,319.65 945.498,319.508 943.226,319.237 940.954,318.971 938.681,318.709 936.409,318.453 934.136,318.202 931.864,317.955 930.931,317.856 \n", " 929.592,317.713 927.319,317.474 925.047,317.24 922.775,317.012 920.502,316.788 918.23,316.568 915.958,316.354 913.685,316.144 912.771,316.062 911.413,315.938 \n", " 909.14,315.736 906.868,315.539 904.596,315.347 902.323,315.159 900.051,314.976 897.779,314.797 895.506,314.623 893.234,314.454 890.962,314.289 890.653,314.267 \n", " 888.689,314.128 886.417,313.971 884.144,313.818 881.872,313.671 879.6,313.527 877.327,313.388 875.055,313.254 872.783,313.124 870.51,312.999 868.238,312.878 \n", " 865.966,312.761 863.693,312.649 861.421,312.542 859.914,312.473 859.148,312.438 856.876,312.338 854.604,312.243 852.331,312.152 850.059,312.066 847.787,311.983 \n", " 845.514,311.906 843.242,311.832 840.97,311.763 838.697,311.699 836.425,311.638 834.152,311.582 831.88,311.531 829.608,311.483 827.335,311.44 825.063,311.401 \n", " 822.791,311.367 820.518,311.337 818.246,311.311 815.974,311.29 813.701,311.273 811.429,311.26 809.156,311.251 806.884,311.247 804.612,311.247 802.339,311.251 \n", " 800.067,311.26 797.795,311.273 795.522,311.29 793.25,311.311 790.978,311.337 788.705,311.367 786.433,311.401 784.16,311.44 781.888,311.483 779.616,311.531 \n", " 777.343,311.582 775.071,311.638 772.799,311.699 770.526,311.763 768.254,311.832 765.982,311.906 763.709,311.983 761.437,312.066 759.164,312.152 756.892,312.243 \n", " 754.62,312.338 752.347,312.438 751.582,312.473 750.075,312.542 747.803,312.649 745.53,312.761 743.258,312.878 740.986,312.999 738.713,313.124 736.441,313.254 \n", " 734.169,313.388 731.896,313.527 729.624,313.671 727.351,313.818 725.079,313.971 722.807,314.128 720.843,314.267 720.534,314.289 718.262,314.454 715.99,314.623 \n", " 713.717,314.797 711.445,314.976 709.173,315.159 706.9,315.347 704.628,315.539 702.355,315.736 700.083,315.938 698.725,316.062 697.811,316.144 695.538,316.354 \n", " 693.266,316.568 690.994,316.788 688.721,317.012 686.449,317.24 684.177,317.474 681.904,317.713 680.565,317.856 679.632,317.955 677.359,318.202 675.087,318.453 \n", " 672.815,318.709 670.542,318.971 668.27,319.237 665.998,319.508 664.825,319.65 663.725,319.783 661.453,320.063 659.181,320.347 656.908,320.636 654.636,320.931 \n", " 652.363,321.231 650.767,321.445 650.091,321.535 647.819,321.843 645.546,322.156 643.274,322.474 641.002,322.798 638.729,323.127 637.969,323.239 636.457,323.46 \n", " 634.185,323.798 631.912,324.14 629.64,324.489 627.367,324.843 626.16,325.033 625.095,325.201 622.823,325.563 620.55,325.931 618.278,326.305 616.006,326.684 \n", " 615.155,326.828 613.733,327.067 611.461,327.455 609.189,327.849 606.916,328.249 604.822,328.622 604.644,328.654 602.371,329.062 600.099,329.477 597.827,329.897 \n", " 595.554,330.324 595.066,330.416 593.282,330.754 591.01,331.19 588.737,331.631 586.465,332.079 585.806,332.211 584.193,332.532 581.92,332.989 579.648,333.453 \n", " 577.375,333.923 576.983,334.005 575.103,334.397 572.831,334.877 570.558,335.363 568.549,335.799 568.286,335.856 566.014,336.353 563.741,336.856 561.469,337.366 \n", " 560.463,337.594 559.197,337.88 556.924,338.401 554.652,338.928 552.691,339.388 552.38,339.461 550.107,339.999 547.835,340.543 545.562,341.095 545.207,341.182 \n", " 543.29,341.651 541.018,342.214 538.745,342.784 537.985,342.977 536.473,343.359 534.201,343.941 531.928,344.53 531.005,344.771 529.656,345.124 527.384,345.724 \n", " 525.111,346.332 524.249,346.565 522.839,346.946 520.566,347.566 518.294,348.194 517.701,348.36 516.022,348.828 513.749,349.468 511.477,350.117 511.347,350.154 \n", " 509.205,350.77 506.932,351.431 505.176,351.948 504.66,352.1 502.388,352.775 500.115,353.458 499.176,353.743 497.843,354.147 495.57,354.844 493.335,355.537 \n", " 493.298,355.549 491.026,356.259 488.753,356.978 487.649,357.331 486.481,357.705 484.209,358.439 482.105,359.126 481.936,359.181 479.664,359.93 477.392,360.687 \n", " 476.7,360.92 475.119,361.452 472.847,362.225 471.424,362.714 470.574,363.007 468.302,363.796 466.272,364.509 466.03,364.594 463.757,365.399 461.485,366.214 \n", " 461.239,366.303 459.213,367.036 456.94,367.868 456.32,368.097 454.668,368.708 452.396,369.558 451.509,369.892 450.123,370.415 447.851,371.283 446.803,371.686 \n", " 445.578,372.159 443.306,373.044 442.197,373.48 441.034,373.939 438.761,374.844 437.688,375.275 436.489,375.758 434.217,376.682 433.272,377.069 431.944,377.615 \n", " 429.672,378.559 428.945,378.863 427.4,379.513 425.127,380.478 424.706,380.658 422.855,381.452 420.582,382.438 420.55,382.452 418.31,383.434 416.476,384.246 \n", " 416.038,384.441 413.765,385.459 412.48,386.041 411.493,386.489 409.221,387.53 408.56,387.835 406.948,388.583 404.715,389.629 404.676,389.648 402.404,390.724 \n", " 400.941,391.424 400.131,391.813 397.859,392.915 397.238,393.218 395.586,394.029 393.602,395.012 393.314,395.156 391.042,396.296 390.033,396.807 388.769,397.45 \n", " 386.529,398.601 386.497,398.618 384.225,399.799 383.087,400.395 381.952,400.994 379.707,402.19 379.68,402.204 377.408,403.429 376.387,403.984 375.135,404.669 \n", " 373.126,405.778 372.863,405.924 370.59,407.196 369.921,407.573 368.318,408.483 366.773,409.367 366.046,409.787 363.773,411.107 363.68,411.161 361.501,412.445 \n", " 360.64,412.956 359.229,413.801 357.653,414.75 356.956,415.174 354.719,416.544 354.684,416.566 352.412,417.977 351.833,418.339 350.139,419.408 348.998,420.133 \n", " 347.867,420.859 346.212,421.927 345.595,422.33 343.474,423.722 343.322,423.822 341.05,425.337 340.782,425.516 338.777,426.874 338.136,427.31 336.505,428.434 \n", " 335.536,429.105 334.233,430.017 332.981,430.899 331.96,431.626 330.469,432.693 329.688,433.259 328.001,434.488 327.416,434.919 325.575,436.282 325.143,436.606 \n", " 323.192,438.076 322.871,438.321 320.849,439.871 320.599,440.065 318.548,441.665 318.326,441.84 316.286,443.459 316.054,443.646 314.064,445.254 313.781,445.485 \n", " 311.881,447.048 311.509,447.358 309.736,448.842 309.237,449.266 307.629,450.637 306.964,451.212 305.56,452.431 304.692,453.196 303.528,454.225 302.42,455.221 \n", " 301.533,456.02 300.147,457.288 299.574,457.814 297.875,459.399 297.651,459.608 295.763,461.403 295.603,461.558 293.91,463.197 293.33,463.768 292.091,464.991 \n", " 291.058,466.03 290.308,466.786 288.785,468.346 288.558,468.58 286.841,470.374 286.513,470.723 285.157,472.169 284.241,473.164 283.507,473.963 281.968,475.67 \n", " 281.89,475.757 280.303,477.552 279.696,478.252 278.749,479.346 277.424,480.91 277.228,481.14 275.737,482.935 275.151,483.654 274.277,484.729 272.879,486.487 \n", " 272.85,486.523 271.451,488.318 270.607,489.426 270.084,490.112 268.747,491.906 268.334,492.473 267.439,493.701 266.163,495.495 266.062,495.64 264.914,497.289 \n", " 263.789,498.947 263.696,499.084 262.506,500.878 261.517,502.408 261.346,502.672 260.214,504.467 259.245,506.044 259.111,506.261 258.036,508.055 256.99,509.85 \n", " 256.972,509.882 255.971,511.644 254.981,513.438 254.7,513.962 254.018,515.233 253.083,517.027 252.428,518.323 252.176,518.821 251.294,520.616 250.442,522.41 \n", " 250.155,523.034 249.616,524.204 248.817,525.999 248.045,527.793 247.883,528.184 247.299,529.587 246.58,531.382 245.889,533.176 245.611,533.927 245.223,534.97 \n", " 244.583,536.765 243.97,538.559 243.384,540.353 243.338,540.501 242.823,542.148 242.287,543.942 241.779,545.736 241.296,547.531 241.066,548.437 240.839,549.325 \n", " 240.407,551.119 240.001,552.914 239.621,554.708 239.267,556.502 238.938,558.297 238.793,559.154 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#550f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,462.103 239.446,461.403 241.066,459.693 241.146,459.608 242.876,457.814 243.338,457.342 244.636,456.02 245.611,455.043 246.429,454.225 247.883,452.794 \n", " 248.253,452.431 250.109,450.637 250.155,450.593 251.996,448.842 252.428,448.438 253.916,447.048 254.7,446.326 255.868,445.254 256.972,444.255 257.854,443.459 \n", " 259.245,442.223 259.874,441.665 261.517,440.229 261.928,439.871 263.789,438.27 264.016,438.076 266.062,436.347 266.138,436.282 268.296,434.488 268.334,434.456 \n", " 270.489,432.693 270.607,432.598 272.717,430.899 272.879,430.771 274.983,429.105 275.151,428.973 277.285,427.31 277.424,427.203 279.624,425.516 279.696,425.462 \n", " 281.968,423.747 282.001,423.722 284.241,422.058 284.417,421.927 286.513,420.394 286.871,420.133 288.785,418.754 289.365,418.339 291.058,417.137 291.898,416.544 \n", " 293.33,415.544 294.473,414.75 295.603,413.973 297.089,412.956 297.875,412.423 299.747,411.161 300.147,410.894 302.42,409.385 302.447,409.367 304.692,407.897 \n", " 305.19,407.573 306.964,406.428 307.977,405.778 309.237,404.977 310.809,403.984 311.509,403.545 313.687,402.19 313.781,402.131 316.054,400.735 316.61,400.395 \n", " 318.326,399.356 319.581,398.601 320.599,397.993 322.6,396.807 322.871,396.647 325.143,395.317 325.667,395.012 327.416,394.003 328.784,393.218 329.688,392.704 \n", " 331.953,391.424 331.96,391.42 334.233,390.15 335.173,389.629 336.505,388.895 338.446,387.835 338.777,387.655 341.05,386.428 341.772,386.041 343.322,385.215 \n", " 345.154,384.246 345.595,384.015 347.867,382.828 348.593,382.452 350.139,381.654 352.089,380.658 352.412,380.494 354.684,379.345 355.644,378.863 356.956,378.208 \n", " 359.229,377.084 359.26,377.069 361.501,375.971 362.937,375.275 363.773,374.871 366.046,373.781 366.678,373.48 368.318,372.703 370.484,371.686 370.59,371.636 \n", " 372.863,370.58 374.356,369.892 375.135,369.534 377.408,368.5 378.298,368.097 379.68,367.475 381.952,366.462 382.31,366.303 384.225,365.457 386.395,364.509 \n", " 386.497,364.464 388.769,363.479 390.554,362.714 391.042,362.506 393.314,361.541 394.79,360.92 395.586,360.586 397.859,359.64 399.106,359.126 400.131,358.704 \n", " 402.404,357.776 403.503,357.331 404.676,356.858 406.948,355.949 407.986,355.537 409.221,355.048 411.493,354.156 412.556,353.743 413.765,353.273 416.038,352.398 \n", " 417.216,351.948 418.31,351.532 420.582,350.673 421.971,350.154 422.855,349.824 425.127,348.981 426.823,348.36 427.4,348.148 429.672,347.322 431.776,346.565 \n", " 431.944,346.505 434.217,345.694 436.489,344.892 436.835,344.771 438.761,344.096 441.034,343.309 442.003,342.977 443.306,342.529 445.578,341.757 447.286,341.182 \n", " 447.851,340.992 450.123,340.234 452.396,339.484 452.688,339.388 454.668,338.739 456.94,338.003 458.216,337.594 459.213,337.274 461.485,336.551 463.757,335.836 \n", " 463.875,335.799 466.03,335.126 468.302,334.424 469.673,334.005 470.574,333.729 472.847,333.039 475.119,332.358 475.615,332.211 477.392,331.682 479.664,331.012 \n", " 481.71,330.416 481.936,330.35 484.209,329.693 486.481,329.043 487.968,328.622 488.753,328.399 491.026,327.761 493.298,327.13 494.397,326.828 495.57,326.504 \n", " 497.843,325.885 500.115,325.272 501.009,325.033 502.388,324.665 504.66,324.063 506.932,323.468 507.816,323.239 509.205,322.878 511.477,322.294 513.749,321.717 \n", " 514.831,321.445 516.022,321.145 518.294,320.577 520.566,320.017 522.071,319.65 522.839,319.462 525.111,318.912 527.384,318.368 529.551,317.856 529.656,317.831 \n", " 531.928,317.297 534.201,316.769 536.473,316.248 537.294,316.062 538.745,315.731 541.018,315.219 543.29,314.714 545.321,314.267 545.562,314.214 547.835,313.717 \n", " 550.107,313.227 552.38,312.743 553.662,312.473 554.652,312.264 556.924,311.788 559.197,311.319 561.469,310.856 562.346,310.679 563.741,310.396 566.014,309.941 \n", " 568.286,309.492 570.558,309.049 571.413,308.884 572.831,308.61 575.103,308.175 577.375,307.746 579.648,307.322 580.91,307.09 581.92,306.903 584.193,306.488 \n", " 586.465,306.078 588.737,305.674 590.89,305.296 591.01,305.275 593.282,304.878 595.554,304.487 597.827,304.101 600.099,303.721 601.431,303.501 602.371,303.345 \n", " 604.644,302.973 606.916,302.605 609.189,302.243 611.461,301.886 612.619,301.707 613.733,301.533 616.006,301.184 618.278,300.84 620.55,300.5 622.823,300.166 \n", " 624.575,299.913 625.095,299.837 627.367,299.51 629.64,299.188 631.912,298.871 634.185,298.559 636.457,298.252 637.463,298.118 638.729,297.949 641.002,297.649 \n", " 643.274,297.354 645.546,297.063 647.819,296.778 650.091,296.497 651.517,296.324 652.363,296.22 654.636,295.947 656.908,295.678 659.181,295.413 661.453,295.154 \n", " 663.725,294.899 665.998,294.648 667.091,294.53 668.27,294.401 670.542,294.157 672.815,293.918 675.087,293.684 677.359,293.454 679.632,293.228 681.904,293.007 \n", " 684.177,292.791 684.768,292.735 686.449,292.577 688.721,292.367 690.994,292.162 693.266,291.961 695.538,291.764 697.811,291.572 700.083,291.384 702.355,291.2 \n", " 704.628,291.021 705.662,290.941 706.9,290.845 709.173,290.672 711.445,290.504 713.717,290.34 715.99,290.18 718.262,290.024 720.534,289.873 722.807,289.726 \n", " 725.079,289.583 727.351,289.444 729.624,289.309 731.896,289.178 732.466,289.147 734.169,289.051 736.441,288.927 738.713,288.808 740.986,288.692 743.258,288.581 \n", " 745.53,288.474 747.803,288.37 750.075,288.271 752.347,288.176 754.62,288.085 756.892,287.998 759.164,287.915 761.437,287.836 763.709,287.761 765.982,287.69 \n", " 768.254,287.623 770.526,287.56 772.799,287.501 775.071,287.446 777.343,287.395 779.389,287.352 779.616,287.348 781.888,287.304 784.16,287.264 786.433,287.229 \n", " 788.705,287.197 790.978,287.169 793.25,287.145 795.522,287.125 797.795,287.11 800.067,287.098 802.339,287.09 804.612,287.086 806.884,287.086 809.156,287.09 \n", " 811.429,287.098 813.701,287.11 815.974,287.125 818.246,287.145 820.518,287.169 822.791,287.197 825.063,287.229 827.335,287.264 829.608,287.304 831.88,287.348 \n", " 832.107,287.352 834.152,287.395 836.425,287.446 838.697,287.501 840.97,287.56 843.242,287.623 845.514,287.69 847.787,287.761 850.059,287.836 852.331,287.915 \n", " 854.604,287.998 856.876,288.085 859.148,288.176 861.421,288.271 863.693,288.37 865.966,288.474 868.238,288.581 870.51,288.692 872.783,288.808 875.055,288.927 \n", " 877.327,289.051 879.03,289.147 879.6,289.178 881.872,289.309 884.144,289.444 886.417,289.583 888.689,289.726 890.962,289.873 893.234,290.024 895.506,290.18 \n", " 897.779,290.34 900.051,290.504 902.323,290.672 904.596,290.845 905.834,290.941 906.868,291.021 909.14,291.2 911.413,291.384 913.685,291.572 915.958,291.764 \n", " 918.23,291.961 920.502,292.162 922.775,292.367 925.047,292.577 926.728,292.735 927.319,292.791 929.592,293.007 931.864,293.228 934.136,293.454 936.409,293.684 \n", " 938.681,293.918 940.954,294.157 943.226,294.401 944.405,294.53 945.498,294.648 947.771,294.899 950.043,295.154 952.315,295.413 954.588,295.678 956.86,295.947 \n", " 959.132,296.22 959.979,296.324 961.405,296.497 963.677,296.778 965.949,297.063 968.222,297.354 970.494,297.649 972.767,297.949 974.032,298.118 975.039,298.252 \n", " 977.311,298.559 979.584,298.871 981.856,299.188 984.128,299.51 986.401,299.837 986.921,299.913 988.673,300.166 990.945,300.5 993.218,300.84 995.49,301.184 \n", " 997.763,301.533 998.877,301.707 1000.03,301.886 1002.31,302.243 1004.58,302.605 1006.85,302.973 1009.12,303.345 1010.06,303.501 1011.4,303.721 1013.67,304.101 \n", " 1015.94,304.487 1018.21,304.878 1020.49,305.275 1020.61,305.296 1022.76,305.674 1025.03,306.078 1027.3,306.488 1029.58,306.903 1030.59,307.09 1031.85,307.322 \n", " 1034.12,307.746 1036.39,308.175 1038.67,308.61 1040.08,308.884 1040.94,309.049 1043.21,309.492 1045.48,309.941 1047.75,310.396 1049.15,310.679 1050.03,310.856 \n", " 1052.3,311.319 1054.57,311.788 1056.84,312.264 1057.83,312.473 1059.12,312.743 1061.39,313.227 1063.66,313.717 1065.93,314.214 1066.17,314.267 1068.21,314.714 \n", " 1070.48,315.219 1072.75,315.731 1074.2,316.062 1075.02,316.248 1077.3,316.769 1079.57,317.297 1081.84,317.831 1081.95,317.856 1084.11,318.368 1086.38,318.912 \n", " 1088.66,319.462 1089.43,319.65 1090.93,320.017 1093.2,320.577 1095.47,321.145 1096.66,321.445 1097.75,321.717 1100.02,322.294 1102.29,322.878 1103.68,323.239 \n", " 1104.56,323.468 1106.84,324.063 1109.11,324.665 1110.49,325.033 1111.38,325.272 1113.65,325.885 1115.93,326.504 1117.1,326.828 1118.2,327.13 1120.47,327.761 \n", " 1122.74,328.399 1123.53,328.622 1125.01,329.043 1127.29,329.693 1129.56,330.35 1129.79,330.416 1131.83,331.012 1134.1,331.682 1135.88,332.211 1136.38,332.358 \n", " 1138.65,333.039 1140.92,333.729 1141.82,334.005 1143.19,334.424 1145.47,335.126 1147.62,335.799 1147.74,335.836 1150.01,336.551 1152.28,337.274 1153.28,337.594 \n", " 1154.56,338.003 1156.83,338.739 1158.81,339.388 1159.1,339.484 1161.37,340.234 1163.65,340.992 1164.21,341.182 1165.92,341.757 1168.19,342.529 1169.49,342.977 \n", " 1170.46,343.309 1172.73,344.096 1174.66,344.771 1175.01,344.892 1177.28,345.694 1179.55,346.505 1179.72,346.565 1181.82,347.322 1184.1,348.148 1184.67,348.36 \n", " 1186.37,348.981 1188.64,349.824 1189.53,350.154 1190.91,350.673 1193.19,351.532 1194.28,351.948 1195.46,352.398 1197.73,353.273 1198.94,353.743 1200,354.156 \n", " 1202.28,355.048 1203.51,355.537 1204.55,355.949 1206.82,356.858 1207.99,357.331 1209.09,357.776 1211.36,358.704 1212.39,359.126 1213.64,359.64 1215.91,360.586 \n", " 1216.71,360.92 1218.18,361.541 1220.45,362.506 1220.94,362.714 1222.73,363.479 1225,364.464 1225.1,364.509 1227.27,365.457 1229.19,366.303 1229.54,366.462 \n", " 1231.82,367.475 1233.2,368.097 1234.09,368.5 1236.36,369.534 1237.14,369.892 1238.63,370.58 1240.91,371.636 1241.01,371.686 1243.18,372.703 1244.82,373.48 \n", " 1245.45,373.781 1247.72,374.871 1248.56,375.275 1249.99,375.971 1252.24,377.069 1252.27,377.084 1254.54,378.208 1255.85,378.863 1256.81,379.345 1259.08,380.494 \n", " 1259.41,380.658 1261.36,381.654 1262.9,382.452 1263.63,382.828 1265.9,384.015 1266.34,384.246 1268.17,385.215 1269.72,386.041 1270.45,386.428 1272.72,387.655 \n", " 1273.05,387.835 1274.99,388.895 1276.32,389.629 1277.26,390.15 1279.54,391.42 1279.54,391.424 1281.81,392.704 1282.71,393.218 1284.08,394.003 1285.83,395.012 \n", " 1286.35,395.317 1288.62,396.647 1288.9,396.807 1290.9,397.993 1291.92,398.601 1293.17,399.356 1294.89,400.395 1295.44,400.735 1297.71,402.131 1297.81,402.19 \n", " 1299.99,403.545 1300.69,403.984 1302.26,404.977 1303.52,405.778 1304.53,406.428 1306.31,407.573 1306.8,407.897 1309.05,409.367 1309.08,409.385 1311.35,410.894 \n", " 1311.75,411.161 1313.62,412.423 1314.41,412.956 1315.89,413.973 1317.02,414.75 1318.17,415.544 1319.6,416.544 1320.44,417.137 1322.13,418.339 1322.71,418.754 \n", " 1324.62,420.133 1324.98,420.394 1327.08,421.927 1327.26,422.058 1329.49,423.722 1329.53,423.747 1331.8,425.462 1331.87,425.516 1334.07,427.203 1334.21,427.31 \n", " 1336.34,428.973 1336.51,429.105 1338.62,430.771 1338.78,430.899 1340.89,432.598 1341.01,432.693 1343.16,434.456 1343.2,434.488 1345.36,436.282 1345.43,436.347 \n", " 1347.48,438.076 1347.71,438.27 1349.57,439.871 1349.98,440.229 1351.62,441.665 1352.25,442.223 1353.64,443.459 1354.52,444.255 1355.63,445.254 1356.8,446.326 \n", " 1357.58,447.048 1359.07,448.438 1359.5,448.842 1361.34,450.593 1361.39,450.637 1363.24,452.431 1363.61,452.794 1365.07,454.225 1365.89,455.043 1366.86,456.02 \n", " 1368.16,457.342 1368.62,457.814 1370.35,459.608 1370.43,459.693 1372.05,461.403 1372.7,462.103 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#3b0964; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,403.629 1370.69,402.19 1370.43,402.007 1368.16,400.406 1368.14,400.395 1365.89,398.825 1365.56,398.601 1363.61,397.264 1362.94,396.807 1361.34,395.723 \n", " 1360.28,395.012 1359.07,394.2 1357.59,393.218 1356.8,392.696 1354.85,391.424 1354.52,391.211 1352.25,389.742 1352.08,389.629 1349.98,388.291 1349.26,387.835 \n", " 1347.71,386.857 1346.4,386.041 1345.43,385.439 1343.5,384.246 1343.16,384.038 1340.89,382.652 1340.56,382.452 1338.62,381.281 1337.58,380.658 1336.34,379.926 \n", " 1334.55,378.863 1334.07,378.586 1331.8,377.26 1331.47,377.069 1329.53,375.948 1328.35,375.275 1327.26,374.65 1325.19,373.48 1324.98,373.366 1322.71,372.095 \n", " 1321.97,371.686 1320.44,370.838 1318.71,369.892 1318.17,369.594 1315.89,368.362 1315.4,368.097 1313.62,367.143 1312.04,366.303 1311.35,365.936 1309.08,364.742 \n", " 1308.63,364.509 1306.8,363.559 1305.17,362.714 1304.53,362.388 1302.26,361.228 1301.65,360.92 1299.99,360.08 1298.08,359.126 1297.71,358.943 1295.44,357.817 \n", " 1294.45,357.331 1293.17,356.702 1290.9,355.598 1290.77,355.537 1288.62,354.503 1287.03,353.743 1286.35,353.42 1284.08,352.346 1283.23,351.948 1281.81,351.283 \n", " 1279.54,350.23 1279.37,350.154 1277.26,349.186 1275.45,348.36 1274.99,348.152 1272.72,347.127 1271.46,346.565 1270.45,346.113 1268.17,345.107 1267.41,344.771 \n", " 1265.9,344.11 1263.63,343.124 1263.29,342.977 1261.36,342.144 1259.1,341.182 1259.08,341.176 1256.81,340.213 1254.84,339.388 1254.54,339.262 1252.27,338.317 \n", " 1250.51,337.594 1249.99,337.383 1247.72,336.455 1246.1,335.799 1245.45,335.537 1243.18,334.626 1241.61,334.005 1240.91,333.723 1238.63,332.828 1237.05,332.211 \n", " 1236.36,331.942 1234.09,331.062 1232.4,330.416 1231.82,330.192 1229.54,329.327 1227.67,328.622 1227.27,328.472 1225,327.623 1222.85,326.828 1222.73,326.783 \n", " 1220.45,325.947 1218.18,325.122 1217.94,325.033 1215.91,324.301 1213.64,323.49 1212.93,323.239 1211.36,322.684 1209.09,321.886 1207.82,321.445 1206.82,321.095 \n", " 1204.55,320.309 1202.62,319.65 1202.28,319.533 1200,318.761 1197.73,317.997 1197.31,317.856 1195.46,317.239 1193.19,316.488 1191.88,316.062 1190.91,315.743 \n", " 1188.64,315.005 1186.37,314.274 1186.35,314.267 1184.1,313.547 1181.82,312.829 1180.69,312.473 1179.55,312.116 1177.28,311.408 1175.01,310.709 1174.91,310.679 \n", " 1172.73,310.013 1170.46,309.325 1168.99,308.884 1168.19,308.643 1165.92,307.966 1163.65,307.296 1162.94,307.09 1161.37,306.631 1159.1,305.972 1156.83,305.32 \n", " 1156.74,305.296 1154.56,304.671 1152.28,304.03 1150.39,303.501 1150.01,303.395 1147.74,302.763 1145.47,302.139 1143.88,301.707 1143.19,301.52 1140.92,300.905 \n", " 1138.65,300.298 1137.19,299.913 1136.38,299.695 1134.1,299.097 1131.83,298.505 1130.33,298.118 1129.56,297.919 1127.29,297.337 1125.01,296.761 1123.27,296.324 \n", " 1122.74,296.191 1120.47,295.624 1118.2,295.064 1116.01,294.53 1115.93,294.51 1113.65,293.958 1111.38,293.413 1109.11,292.874 1108.52,292.735 1106.84,292.338 \n", " 1104.56,291.807 1102.29,291.283 1100.79,290.941 1100.02,290.764 1097.75,290.247 1095.47,289.737 1093.2,289.233 1092.81,289.147 1090.93,288.731 1088.66,288.235 \n", " 1086.38,287.745 1084.54,287.352 1084.11,287.26 1081.84,286.777 1079.57,286.3 1077.3,285.829 1075.98,285.558 1075.02,285.362 1072.75,284.898 1070.48,284.44 \n", " 1068.21,283.987 1067.07,283.764 1065.93,283.538 1063.66,283.093 1061.39,282.653 1059.12,282.219 1057.79,281.969 1056.84,281.789 1054.57,281.361 1052.3,280.939 \n", " 1050.03,280.523 1048.11,280.175 1047.75,280.111 1045.48,279.701 1043.21,279.297 1040.94,278.897 1038.67,278.503 1037.95,278.381 1036.39,278.112 1034.12,277.724 \n", " 1031.85,277.342 1029.58,276.965 1027.3,276.593 1027.27,276.586 1025.03,276.222 1022.76,275.856 1020.49,275.495 1018.21,275.139 1015.97,274.792 1015.94,274.788 \n", " 1013.67,274.438 1011.4,274.093 1009.12,273.753 1006.85,273.417 1004.58,273.087 1003.96,272.998 1002.31,272.759 1000.03,272.434 997.763,272.114 995.49,271.799 \n", " 993.218,271.489 991.095,271.203 990.945,271.183 988.673,270.879 986.401,270.579 984.128,270.283 981.856,269.993 979.584,269.706 977.311,269.425 977.185,269.409 \n", " 975.039,269.144 972.767,268.868 970.494,268.597 968.222,268.329 965.949,268.067 963.677,267.808 961.948,267.615 961.405,267.553 959.132,267.301 956.86,267.052 \n", " 954.588,266.808 952.315,266.568 950.043,266.333 947.771,266.101 945.498,265.874 944.954,265.82 943.226,265.649 940.954,265.427 938.681,265.21 936.409,264.997 \n", " 934.136,264.787 931.864,264.582 929.592,264.381 927.319,264.184 925.454,264.026 925.047,263.991 922.775,263.8 920.502,263.613 918.23,263.43 915.958,263.25 \n", " 913.685,263.075 911.413,262.904 909.14,262.736 906.868,262.573 904.596,262.413 902.323,262.258 901.935,262.232 900.051,262.104 897.779,261.954 895.506,261.809 \n", " 893.234,261.666 890.962,261.528 888.689,261.394 886.417,261.263 884.144,261.136 881.872,261.013 879.6,260.894 877.327,260.778 875.055,260.666 872.783,260.558 \n", " 870.51,260.454 870.135,260.437 868.238,260.352 865.966,260.254 863.693,260.16 861.421,260.069 859.148,259.982 856.876,259.899 854.604,259.819 852.331,259.743 \n", " 850.059,259.671 847.787,259.602 845.514,259.537 843.242,259.476 840.97,259.418 838.697,259.364 836.425,259.314 834.152,259.267 831.88,259.224 829.608,259.184 \n", " 827.335,259.148 825.063,259.116 822.791,259.087 820.518,259.062 818.246,259.04 815.974,259.022 813.701,259.008 811.429,258.997 809.156,258.99 806.884,258.986 \n", " 804.612,258.986 802.339,258.99 800.067,258.997 797.795,259.008 795.522,259.022 793.25,259.04 790.978,259.062 788.705,259.087 786.433,259.116 784.16,259.148 \n", " 781.888,259.184 779.616,259.224 777.343,259.267 775.071,259.314 772.799,259.364 770.526,259.418 768.254,259.476 765.982,259.537 763.709,259.602 761.437,259.671 \n", " 759.164,259.743 756.892,259.819 754.62,259.899 752.347,259.982 750.075,260.069 747.803,260.16 745.53,260.254 743.258,260.352 741.361,260.437 740.986,260.454 \n", " 738.713,260.558 736.441,260.666 734.169,260.778 731.896,260.894 729.624,261.013 727.351,261.136 725.079,261.263 722.807,261.394 720.534,261.528 718.262,261.666 \n", " 715.99,261.809 713.717,261.954 711.445,262.104 709.561,262.232 709.173,262.258 706.9,262.413 704.628,262.573 702.355,262.736 700.083,262.904 697.811,263.075 \n", " 695.538,263.25 693.266,263.43 690.994,263.613 688.721,263.8 686.449,263.991 686.042,264.026 684.177,264.184 681.904,264.381 679.632,264.582 677.359,264.787 \n", " 675.087,264.997 672.815,265.21 670.542,265.427 668.27,265.649 666.542,265.82 665.998,265.874 663.725,266.101 661.453,266.333 659.181,266.568 656.908,266.808 \n", " 654.636,267.052 652.363,267.301 650.091,267.553 649.548,267.615 647.819,267.808 645.546,268.067 643.274,268.329 641.002,268.597 638.729,268.868 636.457,269.144 \n", " 634.311,269.409 634.185,269.425 631.912,269.706 629.64,269.993 627.367,270.283 625.095,270.579 622.823,270.879 620.55,271.183 620.401,271.203 618.278,271.489 \n", " 616.006,271.799 613.733,272.114 611.461,272.434 609.189,272.759 607.538,272.998 606.916,273.087 604.644,273.417 602.371,273.753 600.099,274.093 597.827,274.438 \n", " 595.554,274.788 595.526,274.792 593.282,275.139 591.01,275.495 588.737,275.856 586.465,276.222 584.231,276.586 584.193,276.593 581.92,276.965 579.648,277.342 \n", " 577.375,277.724 575.103,278.112 573.547,278.381 572.831,278.503 570.558,278.897 568.286,279.297 566.014,279.701 563.741,280.111 563.391,280.175 561.469,280.523 \n", " 559.197,280.939 556.924,281.361 554.652,281.789 553.701,281.969 552.38,282.219 550.107,282.653 547.835,283.093 545.562,283.538 544.425,283.764 543.29,283.987 \n", " 541.018,284.44 538.745,284.898 536.473,285.362 535.521,285.558 534.201,285.829 531.928,286.3 529.656,286.777 527.384,287.26 526.951,287.352 525.111,287.745 \n", " 522.839,288.235 520.566,288.731 518.687,289.147 518.294,289.233 516.022,289.737 513.749,290.247 511.477,290.764 510.704,290.941 509.205,291.283 506.932,291.807 \n", " 504.66,292.338 502.978,292.735 502.388,292.874 500.115,293.413 497.843,293.958 495.57,294.51 495.49,294.53 493.298,295.064 491.026,295.624 488.753,296.191 \n", " 488.225,296.324 486.481,296.761 484.209,297.337 481.936,297.919 481.166,298.118 479.664,298.505 477.392,299.097 475.119,299.695 474.301,299.913 472.847,300.298 \n", " 470.574,300.905 468.302,301.52 467.617,301.707 466.03,302.139 463.757,302.763 461.485,303.395 461.105,303.501 459.213,304.03 456.94,304.671 454.754,305.296 \n", " 454.668,305.32 452.396,305.972 450.123,306.631 448.557,307.09 447.851,307.296 445.578,307.966 443.306,308.643 442.504,308.884 441.034,309.325 438.761,310.013 \n", " 436.59,310.679 436.489,310.709 434.217,311.408 431.944,312.116 430.807,312.473 429.672,312.829 427.4,313.547 425.149,314.267 425.127,314.274 422.855,315.005 \n", " 420.582,315.743 419.612,316.062 418.31,316.488 416.038,317.239 414.19,317.856 413.765,317.997 411.493,318.761 409.221,319.533 408.877,319.65 406.948,320.309 \n", " 404.676,321.095 403.671,321.445 402.404,321.886 400.131,322.684 398.566,323.239 397.859,323.49 395.586,324.301 393.56,325.033 393.314,325.122 391.042,325.947 \n", " 388.769,326.783 388.648,326.828 386.497,327.623 384.225,328.472 383.827,328.622 381.952,329.327 379.68,330.192 379.094,330.416 377.408,331.062 375.135,331.942 \n", " 374.446,332.211 372.863,332.828 370.59,333.723 369.881,334.005 368.318,334.626 366.046,335.537 365.396,335.799 363.773,336.455 361.501,337.383 360.988,337.594 \n", " 359.229,338.317 356.956,339.262 356.655,339.388 354.684,340.213 352.412,341.176 352.396,341.182 350.139,342.144 348.207,342.977 347.867,343.124 345.595,344.11 \n", " 344.087,344.771 343.322,345.107 341.05,346.113 340.035,346.565 338.777,347.127 336.505,348.152 336.048,348.36 334.233,349.186 332.126,350.154 331.96,350.23 \n", " 329.688,351.283 328.264,351.948 327.416,352.346 325.143,353.42 324.465,353.743 322.871,354.503 320.725,355.537 320.599,355.598 318.326,356.702 317.041,357.331 \n", " 316.054,357.817 313.781,358.943 313.416,359.126 311.509,360.08 309.845,360.92 309.237,361.228 306.964,362.388 306.329,362.714 304.692,363.559 302.866,364.509 \n", " 302.42,364.742 300.147,365.936 299.454,366.303 297.875,367.143 296.094,368.097 295.603,368.362 293.33,369.594 292.784,369.892 291.058,370.838 289.523,371.686 \n", " 288.785,372.095 286.513,373.366 286.31,373.48 284.241,374.65 283.144,375.275 281.968,375.948 280.025,377.069 279.696,377.26 277.424,378.586 276.95,378.863 \n", " 275.151,379.926 273.921,380.658 272.879,381.281 270.936,382.452 270.607,382.652 268.334,384.038 267.994,384.246 266.062,385.439 265.094,386.041 263.789,386.857 \n", " 262.236,387.835 261.517,388.291 259.42,389.629 259.245,389.742 256.972,391.211 256.644,391.424 254.7,392.696 253.908,393.218 252.428,394.2 251.211,395.012 \n", " 250.155,395.723 248.553,396.807 247.883,397.264 245.934,398.601 245.611,398.825 243.353,400.395 243.338,400.406 241.066,402.007 240.808,402.19 238.793,403.629 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#1f0c47; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 238.793,345.969 241.015,344.771 241.066,344.744 243.338,343.528 244.376,342.977 245.611,342.323 247.786,341.182 247.883,341.132 250.155,339.948 251.24,339.388 \n", " 252.428,338.776 254.7,337.616 254.744,337.594 256.972,336.464 258.295,335.799 259.245,335.323 261.517,334.193 261.897,334.005 263.789,333.071 265.548,332.211 \n", " 266.062,331.96 268.334,330.858 269.252,330.416 270.607,329.765 272.879,328.683 273.009,328.622 275.151,327.608 276.818,326.828 277.424,326.544 279.696,325.488 \n", " 280.682,325.033 281.968,324.441 284.241,323.404 284.604,323.239 286.513,322.373 288.583,321.445 288.785,321.354 291.058,320.34 292.619,319.65 293.33,319.337 \n", " 295.603,318.34 296.717,317.856 297.875,317.353 300.147,316.374 300.876,316.062 302.42,315.401 304.692,314.439 305.099,314.267 306.964,313.482 309.237,312.535 \n", " 309.386,312.473 311.509,311.593 313.74,310.679 313.781,310.662 316.054,309.735 318.162,308.884 318.326,308.818 320.599,307.906 322.654,307.09 322.871,307.004 \n", " 325.143,306.106 327.218,305.296 327.416,305.219 329.688,304.335 331.857,303.501 331.96,303.462 334.233,302.592 336.505,301.732 336.572,301.707 338.777,300.876 \n", " 341.05,300.029 341.365,299.913 343.322,299.187 345.595,298.353 346.24,298.118 347.867,297.525 350.139,296.704 351.198,296.324 352.412,295.888 354.684,295.079 \n", " 356.244,294.53 356.956,294.278 359.229,293.481 361.379,292.735 361.501,292.693 363.773,291.907 366.046,291.131 366.606,290.941 368.318,290.359 370.59,289.594 \n", " 371.93,289.147 372.863,288.834 375.135,288.08 377.354,287.352 377.408,287.335 379.68,286.591 381.952,285.856 382.88,285.558 384.225,285.125 386.497,284.4 \n", " 388.514,283.764 388.769,283.683 391.042,282.968 393.314,282.261 394.26,281.969 395.586,281.559 397.859,280.862 400.124,280.175 400.131,280.173 402.404,279.485 \n", " 404.676,278.805 406.108,278.381 406.948,278.131 409.221,277.46 411.493,276.797 412.221,276.586 413.765,276.137 416.038,275.483 418.31,274.836 418.467,274.792 \n", " 420.582,274.191 422.855,273.552 424.852,272.998 425.127,272.921 427.4,272.291 429.672,271.668 431.386,271.203 431.944,271.051 434.217,270.436 436.489,269.828 \n", " 438.074,269.409 438.761,269.226 441.034,268.626 443.306,268.033 444.926,267.615 445.578,267.445 447.851,266.859 450.123,266.281 451.951,265.82 452.396,265.708 \n", " 454.668,265.136 456.94,264.571 459.159,264.026 459.213,264.013 461.485,263.455 463.757,262.903 466.03,262.359 466.564,262.232 468.302,261.815 470.574,261.277 \n", " 472.847,260.745 474.176,260.437 475.119,260.217 477.392,259.692 479.664,259.173 481.936,258.66 482.012,258.643 484.209,258.147 486.481,257.64 488.753,257.14 \n", " 490.088,256.849 491.026,256.643 493.298,256.148 495.57,255.659 497.843,255.177 498.423,255.054 500.115,254.695 502.388,254.218 504.66,253.747 506.932,253.281 \n", " 507.037,253.26 509.205,252.816 511.477,252.356 513.749,251.902 515.958,251.466 516.022,251.453 518.294,251.004 520.566,250.561 522.839,250.123 525.111,249.691 \n", " 525.213,249.671 527.384,249.258 529.656,248.831 531.928,248.409 534.201,247.993 534.838,247.877 536.473,247.577 538.745,247.166 541.018,246.76 543.29,246.359 \n", " 544.871,246.083 545.562,245.961 547.835,245.565 550.107,245.174 552.38,244.788 554.652,244.407 555.364,244.288 556.924,244.027 559.197,243.651 561.469,243.279 \n", " 563.741,242.913 566.014,242.551 566.375,242.494 568.286,242.19 570.558,241.833 572.831,241.481 575.103,241.133 577.375,240.79 577.982,240.7 579.648,240.449 \n", " 581.92,240.11 584.193,239.777 586.465,239.447 588.737,239.123 590.28,238.905 591.01,238.801 593.282,238.481 595.554,238.166 597.827,237.855 600.099,237.548 \n", " 602.371,237.245 603.394,237.111 604.644,236.945 606.916,236.647 609.189,236.353 611.461,236.064 613.733,235.779 616.006,235.498 617.494,235.317 618.278,235.22 \n", " 620.55,234.944 622.823,234.671 625.095,234.403 627.367,234.139 629.64,233.879 631.912,233.624 632.824,233.522 634.185,233.37 636.457,233.118 638.729,232.871 \n", " 641.002,232.627 643.274,232.388 645.546,232.152 647.819,231.921 649.742,231.728 650.091,231.693 652.363,231.465 654.636,231.242 656.908,231.023 659.181,230.807 \n", " 661.453,230.596 663.725,230.388 665.998,230.184 668.27,229.983 668.84,229.934 670.542,229.784 672.815,229.588 675.087,229.396 677.359,229.208 679.632,229.023 \n", " 681.904,228.842 684.177,228.665 686.449,228.491 688.721,228.321 690.994,228.154 691.199,228.139 693.266,227.989 695.538,227.827 697.811,227.669 700.083,227.514 \n", " 702.355,227.363 704.628,227.215 706.9,227.071 709.173,226.93 711.445,226.793 713.717,226.66 715.99,226.529 718.262,226.403 719.322,226.345 720.534,226.278 \n", " 722.807,226.157 725.079,226.038 727.351,225.923 729.624,225.812 731.896,225.704 734.169,225.599 736.441,225.498 738.713,225.4 740.986,225.306 743.258,225.214 \n", " 745.53,225.127 747.803,225.042 750.075,224.961 752.347,224.883 754.62,224.809 756.892,224.737 759.164,224.669 761.437,224.605 763.439,224.551 763.709,224.543 \n", " 765.982,224.484 768.254,224.429 770.526,224.376 772.799,224.327 775.071,224.281 777.343,224.239 779.616,224.2 781.888,224.164 784.16,224.131 786.433,224.102 \n", " 788.705,224.076 790.978,224.053 793.25,224.033 795.522,224.017 797.795,224.004 800.067,223.994 802.339,223.988 804.612,223.984 806.884,223.984 809.156,223.988 \n", " 811.429,223.994 813.701,224.004 815.974,224.017 818.246,224.033 820.518,224.053 822.791,224.076 825.063,224.102 827.335,224.131 829.608,224.164 831.88,224.2 \n", " 834.152,224.239 836.425,224.281 838.697,224.327 840.97,224.376 843.242,224.429 845.514,224.484 847.787,224.543 848.057,224.551 850.059,224.605 852.331,224.669 \n", " 854.604,224.737 856.876,224.809 859.148,224.883 861.421,224.961 863.693,225.042 865.966,225.127 868.238,225.214 870.51,225.306 872.783,225.4 875.055,225.498 \n", " 877.327,225.599 879.6,225.704 881.872,225.812 884.144,225.923 886.417,226.038 888.689,226.157 890.962,226.278 892.173,226.345 893.234,226.403 895.506,226.529 \n", " 897.779,226.66 900.051,226.793 902.323,226.93 904.596,227.071 906.868,227.215 909.14,227.363 911.413,227.514 913.685,227.669 915.958,227.827 918.23,227.989 \n", " 920.297,228.139 920.502,228.154 922.775,228.321 925.047,228.491 927.319,228.665 929.592,228.842 931.864,229.023 934.136,229.208 936.409,229.396 938.681,229.588 \n", " 940.954,229.784 942.655,229.934 943.226,229.983 945.498,230.184 947.771,230.388 950.043,230.596 952.315,230.807 954.588,231.023 956.86,231.242 959.132,231.465 \n", " 961.405,231.693 961.754,231.728 963.677,231.921 965.949,232.152 968.222,232.388 970.494,232.627 972.767,232.871 975.039,233.118 977.311,233.37 978.672,233.522 \n", " 979.584,233.624 981.856,233.879 984.128,234.139 986.401,234.403 988.673,234.671 990.945,234.944 993.218,235.22 994.001,235.317 995.49,235.498 997.763,235.779 \n", " 1000.03,236.064 1002.31,236.353 1004.58,236.647 1006.85,236.945 1008.1,237.111 1009.12,237.245 1011.4,237.548 1013.67,237.855 1015.94,238.166 1018.21,238.481 \n", " 1020.49,238.801 1021.22,238.905 1022.76,239.123 1025.03,239.447 1027.3,239.777 1029.58,240.11 1031.85,240.449 1033.51,240.7 1034.12,240.79 1036.39,241.133 \n", " 1038.67,241.481 1040.94,241.833 1043.21,242.19 1045.12,242.494 1045.48,242.551 1047.75,242.913 1050.03,243.279 1052.3,243.651 1054.57,244.027 1056.13,244.288 \n", " 1056.84,244.407 1059.12,244.788 1061.39,245.174 1063.66,245.565 1065.93,245.961 1066.62,246.083 1068.21,246.359 1070.48,246.76 1072.75,247.166 1075.02,247.577 \n", " 1076.66,247.877 1077.3,247.993 1079.57,248.409 1081.84,248.831 1084.11,249.258 1086.28,249.671 1086.38,249.691 1088.66,250.123 1090.93,250.561 1093.2,251.004 \n", " 1095.47,251.453 1095.54,251.466 1097.75,251.902 1100.02,252.356 1102.29,252.816 1104.46,253.26 1104.56,253.281 1106.84,253.747 1109.11,254.218 1111.38,254.695 \n", " 1113.07,255.054 1113.65,255.177 1115.93,255.659 1118.2,256.148 1120.47,256.643 1121.41,256.849 1122.74,257.14 1125.01,257.64 1127.29,258.147 1129.48,258.643 \n", " 1129.56,258.66 1131.83,259.173 1134.1,259.692 1136.38,260.217 1137.32,260.437 1138.65,260.745 1140.92,261.277 1143.19,261.815 1144.93,262.232 1145.47,262.359 \n", " 1147.74,262.903 1150.01,263.455 1152.28,264.013 1152.34,264.026 1154.56,264.571 1156.83,265.136 1159.1,265.708 1159.55,265.82 1161.37,266.281 1163.65,266.859 \n", " 1165.92,267.445 1166.57,267.615 1168.19,268.033 1170.46,268.626 1172.73,269.226 1173.42,269.409 1175.01,269.828 1177.28,270.436 1179.55,271.051 1180.11,271.203 \n", " 1181.82,271.668 1184.1,272.291 1186.37,272.921 1186.64,272.998 1188.64,273.552 1190.91,274.191 1193.03,274.792 1193.19,274.836 1195.46,275.483 1197.73,276.137 \n", " 1199.28,276.586 1200,276.797 1202.28,277.46 1204.55,278.131 1205.39,278.381 1206.82,278.805 1209.09,279.485 1211.36,280.173 1211.37,280.175 1213.64,280.862 \n", " 1215.91,281.559 1217.24,281.969 1218.18,282.261 1220.45,282.968 1222.73,283.683 1222.98,283.764 1225,284.4 1227.27,285.125 1228.62,285.558 1229.54,285.856 \n", " 1231.82,286.591 1234.09,287.335 1234.14,287.352 1236.36,288.08 1238.63,288.834 1239.57,289.147 1240.91,289.594 1243.18,290.359 1244.89,290.941 1245.45,291.131 \n", " 1247.72,291.907 1249.99,292.693 1250.12,292.735 1252.27,293.481 1254.54,294.278 1255.25,294.53 1256.81,295.079 1259.08,295.888 1260.3,296.324 1261.36,296.704 \n", " 1263.63,297.525 1265.26,298.118 1265.9,298.353 1268.17,299.187 1270.13,299.913 1270.45,300.029 1272.72,300.876 1274.92,301.707 1274.99,301.732 1277.26,302.592 \n", " 1279.54,303.462 1279.64,303.501 1281.81,304.335 1284.08,305.219 1284.28,305.296 1286.35,306.106 1288.62,307.004 1288.84,307.09 1290.9,307.906 1293.17,308.818 \n", " 1293.33,308.884 1295.44,309.735 1297.71,310.662 1297.76,310.679 1299.99,311.593 1302.11,312.473 1302.26,312.535 1304.53,313.482 1306.4,314.267 1306.8,314.439 \n", " 1309.08,315.401 1310.62,316.062 1311.35,316.374 1313.62,317.353 1314.78,317.856 1315.89,318.34 1318.17,319.337 1318.88,319.65 1320.44,320.34 1322.71,321.354 \n", " 1322.91,321.445 1324.98,322.373 1326.89,323.239 1327.26,323.404 1329.53,324.441 1330.81,325.033 1331.8,325.488 1334.07,326.544 1334.68,326.828 1336.34,327.608 \n", " 1338.49,328.622 1338.62,328.683 1340.89,329.765 1342.24,330.416 1343.16,330.858 1345.43,331.96 1345.95,332.211 1347.71,333.071 1349.6,334.005 1349.98,334.193 \n", " 1352.25,335.323 1353.2,335.799 1354.52,336.464 1356.75,337.594 1356.8,337.616 1359.07,338.776 1360.26,339.388 1361.34,339.948 1363.61,341.132 1363.71,341.182 \n", " 1365.89,342.323 1367.12,342.977 1368.16,343.528 1370.43,344.744 1370.48,344.771 1372.7,345.969 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#090621; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1372.7,275.381 1371.28,274.792 1370.43,274.438 1368.16,273.5 1366.93,272.998 1365.89,272.57 1363.61,271.646 1362.52,271.203 1361.34,270.728 1359.07,269.818 \n", " 1358.04,269.409 1356.8,268.913 1354.52,268.015 1353.5,267.615 1352.25,267.122 1349.98,266.237 1348.9,265.82 1347.71,265.357 1345.43,264.484 1344.23,264.026 \n", " 1343.16,263.616 1340.89,262.754 1339.5,262.232 1338.62,261.9 1336.34,261.049 1334.69,260.437 1334.07,260.207 1331.8,259.367 1329.82,258.643 1329.53,258.537 \n", " 1327.26,257.709 1324.98,256.891 1324.87,256.849 1322.71,256.073 1320.44,255.265 1319.84,255.054 1318.17,254.46 1315.89,253.662 1314.74,253.26 1313.62,252.869 \n", " 1311.35,252.081 1309.55,251.466 1309.08,251.301 1306.8,250.522 1304.53,249.753 1304.29,249.671 1302.26,248.985 1299.99,248.225 1298.94,247.877 1297.71,247.469 \n", " 1295.44,246.718 1293.5,246.083 1293.17,245.975 1290.9,245.233 1288.62,244.499 1287.97,244.288 1286.35,243.768 1284.08,243.043 1282.34,242.494 1281.81,242.324 \n", " 1279.54,241.607 1277.26,240.899 1276.62,240.7 1274.99,240.192 1272.72,239.492 1270.8,238.905 1270.45,238.798 1268.17,238.105 1265.9,237.42 1264.87,237.111 \n", " 1263.63,236.739 1261.36,236.061 1259.08,235.392 1258.83,235.317 1256.81,234.722 1254.54,234.06 1252.68,233.522 1252.27,233.403 1249.99,232.748 1247.72,232.1 \n", " 1246.41,231.728 1245.45,231.456 1243.18,230.814 1240.91,230.181 1240.01,229.934 1238.63,229.549 1236.36,228.921 1234.09,228.301 1233.49,228.139 1231.82,227.682 \n", " 1229.54,227.068 1227.27,226.461 1226.83,226.345 1225,225.855 1222.73,225.254 1220.45,224.66 1220.03,224.551 1218.18,224.066 1215.91,223.478 1213.64,222.897 \n", " 1213.08,222.756 1211.36,222.316 1209.09,221.74 1206.82,221.171 1205.98,220.962 1204.55,220.603 1202.28,220.039 1200,219.482 1198.71,219.168 1197.73,218.927 \n", " 1195.46,218.375 1193.19,217.829 1191.27,217.373 1190.91,217.289 1188.64,216.747 1186.37,216.213 1184.1,215.685 1183.64,215.579 1181.82,215.156 1179.55,214.632 \n", " 1177.28,214.115 1175.81,213.785 1175.01,213.601 1172.73,213.088 1170.46,212.581 1168.19,212.08 1167.78,211.99 1165.92,211.578 1163.65,211.081 1161.37,210.59 \n", " 1159.53,210.196 1159.1,210.104 1156.83,209.617 1154.56,209.136 1152.28,208.661 1151.03,208.402 1150.01,208.188 1147.74,207.717 1145.47,207.251 1143.19,206.791 \n", " 1142.28,206.607 1140.92,206.332 1138.65,205.875 1136.38,205.424 1134.1,204.979 1133.25,204.813 1131.83,204.534 1129.56,204.092 1127.29,203.656 1125.01,203.224 \n", " 1123.92,203.019 1122.74,202.795 1120.47,202.367 1118.2,201.944 1115.93,201.527 1114.26,201.224 1113.65,201.112 1111.38,200.698 1109.11,200.289 1106.84,199.885 \n", " 1104.56,199.486 1104.24,199.43 1102.29,199.086 1100.02,198.69 1097.75,198.299 1095.47,197.913 1093.83,197.636 1093.2,197.529 1090.93,197.146 1088.66,196.768 \n", " 1086.38,196.394 1084.11,196.025 1082.97,195.841 1081.84,195.658 1079.57,195.292 1077.3,194.931 1075.02,194.574 1072.75,194.222 1071.61,194.047 1070.48,193.871 \n", " 1068.21,193.522 1065.93,193.177 1063.66,192.837 1061.39,192.501 1059.69,192.253 1059.12,192.168 1056.84,191.835 1054.57,191.506 1052.3,191.182 1050.03,190.862 \n", " 1047.75,190.546 1047.12,190.458 1045.48,190.23 1043.21,189.917 1040.94,189.608 1038.67,189.303 1036.39,189.002 1034.12,188.705 1033.8,188.664 1031.85,188.408 \n", " 1029.58,188.115 1027.3,187.825 1025.03,187.539 1022.76,187.257 1020.49,186.979 1019.58,186.87 1018.21,186.702 1015.94,186.427 1013.67,186.156 1011.4,185.888 \n", " 1009.12,185.625 1006.85,185.365 1004.58,185.109 1004.28,185.075 1002.31,184.853 1000.03,184.6 997.763,184.35 995.49,184.105 993.218,183.863 990.945,183.624 \n", " 988.673,183.389 987.609,183.281 986.401,183.156 984.128,182.924 981.856,182.696 979.584,182.471 977.311,182.25 975.039,182.033 972.767,181.819 970.494,181.608 \n", " 969.165,181.487 968.222,181.399 965.949,181.192 963.677,180.988 961.405,180.787 959.132,180.59 956.86,180.396 954.588,180.206 952.315,180.018 950.043,179.835 \n", " 948.255,179.692 947.771,179.653 945.498,179.473 943.226,179.296 940.954,179.122 938.681,178.951 936.409,178.784 934.136,178.619 931.864,178.458 929.592,178.301 \n", " 927.319,178.146 925.047,177.994 923.57,177.898 922.775,177.845 920.502,177.697 918.23,177.553 915.958,177.411 913.685,177.273 911.413,177.137 909.14,177.005 \n", " 906.868,176.876 904.596,176.75 902.323,176.627 900.051,176.507 897.779,176.39 895.506,176.276 893.234,176.166 891.93,176.104 890.962,176.057 888.689,175.95 \n", " 886.417,175.846 884.144,175.745 881.872,175.648 879.6,175.553 877.327,175.461 875.055,175.372 872.783,175.286 870.51,175.203 868.238,175.123 865.966,175.046 \n", " 863.693,174.972 861.421,174.901 859.148,174.833 856.876,174.767 854.604,174.705 852.331,174.645 850.059,174.588 847.787,174.535 845.514,174.484 843.242,174.435 \n", " 840.97,174.39 838.697,174.348 836.491,174.309 836.425,174.308 834.152,174.271 831.88,174.236 829.608,174.205 827.335,174.176 825.063,174.15 822.791,174.127 \n", " 820.518,174.107 818.246,174.09 815.974,174.075 813.701,174.064 811.429,174.055 809.156,174.05 806.884,174.047 804.612,174.047 802.339,174.05 800.067,174.055 \n", " 797.795,174.064 795.522,174.075 793.25,174.09 790.978,174.107 788.705,174.127 786.433,174.15 784.16,174.176 781.888,174.205 779.616,174.236 777.343,174.271 \n", " 775.071,174.308 775.005,174.309 772.799,174.348 770.526,174.39 768.254,174.435 765.982,174.484 763.709,174.535 761.437,174.588 759.164,174.645 756.892,174.705 \n", " 754.62,174.767 752.347,174.833 750.075,174.901 747.803,174.972 745.53,175.046 743.258,175.123 740.986,175.203 738.713,175.286 736.441,175.372 734.169,175.461 \n", " 731.896,175.553 729.624,175.648 727.351,175.745 725.079,175.846 722.807,175.95 720.534,176.057 719.566,176.104 718.262,176.166 715.99,176.276 713.717,176.39 \n", " 711.445,176.507 709.173,176.627 706.9,176.75 704.628,176.876 702.355,177.005 700.083,177.137 697.811,177.273 695.538,177.411 693.266,177.553 690.994,177.697 \n", " 688.721,177.845 687.926,177.898 686.449,177.994 684.177,178.146 681.904,178.301 679.632,178.458 677.359,178.619 675.087,178.784 672.815,178.951 670.542,179.122 \n", " 668.27,179.296 665.998,179.473 663.725,179.653 663.241,179.692 661.453,179.835 659.181,180.018 656.908,180.206 654.636,180.396 652.363,180.59 650.091,180.787 \n", " 647.819,180.988 645.546,181.192 643.274,181.399 642.331,181.487 641.002,181.608 638.729,181.819 636.457,182.033 634.185,182.25 631.912,182.471 629.64,182.696 \n", " 627.367,182.924 625.095,183.156 623.887,183.281 622.823,183.389 620.55,183.624 618.278,183.863 616.006,184.105 613.733,184.35 611.461,184.6 609.189,184.853 \n", " 607.219,185.075 606.916,185.109 604.644,185.365 602.371,185.625 600.099,185.888 597.827,186.156 595.554,186.427 593.282,186.702 591.915,186.87 591.01,186.979 \n", " 588.737,187.257 586.465,187.539 584.193,187.825 581.92,188.115 579.648,188.408 577.697,188.664 577.375,188.705 575.103,189.002 572.831,189.303 570.558,189.608 \n", " 568.286,189.917 566.014,190.23 564.375,190.458 563.741,190.546 561.469,190.862 559.197,191.182 556.924,191.506 554.652,191.835 552.38,192.168 551.807,192.253 \n", " 550.107,192.501 547.835,192.837 545.562,193.177 543.29,193.522 541.018,193.871 539.886,194.047 538.745,194.222 536.473,194.574 534.201,194.931 531.928,195.292 \n", " 529.656,195.658 528.53,195.841 527.384,196.025 525.111,196.394 522.839,196.768 520.566,197.146 518.294,197.529 517.669,197.636 516.022,197.913 513.749,198.299 \n", " 511.477,198.69 509.205,199.086 507.252,199.43 506.932,199.486 504.66,199.885 502.388,200.289 500.115,200.698 497.843,201.112 497.233,201.224 495.57,201.527 \n", " 493.298,201.944 491.026,202.367 488.753,202.795 487.575,203.019 486.481,203.224 484.209,203.656 481.936,204.092 479.664,204.534 478.245,204.813 477.392,204.979 \n", " 475.119,205.424 472.847,205.875 470.574,206.332 469.216,206.607 468.302,206.791 466.03,207.251 463.757,207.717 461.485,208.188 460.464,208.402 459.213,208.661 \n", " 456.94,209.136 454.668,209.617 452.396,210.104 451.969,210.196 450.123,210.59 447.851,211.081 445.578,211.578 443.714,211.99 443.306,212.08 441.034,212.581 \n", " 438.761,213.088 436.489,213.601 435.681,213.785 434.217,214.115 431.944,214.632 429.672,215.156 427.857,215.579 427.4,215.685 425.127,216.213 422.855,216.747 \n", " 420.582,217.289 420.229,217.373 418.31,217.829 416.038,218.375 413.765,218.927 412.785,219.168 411.493,219.482 409.221,220.039 406.948,220.603 405.515,220.962 \n", " 404.676,221.171 402.404,221.74 400.131,222.316 398.411,222.756 397.859,222.897 395.586,223.478 393.314,224.066 391.463,224.551 391.042,224.66 388.769,225.254 \n", " 386.497,225.855 384.663,226.345 384.225,226.461 381.952,227.068 379.68,227.682 378.006,228.139 377.408,228.301 375.135,228.921 372.863,229.549 371.483,229.934 \n", " 370.59,230.181 368.318,230.814 366.046,231.456 365.089,231.728 363.773,232.1 361.501,232.748 359.229,233.403 358.819,233.522 356.956,234.06 354.684,234.722 \n", " 352.668,235.317 352.412,235.392 350.139,236.061 347.867,236.739 346.629,237.111 345.595,237.42 343.322,238.105 341.05,238.798 340.701,238.905 338.777,239.492 \n", " 336.505,240.192 334.877,240.7 334.233,240.899 331.96,241.607 329.688,242.324 329.154,242.494 327.416,243.043 325.143,243.768 323.529,244.288 322.871,244.499 \n", " 320.599,245.233 318.326,245.975 317.999,246.083 316.054,246.718 313.781,247.469 312.559,247.877 311.509,248.225 309.237,248.985 307.208,249.671 306.964,249.753 \n", " 304.692,250.522 302.42,251.301 301.942,251.466 300.147,252.081 297.875,252.869 296.758,253.26 295.603,253.662 293.33,254.46 291.655,255.054 291.058,255.265 \n", " 288.785,256.073 286.63,256.849 286.513,256.891 284.241,257.709 281.968,258.537 281.68,258.643 279.696,259.367 277.424,260.207 276.803,260.437 275.151,261.049 \n", " 272.879,261.9 271.998,262.232 270.607,262.754 268.334,263.616 267.263,264.026 266.062,264.484 263.789,265.357 262.595,265.82 261.517,266.237 259.245,267.122 \n", " 257.993,267.615 256.972,268.015 254.7,268.913 253.455,269.409 252.428,269.818 250.155,270.728 248.98,271.203 247.883,271.646 245.611,272.57 244.567,272.998 \n", " 243.338,273.5 241.066,274.438 240.213,274.792 238.793,275.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#88216a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 417.405,414.75 416.038,415.471 414.022,416.544 413.765,416.682 411.493,417.909 410.704,418.339 409.221,419.153 407.449,420.133 406.948,420.413 404.676,421.69 \n", " 404.257,421.927 402.404,422.986 401.125,423.722 400.131,424.299 398.053,425.516 397.859,425.631 395.586,426.982 395.038,427.31 393.314,428.353 392.08,429.105 \n", " 391.042,429.744 389.178,430.899 388.769,431.155 386.497,432.588 386.33,432.693 384.225,434.043 383.535,434.488 381.952,435.52 380.792,436.282 379.68,437.021 \n", " 378.1,438.076 377.408,438.545 375.459,439.871 375.135,440.094 372.867,441.665 372.863,441.668 370.59,443.27 370.323,443.459 368.318,444.899 367.826,445.254 \n", " 366.046,446.556 365.377,447.048 363.773,448.243 362.973,448.842 361.501,449.96 360.614,450.637 359.229,451.709 358.3,452.431 356.956,453.491 356.03,454.225 \n", " 354.684,455.308 353.803,456.02 352.412,457.161 351.618,457.814 350.139,459.051 349.476,459.608 347.867,460.981 347.374,461.403 345.595,462.952 345.314,463.197 \n", " 343.322,464.966 343.294,464.991 341.313,466.786 341.05,467.028 339.371,468.58 338.777,469.138 337.468,470.374 336.505,471.299 335.603,472.169 334.233,473.514 \n", " 333.776,473.963 331.987,475.757 331.96,475.785 330.234,477.552 329.688,478.121 328.517,479.346 327.416,480.522 326.837,481.14 325.193,482.935 325.143,482.991 \n", " 323.584,484.729 322.871,485.541 322.009,486.523 320.599,488.168 320.471,488.318 318.965,490.112 318.326,490.891 317.494,491.906 316.057,493.701 316.054,493.705 \n", " 314.653,495.495 313.781,496.635 313.282,497.289 311.944,499.084 311.509,499.681 310.638,500.878 309.366,502.672 309.237,502.859 308.124,504.467 306.964,506.189 \n", " 306.916,506.261 305.738,508.055 304.692,509.693 304.592,509.85 303.476,511.644 302.42,513.395 302.393,513.438 301.339,515.233 300.317,517.027 300.147,517.334 \n", " 299.324,518.821 298.363,520.616 297.875,521.555 297.431,522.41 296.528,524.204 295.656,525.999 295.603,526.114 294.813,527.793 293.999,529.587 293.33,531.12 \n", " 293.216,531.382 292.46,533.176 291.734,534.97 291.058,536.713 291.038,536.765 290.369,538.559 289.729,540.353 289.118,542.148 288.785,543.173 288.535,543.942 \n", " 287.98,545.736 287.454,547.531 286.957,549.325 286.513,551.022 286.488,551.119 286.045,552.914 285.631,554.708 285.245,556.502 284.887,558.297 284.557,560.091 \n", " 284.255,561.885 284.241,561.979 283.98,563.68 283.732,565.474 283.512,567.268 283.32,569.063 283.155,570.857 283.018,572.651 282.908,574.446 282.826,576.24 \n", " 282.771,578.034 282.743,579.829 282.743,581.623 282.771,583.417 282.826,585.212 282.908,587.006 283.018,588.8 283.155,590.595 283.32,592.389 283.512,594.183 \n", " 283.732,595.978 283.98,597.772 284.241,599.473 284.255,599.566 284.557,601.361 284.887,603.155 285.245,604.949 285.631,606.744 286.045,608.538 286.488,610.332 \n", " 286.513,610.429 286.957,612.127 287.454,613.921 287.98,615.715 288.535,617.51 288.785,618.279 289.118,619.304 289.729,621.098 290.369,622.893 291.038,624.687 \n", " 291.058,624.739 291.734,626.482 292.46,628.276 293.216,630.07 293.33,630.332 293.999,631.865 294.813,633.659 295.603,635.338 295.656,635.453 296.528,637.248 \n", " 297.431,639.042 297.875,639.897 298.363,640.836 299.324,642.631 300.147,644.118 300.317,644.425 301.339,646.219 302.393,648.014 302.42,648.057 303.476,649.808 \n", " 304.592,651.602 304.692,651.758 305.738,653.397 306.916,655.191 306.964,655.263 308.124,656.985 309.237,658.593 309.366,658.78 310.638,660.574 311.509,661.771 \n", " 311.944,662.368 313.282,664.163 313.781,664.817 314.653,665.957 316.054,667.747 316.057,667.751 317.494,669.546 318.326,670.561 318.965,671.34 320.471,673.134 \n", " 320.599,673.284 322.009,674.929 322.871,675.911 323.584,676.723 325.143,678.461 325.193,678.517 326.837,680.312 327.416,680.93 328.517,682.106 329.688,683.331 \n", " 330.234,683.9 331.96,685.667 331.987,685.695 333.776,687.489 334.233,687.938 335.603,689.283 336.505,690.153 337.468,691.078 338.777,692.314 339.371,692.872 \n", " 341.05,694.424 341.313,694.666 343.294,696.461 343.322,696.486 345.314,698.255 345.595,698.5 347.374,700.049 347.867,700.471 349.476,701.844 350.139,702.401 \n", " 351.618,703.638 352.412,704.291 353.803,705.432 354.684,706.144 356.03,707.227 356.956,707.961 358.3,709.021 359.229,709.743 360.614,710.815 361.501,711.492 \n", " 362.973,712.61 363.773,713.209 365.377,714.404 366.046,714.896 367.826,716.198 368.318,716.553 370.323,717.993 370.59,718.182 372.863,719.784 372.867,719.787 \n", " 375.135,721.358 375.459,721.581 377.408,722.907 378.1,723.376 379.68,724.431 380.792,725.17 381.952,725.932 383.535,726.964 384.225,727.409 386.33,728.759 \n", " 386.497,728.864 388.769,730.297 389.178,730.553 391.042,731.708 392.08,732.347 393.314,733.099 395.038,734.142 395.586,734.47 397.859,735.821 398.053,735.936 \n", " 400.131,737.153 401.125,737.73 402.404,738.466 404.257,739.525 404.676,739.762 406.948,741.039 407.449,741.319 409.221,742.299 410.704,743.113 411.493,743.543 \n", " 413.765,744.77 414.022,744.908 416.038,745.981 417.405,746.702 418.31,747.176 420.582,748.356 420.855,748.496 422.855,749.52 424.374,750.291 425.127,750.67 \n", " 427.4,751.805 427.964,752.085 429.672,752.926 431.627,753.879 431.944,754.033 434.217,755.126 435.364,755.674 436.489,756.206 438.761,757.273 439.179,757.468 \n", " 441.034,758.327 443.074,759.262 443.306,759.368 445.578,760.397 447.05,761.057 447.851,761.413 450.123,762.418 451.112,762.851 452.396,763.41 454.668,764.391 \n", " 455.262,764.645 456.94,765.36 459.213,766.318 459.503,766.44 461.485,767.265 463.757,768.201 463.838,768.234 466.03,769.126 468.272,770.028 468.302,770.04 \n", " 470.574,770.945 472.807,771.823 472.847,771.838 475.119,772.722 477.392,773.595 477.449,773.617 479.664,774.459 481.936,775.312 482.202,775.411 484.209,776.156 \n", " 486.481,776.991 487.071,777.206 488.753,777.816 491.026,778.632 492.062,779 493.298,779.438 495.57,780.236 497.179,780.794 497.843,781.024 500.115,781.804 \n", " 502.388,782.575 502.429,782.589 504.66,783.337 506.932,784.091 507.821,784.383 509.205,784.836 511.477,785.573 513.361,786.177 513.749,786.301 516.022,787.022 \n", " 518.294,787.734 519.058,787.972 520.566,788.439 522.839,789.135 524.921,789.766 525.111,789.823 527.384,790.505 529.656,791.177 530.963,791.56 531.928,791.843 \n", " 534.201,792.501 536.473,793.151 537.193,793.355 538.745,793.794 541.018,794.429 543.29,795.057 543.625,795.149 545.562,795.679 547.835,796.293 550.107,796.899 \n", " 550.276,796.943 552.38,797.499 554.652,798.092 556.924,798.677 557.162,798.738 559.197,799.256 561.469,799.829 563.741,800.393 564.305,800.532 566.014,800.952 \n", " 568.286,801.504 570.558,802.049 571.727,802.326 572.831,802.588 575.103,803.121 577.375,803.646 579.453,804.121 579.648,804.165 581.92,804.679 584.193,805.186 \n", " 586.465,805.685 587.521,805.915 588.737,806.179 591.01,806.668 593.282,807.149 595.554,807.624 595.966,807.709 597.827,808.094 600.099,808.558 602.371,809.015 \n", " 604.644,809.466 604.836,809.504 606.916,809.912 609.189,810.352 611.461,810.785 613.733,811.213 614.193,811.298 616.006,811.635 618.278,812.052 620.55,812.462 \n", " 622.823,812.866 624.11,813.092 625.095,813.265 627.367,813.66 629.64,814.048 631.912,814.429 634.185,814.805 634.682,814.887 636.457,815.177 638.729,815.543 \n", " 641.002,815.903 643.274,816.257 645.546,816.606 646.044,816.681 647.819,816.95 650.091,817.289 652.363,817.622 654.636,817.949 656.908,818.271 658.376,818.475 \n", " 659.181,818.588 661.453,818.9 663.725,819.207 665.998,819.508 668.27,819.803 670.542,820.094 671.946,820.27 672.815,820.379 675.087,820.66 677.359,820.935 \n", " 679.632,821.206 681.904,821.47 684.177,821.73 686.449,821.984 687.177,822.064 688.721,822.234 690.994,822.479 693.266,822.719 695.538,822.954 697.811,823.183 \n", " 700.083,823.408 702.355,823.627 704.628,823.841 704.817,823.858 706.9,824.051 709.173,824.256 711.445,824.456 713.717,824.651 715.99,824.841 718.262,825.026 \n", " 720.534,825.206 722.807,825.381 725.079,825.551 726.471,825.653 727.351,825.717 729.624,825.878 731.896,826.034 734.169,826.186 736.441,826.332 738.713,826.474 \n", " 740.986,826.611 743.258,826.743 745.53,826.87 747.803,826.992 750.075,827.109 752.347,827.222 754.62,827.33 756.892,827.433 757.217,827.447 759.164,827.532 \n", " 761.437,827.626 763.709,827.715 765.982,827.8 768.254,827.88 770.526,827.955 772.799,828.025 775.071,828.091 777.343,828.152 779.616,828.208 781.888,828.26 \n", " 784.16,828.307 786.433,828.349 788.705,828.386 790.978,828.419 793.25,828.447 795.522,828.47 797.795,828.489 800.067,828.503 802.339,828.512 804.612,828.517 \n", " 806.884,828.517 809.156,828.512 811.429,828.503 813.701,828.489 815.974,828.47 818.246,828.447 820.518,828.419 822.791,828.386 825.063,828.349 827.335,828.307 \n", " 829.608,828.26 831.88,828.208 834.152,828.152 836.425,828.091 838.697,828.025 840.97,827.955 843.242,827.88 845.514,827.8 847.787,827.715 850.059,827.626 \n", " 852.331,827.532 854.279,827.447 854.604,827.433 856.876,827.33 859.148,827.222 861.421,827.109 863.693,826.992 865.966,826.87 868.238,826.743 870.51,826.611 \n", " 872.783,826.474 875.055,826.332 877.327,826.186 879.6,826.034 881.872,825.878 884.144,825.717 885.025,825.653 886.417,825.551 888.689,825.381 890.962,825.206 \n", " 893.234,825.026 895.506,824.841 897.779,824.651 900.051,824.456 902.323,824.256 904.596,824.051 906.679,823.858 906.868,823.841 909.14,823.627 911.413,823.408 \n", " 913.685,823.183 915.958,822.954 918.23,822.719 920.502,822.479 922.775,822.234 924.319,822.064 925.047,821.984 927.319,821.73 929.592,821.47 931.864,821.206 \n", " 934.136,820.935 936.409,820.66 938.681,820.379 939.55,820.27 940.954,820.094 943.226,819.803 945.498,819.508 947.771,819.207 950.043,818.9 952.315,818.588 \n", " 953.12,818.475 954.588,818.271 956.86,817.949 959.132,817.622 961.405,817.289 963.677,816.95 965.452,816.681 965.949,816.606 968.222,816.257 970.494,815.903 \n", " 972.767,815.543 975.039,815.177 976.813,814.887 977.311,814.805 979.584,814.429 981.856,814.048 984.128,813.66 986.401,813.265 987.386,813.092 988.673,812.866 \n", " 990.945,812.462 993.218,812.052 995.49,811.635 997.303,811.298 997.763,811.213 1000.03,810.785 1002.31,810.352 1004.58,809.912 1006.66,809.504 1006.85,809.466 \n", " 1009.12,809.015 1011.4,808.558 1013.67,808.094 1015.53,807.709 1015.94,807.624 1018.21,807.149 1020.49,806.668 1022.76,806.179 1023.97,805.915 1025.03,805.685 \n", " 1027.3,805.186 1029.58,804.679 1031.85,804.165 1032.04,804.121 1034.12,803.646 1036.39,803.121 1038.67,802.588 1039.77,802.326 1040.94,802.049 1043.21,801.504 \n", " 1045.48,800.952 1047.19,800.532 1047.75,800.393 1050.03,799.829 1052.3,799.256 1054.33,798.738 1054.57,798.677 1056.84,798.092 1059.12,797.499 1061.22,796.943 \n", " 1061.39,796.899 1063.66,796.293 1065.93,795.679 1067.87,795.149 1068.21,795.057 1070.48,794.429 1072.75,793.794 1074.3,793.355 1075.02,793.151 1077.3,792.501 \n", " 1079.57,791.843 1080.53,791.56 1081.84,791.177 1084.11,790.505 1086.38,789.823 1086.57,789.766 1088.66,789.135 1090.93,788.439 1092.44,787.972 1093.2,787.734 \n", " 1095.47,787.022 1097.75,786.301 1098.13,786.177 1100.02,785.573 1102.29,784.836 1103.67,784.383 1104.56,784.091 1106.84,783.337 1109.07,782.589 1109.11,782.575 \n", " 1111.38,781.804 1113.65,781.024 1114.32,780.794 1115.93,780.236 1118.2,779.438 1119.43,779 1120.47,778.632 1122.74,777.816 1124.42,777.206 1125.01,776.991 \n", " 1127.29,776.156 1129.29,775.411 1129.56,775.312 1131.83,774.459 1134.05,773.617 1134.1,773.595 1136.38,772.722 1138.65,771.838 1138.69,771.823 1140.92,770.945 \n", " 1143.19,770.04 1143.22,770.028 1145.47,769.126 1147.66,768.234 1147.74,768.201 1150.01,767.265 1151.99,766.44 1152.28,766.318 1154.56,765.36 1156.23,764.645 \n", " 1156.83,764.391 1159.1,763.41 1160.38,762.851 1161.37,762.418 1163.65,761.413 1164.45,761.057 1165.92,760.397 1168.19,759.368 1168.42,759.262 1170.46,758.327 \n", " 1172.32,757.468 1172.73,757.273 1175.01,756.206 1176.13,755.674 1177.28,755.126 1179.55,754.033 1179.87,753.879 1181.82,752.926 1183.53,752.085 1184.1,751.805 \n", " 1186.37,750.67 1187.12,750.291 1188.64,749.52 1190.64,748.496 1190.91,748.356 1193.19,747.176 1194.09,746.702 1195.46,745.981 1197.47,744.908 1197.73,744.77 \n", " 1200,743.543 1200.79,743.113 1202.28,742.299 1204.05,741.319 1204.55,741.039 1206.82,739.762 1207.24,739.525 1209.09,738.466 1210.37,737.73 1211.36,737.153 \n", " 1213.44,735.936 1213.64,735.821 1215.91,734.47 1216.46,734.142 1218.18,733.099 1219.42,732.347 1220.45,731.708 1222.32,730.553 1222.73,730.297 1225,728.864 \n", " 1225.17,728.759 1227.27,727.409 1227.96,726.964 1229.54,725.932 1230.7,725.17 1231.82,724.431 1233.4,723.376 1234.09,722.907 1236.04,721.581 1236.36,721.358 \n", " 1238.63,719.787 1238.63,719.784 1240.91,718.182 1241.17,717.993 1243.18,716.553 1243.67,716.198 1245.45,714.896 1246.12,714.404 1247.72,713.209 1248.52,712.61 \n", " 1249.99,711.492 1250.88,710.815 1252.27,709.743 1253.2,709.021 1254.54,707.961 1255.47,707.227 1256.81,706.144 1257.69,705.432 1259.08,704.291 1259.88,703.638 \n", " 1261.36,702.401 1262.02,701.844 1263.63,700.471 1264.12,700.049 1265.9,698.5 1266.18,698.255 1268.17,696.486 1268.2,696.461 1270.18,694.666 1270.45,694.424 \n", " 1272.13,692.872 1272.72,692.314 1274.03,691.078 1274.99,690.153 1275.89,689.283 1277.26,687.938 1277.72,687.489 1279.51,685.695 1279.54,685.667 1281.26,683.9 \n", " 1281.81,683.331 1282.98,682.106 1284.08,680.93 1284.66,680.312 1286.3,678.517 1286.35,678.461 1287.91,676.723 1288.62,675.911 1289.49,674.929 1290.9,673.284 \n", " 1291.03,673.134 1292.53,671.34 1293.17,670.561 1294,669.546 1295.44,667.751 1295.44,667.747 1296.84,665.957 1297.71,664.817 1298.21,664.163 1299.55,662.368 \n", " 1299.99,661.771 1300.86,660.574 1302.13,658.78 1302.26,658.593 1303.37,656.985 1304.53,655.263 1304.58,655.191 1305.76,653.397 1306.8,651.758 1306.9,651.602 \n", " 1308.02,649.808 1309.08,648.057 1309.1,648.014 1310.16,646.219 1311.18,644.425 1311.35,644.118 1312.17,642.631 1313.13,640.836 1313.62,639.897 1314.07,639.042 \n", " 1314.97,637.248 1315.84,635.453 1315.89,635.338 1316.68,633.659 1317.5,631.865 1318.17,630.332 1318.28,630.07 1319.04,628.276 1319.76,626.482 1320.44,624.739 \n", " 1320.46,624.687 1321.13,622.893 1321.77,621.098 1322.38,619.304 1322.71,618.279 1322.96,617.51 1323.52,615.715 1324.04,613.921 1324.54,612.127 1324.98,610.429 \n", " 1325.01,610.332 1325.45,608.538 1325.86,606.744 1326.25,604.949 1326.61,603.155 1326.94,601.361 1327.24,599.566 1327.26,599.473 1327.52,597.772 1327.76,595.978 \n", " 1327.98,594.183 1328.18,592.389 1328.34,590.595 1328.48,588.8 1328.59,587.006 1328.67,585.212 1328.72,583.417 1328.75,581.623 1328.75,579.829 1328.72,578.034 \n", " 1328.67,576.24 1328.59,574.446 1328.48,572.651 1328.34,570.857 1328.18,569.063 1327.98,567.268 1327.76,565.474 1327.52,563.68 1327.26,561.979 1327.24,561.885 \n", " 1326.94,560.091 1326.61,558.297 1326.25,556.502 1325.86,554.708 1325.45,552.914 1325.01,551.119 1324.98,551.022 1324.54,549.325 1324.04,547.531 1323.52,545.736 \n", " 1322.96,543.942 1322.71,543.173 1322.38,542.148 1321.77,540.353 1321.13,538.559 1320.46,536.765 1320.44,536.713 1319.76,534.97 1319.04,533.176 1318.28,531.382 \n", " 1318.17,531.12 1317.5,529.587 1316.68,527.793 1315.89,526.114 1315.84,525.999 1314.97,524.204 1314.07,522.41 1313.62,521.555 1313.13,520.616 1312.17,518.821 \n", " 1311.35,517.334 1311.18,517.027 1310.16,515.233 1309.1,513.438 1309.08,513.395 1308.02,511.644 1306.9,509.85 1306.8,509.693 1305.76,508.055 1304.58,506.261 \n", " 1304.53,506.189 1303.37,504.467 1302.26,502.859 1302.13,502.672 1300.86,500.878 1299.99,499.681 1299.55,499.084 1298.21,497.289 1297.71,496.635 1296.84,495.495 \n", " 1295.44,493.705 1295.44,493.701 1294,491.906 1293.17,490.891 1292.53,490.112 1291.03,488.318 1290.9,488.168 1289.49,486.523 1288.62,485.541 1287.91,484.729 \n", " 1286.35,482.991 1286.3,482.935 1284.66,481.14 1284.08,480.522 1282.98,479.346 1281.81,478.121 1281.26,477.552 1279.54,475.785 1279.51,475.757 1277.72,473.963 \n", " 1277.26,473.514 1275.89,472.169 1274.99,471.299 1274.03,470.374 1272.72,469.138 1272.13,468.58 1270.45,467.028 1270.18,466.786 1268.2,464.991 1268.17,464.966 \n", " 1266.18,463.197 1265.9,462.952 1264.12,461.403 1263.63,460.981 1262.02,459.608 1261.36,459.051 1259.88,457.814 1259.08,457.161 1257.69,456.02 1256.81,455.308 \n", " 1255.47,454.225 1254.54,453.491 1253.2,452.431 1252.27,451.709 1250.88,450.637 1249.99,449.96 1248.52,448.842 1247.72,448.243 1246.12,447.048 1245.45,446.556 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#88216a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1245.45,446.556 1243.67,445.254 1243.18,444.899 1241.17,443.459 1240.91,443.27 1238.63,441.668 1238.63,441.665 1236.36,440.094 1236.04,439.871 1234.09,438.545 \n", " 1233.4,438.076 1231.82,437.021 1230.7,436.282 1229.54,435.52 1227.96,434.488 1227.27,434.043 1225.17,432.693 1225,432.588 1222.73,431.155 1222.32,430.899 \n", " 1220.45,429.744 1219.42,429.105 1218.18,428.353 1216.46,427.31 1215.91,426.982 1213.64,425.631 1213.44,425.516 1211.36,424.299 1210.37,423.722 1209.09,422.986 \n", " 1207.24,421.927 1206.82,421.69 1204.55,420.413 1204.05,420.133 1202.28,419.153 1200.79,418.339 1200,417.909 1197.73,416.682 1197.47,416.544 1195.46,415.471 \n", " 1194.09,414.75 1193.19,414.276 1190.91,413.096 1190.64,412.956 1188.64,411.932 1187.12,411.161 1186.37,410.782 1184.1,409.647 1183.53,409.367 1181.82,408.526 \n", " 1179.87,407.573 1179.55,407.419 1177.28,406.326 1176.13,405.778 1175.01,405.246 1172.73,404.179 1172.32,403.984 1170.46,403.125 1168.42,402.19 1168.19,402.084 \n", " 1165.92,401.055 1164.45,400.395 1163.65,400.039 1161.37,399.034 1160.38,398.601 1159.1,398.042 1156.83,397.061 1156.23,396.807 1154.56,396.092 1152.28,395.134 \n", " 1151.99,395.012 1150.01,394.187 1147.74,393.251 1147.66,393.218 1145.47,392.326 1143.22,391.424 1143.19,391.412 1140.92,390.507 1138.69,389.629 1138.65,389.614 \n", " 1136.38,388.73 1134.1,387.857 1134.05,387.835 1131.83,386.993 1129.56,386.14 1129.29,386.041 1127.29,385.296 1125.01,384.461 1124.42,384.246 1122.74,383.636 \n", " 1120.47,382.82 1119.43,382.452 1118.2,382.014 1115.93,381.216 1114.32,380.658 1113.65,380.428 1111.38,379.648 1109.11,378.877 1109.07,378.863 1106.84,378.115 \n", " 1104.56,377.361 1103.67,377.069 1102.29,376.616 1100.02,375.879 1098.13,375.275 1097.75,375.151 1095.47,374.43 1093.2,373.718 1092.44,373.48 1090.93,373.013 \n", " 1088.66,372.317 1086.57,371.686 1086.38,371.629 1084.11,370.947 1081.84,370.275 1080.53,369.892 1079.57,369.609 1077.3,368.951 1075.02,368.301 1074.3,368.097 \n", " 1072.75,367.658 1070.48,367.022 1068.21,366.395 1067.87,366.303 1065.93,365.773 1063.66,365.159 1061.39,364.553 1061.22,364.509 1059.12,363.953 1056.84,363.36 \n", " 1054.57,362.775 1054.33,362.714 1052.3,362.196 1050.03,361.623 1047.75,361.059 1047.19,360.92 1045.48,360.5 1043.21,359.948 1040.94,359.403 1039.77,359.126 \n", " 1038.67,358.864 1036.39,358.331 1034.12,357.806 1032.04,357.331 1031.85,357.287 1029.58,356.773 1027.3,356.266 1025.03,355.767 1023.97,355.537 1022.76,355.273 \n", " 1020.49,354.784 1018.21,354.303 1015.94,353.828 1015.53,353.743 1013.67,353.358 1011.4,352.894 1009.12,352.437 1006.85,351.986 1006.66,351.948 1004.58,351.54 \n", " 1002.31,351.1 1000.03,350.666 997.763,350.239 997.303,350.154 995.49,349.817 993.218,349.4 990.945,348.99 988.673,348.585 987.386,348.36 986.401,348.186 \n", " 984.128,347.792 981.856,347.404 979.584,347.023 977.311,346.647 976.813,346.565 975.039,346.275 972.767,345.909 970.494,345.549 968.222,345.195 965.949,344.846 \n", " 965.452,344.771 963.677,344.502 961.405,344.163 959.132,343.83 956.86,343.503 954.588,343.181 953.12,342.977 952.315,342.864 950.043,342.552 947.771,342.245 \n", " 945.498,341.944 943.226,341.649 940.954,341.358 939.55,341.182 938.681,341.073 936.409,340.792 934.136,340.517 931.864,340.246 929.592,339.982 927.319,339.722 \n", " 925.047,339.468 924.319,339.388 922.775,339.218 920.502,338.973 918.23,338.733 915.958,338.498 913.685,338.269 911.413,338.044 909.14,337.825 906.868,337.611 \n", " 906.679,337.594 904.596,337.401 902.323,337.196 900.051,336.996 897.779,336.801 895.506,336.611 893.234,336.426 890.962,336.246 888.689,336.071 886.417,335.901 \n", " 885.025,335.799 884.144,335.735 881.872,335.574 879.6,335.418 877.327,335.266 875.055,335.12 872.783,334.978 870.51,334.841 868.238,334.709 865.966,334.582 \n", " 863.693,334.46 861.421,334.343 859.148,334.23 856.876,334.122 854.604,334.019 854.279,334.005 852.331,333.92 850.059,333.826 847.787,333.737 845.514,333.652 \n", " 843.242,333.572 840.97,333.497 838.697,333.427 836.425,333.361 834.152,333.3 831.88,333.244 829.608,333.192 827.335,333.145 825.063,333.103 822.791,333.066 \n", " 820.518,333.033 818.246,333.005 815.974,332.982 813.701,332.963 811.429,332.949 809.156,332.94 806.884,332.935 804.612,332.935 802.339,332.94 800.067,332.949 \n", " 797.795,332.963 795.522,332.982 793.25,333.005 790.978,333.033 788.705,333.066 786.433,333.103 784.16,333.145 781.888,333.192 779.616,333.244 777.343,333.3 \n", " 775.071,333.361 772.799,333.427 770.526,333.497 768.254,333.572 765.982,333.652 763.709,333.737 761.437,333.826 759.164,333.92 757.217,334.005 756.892,334.019 \n", " 754.62,334.122 752.347,334.23 750.075,334.343 747.803,334.46 745.53,334.582 743.258,334.709 740.986,334.841 738.713,334.978 736.441,335.12 734.169,335.266 \n", " 731.896,335.418 729.624,335.574 727.351,335.735 726.471,335.799 725.079,335.901 722.807,336.071 720.534,336.246 718.262,336.426 715.99,336.611 713.717,336.801 \n", " 711.445,336.996 709.173,337.196 706.9,337.401 704.817,337.594 704.628,337.611 702.355,337.825 700.083,338.044 697.811,338.269 695.538,338.498 693.266,338.733 \n", " 690.994,338.973 688.721,339.218 687.177,339.388 686.449,339.468 684.177,339.722 681.904,339.982 679.632,340.246 677.359,340.517 675.087,340.792 672.815,341.073 \n", " 671.946,341.182 670.542,341.358 668.27,341.649 665.998,341.944 663.725,342.245 661.453,342.552 659.181,342.864 658.376,342.977 656.908,343.181 654.636,343.503 \n", " 652.363,343.83 650.091,344.163 647.819,344.502 646.044,344.771 645.546,344.846 643.274,345.195 641.002,345.549 638.729,345.909 636.457,346.275 634.682,346.565 \n", " 634.185,346.647 631.912,347.023 629.64,347.404 627.367,347.792 625.095,348.186 624.11,348.36 622.823,348.585 620.55,348.99 618.278,349.4 616.006,349.817 \n", " 614.193,350.154 613.733,350.239 611.461,350.666 609.189,351.1 606.916,351.54 604.836,351.948 604.644,351.986 602.371,352.437 600.099,352.894 597.827,353.358 \n", " 595.966,353.743 595.554,353.828 593.282,354.303 591.01,354.784 588.737,355.273 587.521,355.537 586.465,355.767 584.193,356.266 581.92,356.773 579.648,357.287 \n", " 579.453,357.331 577.375,357.806 575.103,358.331 572.831,358.864 571.727,359.126 570.558,359.403 568.286,359.948 566.014,360.5 564.305,360.92 563.741,361.059 \n", " 561.469,361.623 559.197,362.196 557.162,362.714 556.924,362.775 554.652,363.36 552.38,363.953 550.276,364.509 550.107,364.553 547.835,365.159 545.562,365.773 \n", " 543.625,366.303 543.29,366.395 541.018,367.022 538.745,367.658 537.193,368.097 536.473,368.301 534.201,368.951 531.928,369.609 530.963,369.892 529.656,370.275 \n", " 527.384,370.947 525.111,371.629 524.921,371.686 522.839,372.317 520.566,373.013 519.058,373.48 518.294,373.718 516.022,374.43 513.749,375.151 513.361,375.275 \n", " 511.477,375.879 509.205,376.616 507.821,377.069 506.932,377.361 504.66,378.115 502.429,378.863 502.388,378.877 500.115,379.648 497.843,380.428 497.179,380.658 \n", " 495.57,381.216 493.298,382.014 492.062,382.452 491.026,382.82 488.753,383.636 487.071,384.246 486.481,384.461 484.209,385.296 482.202,386.041 481.936,386.14 \n", " 479.664,386.993 477.449,387.835 477.392,387.857 475.119,388.73 472.847,389.614 472.807,389.629 470.574,390.507 468.302,391.412 468.272,391.424 466.03,392.326 \n", " 463.838,393.218 463.757,393.251 461.485,394.187 459.503,395.012 459.213,395.134 456.94,396.092 455.262,396.807 454.668,397.061 452.396,398.042 451.112,398.601 \n", " 450.123,399.034 447.851,400.039 447.05,400.395 445.578,401.055 443.306,402.084 443.074,402.19 441.034,403.125 439.179,403.984 438.761,404.179 436.489,405.246 \n", " 435.364,405.778 434.217,406.326 431.944,407.419 431.627,407.573 429.672,408.526 427.964,409.367 427.4,409.647 425.127,410.782 424.374,411.161 422.855,411.932 \n", " 420.855,412.956 420.582,413.096 418.31,414.276 417.405,414.75 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#a12b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.525,432.693 438.761,433.677 437.319,434.488 436.489,434.959 434.217,436.26 434.179,436.282 431.944,437.583 431.103,438.076 429.672,438.926 428.091,439.871 \n", " 427.4,440.289 425.14,441.665 425.127,441.673 422.855,443.081 422.249,443.459 420.582,444.512 419.417,445.254 418.31,445.967 416.643,447.048 416.038,447.445 \n", " 413.924,448.842 413.765,448.949 411.493,450.479 411.261,450.637 409.221,452.038 408.652,452.431 406.948,453.624 406.095,454.225 404.676,455.24 403.591,456.02 \n", " 402.404,456.885 401.137,457.814 400.131,458.563 398.734,459.608 397.859,460.273 396.379,461.403 395.586,462.018 394.073,463.197 393.314,463.798 391.815,464.991 \n", " 391.042,465.616 389.603,466.786 388.769,467.474 387.437,468.58 386.497,469.373 385.317,470.374 384.225,471.316 383.241,472.169 381.952,473.305 381.209,473.963 \n", " 379.68,475.341 379.22,475.757 377.408,477.428 377.274,477.552 375.37,479.346 375.135,479.572 373.508,481.14 372.863,481.774 371.686,482.935 370.59,484.038 \n", " 369.906,484.729 368.318,486.365 368.165,486.523 366.464,488.318 366.046,488.768 364.802,490.112 363.773,491.247 363.178,491.906 361.593,493.701 361.501,493.807 \n", " 360.046,495.495 359.229,496.465 358.536,497.289 357.063,499.084 356.956,499.217 355.626,500.878 354.684,502.085 354.227,502.672 352.863,504.467 352.412,505.075 \n", " 351.534,506.261 350.242,508.055 350.139,508.201 348.983,509.85 347.867,511.488 347.761,511.644 346.572,513.438 345.595,514.958 345.418,515.233 344.297,517.027 \n", " 343.322,518.638 343.211,518.821 342.157,520.616 341.138,522.41 341.05,522.57 340.151,524.204 339.197,525.999 338.777,526.815 338.275,527.793 337.386,529.587 \n", " 336.53,531.382 336.505,531.436 335.705,533.176 334.912,534.97 334.233,536.574 334.152,536.765 333.422,538.559 332.724,540.353 332.058,542.148 331.96,542.423 \n", " 331.422,543.942 330.817,545.736 330.244,547.531 329.702,549.325 329.688,549.374 329.189,551.119 328.708,552.914 328.257,554.708 327.837,556.502 327.447,558.297 \n", " 327.416,558.455 327.087,560.091 326.758,561.885 326.458,563.68 326.189,565.474 325.95,567.268 325.741,569.063 325.561,570.857 325.412,572.651 325.293,574.446 \n", " 325.203,576.24 325.144,578.034 325.143,578.072 325.114,579.829 325.114,581.623 325.143,583.38 325.144,583.417 325.203,585.212 325.293,587.006 325.412,588.8 \n", " 325.561,590.595 325.741,592.389 325.95,594.183 326.189,595.978 326.458,597.772 326.758,599.566 327.087,601.361 327.416,602.997 327.447,603.155 327.837,604.949 \n", " 328.257,606.744 328.708,608.538 329.189,610.332 329.688,612.078 329.702,612.127 330.244,613.921 330.817,615.715 331.422,617.51 331.96,619.029 332.058,619.304 \n", " 332.724,621.098 333.422,622.893 334.152,624.687 334.233,624.878 334.912,626.482 335.705,628.276 336.505,630.016 336.53,630.07 337.386,631.865 338.275,633.659 \n", " 338.777,634.637 339.197,635.453 340.151,637.248 341.05,638.882 341.138,639.042 342.157,640.836 343.211,642.631 343.322,642.814 344.297,644.425 345.418,646.219 \n", " 345.595,646.494 346.572,648.014 347.761,649.808 347.867,649.964 348.983,651.602 350.139,653.25 350.242,653.397 351.534,655.191 352.412,656.377 352.863,656.985 \n", " 354.227,658.78 354.684,659.367 355.626,660.574 356.956,662.235 357.063,662.368 358.536,664.163 359.229,664.987 360.046,665.957 361.501,667.644 361.593,667.751 \n", " 363.178,669.546 363.773,670.205 364.802,671.34 366.046,672.684 366.464,673.134 368.165,674.929 368.318,675.087 369.906,676.723 370.59,677.414 371.686,678.517 \n", " 372.863,679.678 373.508,680.312 375.135,681.88 375.37,682.106 377.274,683.9 377.408,684.024 379.22,685.695 379.68,686.111 381.209,687.489 381.952,688.147 \n", " 383.241,689.283 384.225,690.136 385.317,691.078 386.497,692.078 387.437,692.872 388.769,693.978 389.603,694.666 391.042,695.835 391.815,696.461 393.314,697.654 \n", " 394.073,698.255 395.586,699.434 396.379,700.049 397.859,701.179 398.734,701.844 400.131,702.889 401.137,703.638 402.404,704.567 403.591,705.432 404.676,706.212 \n", " 406.095,707.227 406.948,707.828 408.652,709.021 409.221,709.414 411.261,710.815 411.493,710.973 413.765,712.503 413.924,712.61 416.038,714.007 416.643,714.404 \n", " 418.31,715.485 419.417,716.198 420.582,716.94 422.249,717.993 422.855,718.371 425.127,719.779 425.14,719.787 427.4,721.163 428.091,721.581 429.672,722.526 \n", " 431.103,723.376 431.944,723.869 434.179,725.17 434.217,725.192 436.489,726.493 437.319,726.964 438.761,727.775 440.525,728.759 441.034,729.039 443.306,730.284 \n", " 443.8,730.553 445.578,731.511 447.144,732.347 447.851,732.721 450.123,733.914 450.56,734.142 452.396,735.089 454.05,735.936 454.668,736.249 456.94,737.393 \n", " 457.616,737.73 459.213,738.52 461.261,739.525 461.485,739.633 463.757,740.731 464.987,741.319 466.03,741.814 468.302,742.882 468.797,743.113 470.574,743.937 \n", " 472.693,744.908 472.847,744.978 475.119,746.004 476.679,746.702 477.392,747.018 479.664,748.019 480.758,748.496 481.936,749.007 484.209,749.982 484.934,750.291 \n", " 486.481,750.945 488.753,751.896 489.209,752.085 491.026,752.834 493.298,753.761 493.59,753.879 495.57,754.676 497.843,755.58 498.079,755.674 500.115,756.473 \n", " 502.388,757.355 502.682,757.468 504.66,758.225 506.932,759.085 507.405,759.262 509.205,759.934 511.477,760.773 512.252,761.057 513.749,761.602 516.022,762.42 \n", " 517.23,762.851 518.294,763.228 520.566,764.027 522.346,764.645 522.839,764.816 525.111,765.595 527.384,766.364 527.608,766.44 529.656,767.125 531.928,767.875 \n", " 533.024,768.234 534.201,768.617 536.473,769.35 538.603,770.028 538.745,770.073 541.018,770.789 543.29,771.495 544.357,771.823 545.562,772.192 547.835,772.881 \n", " 550.107,773.561 550.295,773.617 552.38,774.233 554.652,774.897 556.433,775.411 556.924,775.553 559.197,776.2 561.469,776.839 562.786,777.206 563.741,777.471 \n", " 566.014,778.094 568.286,778.71 569.369,779 570.558,779.318 572.831,779.918 575.103,780.511 576.203,780.794 577.375,781.096 579.648,781.674 581.92,782.244 \n", " 583.312,782.589 584.193,782.807 586.465,783.362 588.737,783.911 590.721,784.383 591.01,784.452 593.282,784.986 595.554,785.513 597.827,786.033 598.466,786.177 \n", " 600.099,786.546 602.371,787.053 604.644,787.552 606.582,787.972 606.916,788.044 609.189,788.53 611.461,789.01 613.733,789.482 615.12,789.766 616.006,789.947 \n", " 618.278,790.407 620.55,790.86 622.823,791.306 624.137,791.56 625.095,791.746 627.367,792.18 629.64,792.607 631.912,793.027 633.707,793.355 634.185,793.442 \n", " 636.457,793.85 638.729,794.253 641.002,794.648 643.274,795.038 643.933,795.149 645.546,795.422 647.819,795.799 650.091,796.171 652.363,796.536 654.636,796.895 \n", " 654.944,796.943 656.908,797.249 659.181,797.597 661.453,797.939 663.725,798.275 665.998,798.605 666.931,798.738 668.27,798.929 670.542,799.248 672.815,799.561 \n", " 675.087,799.868 677.359,800.169 679.632,800.464 680.166,800.532 681.904,800.754 684.177,801.039 686.449,801.317 688.721,801.59 690.994,801.858 693.266,802.119 \n", " 695.103,802.326 695.538,802.375 697.811,802.627 700.083,802.872 702.355,803.112 704.628,803.347 706.9,803.576 709.173,803.799 711.445,804.017 712.556,804.121 \n", " 713.717,804.229 715.99,804.437 718.262,804.639 720.534,804.836 722.807,805.027 725.079,805.213 727.351,805.394 729.624,805.569 731.896,805.739 734.169,805.903 \n", " 734.336,805.915 736.441,806.063 738.713,806.218 740.986,806.367 743.258,806.511 745.53,806.649 747.803,806.783 750.075,806.911 752.347,807.034 754.62,807.151 \n", " 756.892,807.264 759.164,807.371 761.437,807.473 763.709,807.57 765.982,807.662 767.222,807.709 768.254,807.749 770.526,807.831 772.799,807.907 775.071,807.979 \n", " 777.343,808.045 779.616,808.107 781.888,808.163 784.16,808.214 786.433,808.26 788.705,808.3 790.978,808.336 793.25,808.367 795.522,808.392 797.795,808.412 \n", " 800.067,808.428 802.339,808.438 804.612,808.443 806.884,808.443 809.156,808.438 811.429,808.428 813.701,808.412 815.974,808.392 818.246,808.367 820.518,808.336 \n", " 822.791,808.3 825.063,808.26 827.335,808.214 829.608,808.163 831.88,808.107 834.152,808.045 836.425,807.979 838.697,807.907 840.97,807.831 843.242,807.749 \n", " 844.274,807.709 845.514,807.662 847.787,807.57 850.059,807.473 852.331,807.371 854.604,807.264 856.876,807.151 859.148,807.034 861.421,806.911 863.693,806.783 \n", " 865.966,806.649 868.238,806.511 870.51,806.367 872.783,806.218 875.055,806.063 877.16,805.915 877.327,805.903 879.6,805.739 881.872,805.569 884.144,805.394 \n", " 886.417,805.213 888.689,805.027 890.962,804.836 893.234,804.639 895.506,804.437 897.779,804.229 898.94,804.121 900.051,804.017 902.323,803.799 904.596,803.576 \n", " 906.868,803.347 909.14,803.112 911.413,802.872 913.685,802.627 915.958,802.375 916.393,802.326 918.23,802.119 920.502,801.858 922.775,801.59 925.047,801.317 \n", " 927.319,801.039 929.592,800.754 931.33,800.532 931.864,800.464 934.136,800.169 936.409,799.868 938.681,799.561 940.954,799.248 943.226,798.929 944.565,798.738 \n", " 945.498,798.605 947.771,798.275 950.043,797.939 952.315,797.597 954.588,797.249 956.552,796.943 956.86,796.895 959.132,796.536 961.405,796.171 963.677,795.799 \n", " 965.949,795.422 967.563,795.149 968.222,795.038 970.494,794.648 972.767,794.253 975.039,793.85 977.311,793.442 977.788,793.355 979.584,793.027 981.856,792.607 \n", " 984.128,792.18 986.401,791.746 987.359,791.56 988.673,791.306 990.945,790.86 993.218,790.407 995.49,789.947 996.376,789.766 997.763,789.482 1000.03,789.01 \n", " 1002.31,788.53 1004.58,788.044 1004.91,787.972 1006.85,787.552 1009.12,787.053 1011.4,786.546 1013.03,786.177 1013.67,786.033 1015.94,785.513 1018.21,784.986 \n", " 1020.49,784.452 1020.77,784.383 1022.76,783.911 1025.03,783.362 1027.3,782.807 1028.18,782.589 1029.58,782.244 1031.85,781.674 1034.12,781.096 1035.29,780.794 \n", " 1036.39,780.511 1038.67,779.918 1040.94,779.318 1042.13,779 1043.21,778.71 1045.48,778.094 1047.75,777.471 1048.71,777.206 1050.03,776.839 1052.3,776.2 \n", " 1054.57,775.553 1055.06,775.411 1056.84,774.897 1059.12,774.233 1061.2,773.617 1061.39,773.561 1063.66,772.881 1065.93,772.192 1067.14,771.823 1068.21,771.495 \n", " 1070.48,770.789 1072.75,770.073 1072.89,770.028 1075.02,769.35 1077.3,768.617 1078.47,768.234 1079.57,767.875 1081.84,767.125 1083.89,766.44 1084.11,766.364 \n", " 1086.38,765.595 1088.66,764.816 1089.15,764.645 1090.93,764.027 1093.2,763.228 1094.27,762.851 1095.47,762.42 1097.75,761.602 1099.24,761.057 1100.02,760.773 \n", " 1102.29,759.934 1104.09,759.262 1104.56,759.085 1106.84,758.225 1108.81,757.468 1109.11,757.355 1111.38,756.473 1113.42,755.674 1113.65,755.58 1115.93,754.676 \n", " 1117.91,753.879 1118.2,753.761 1120.47,752.834 1122.29,752.085 1122.74,751.896 1125.01,750.945 1126.56,750.291 1127.29,749.982 1129.56,749.007 1130.74,748.496 \n", " 1131.83,748.019 1134.1,747.018 1134.82,746.702 1136.38,746.004 1138.65,744.978 1138.8,744.908 1140.92,743.937 1142.7,743.113 1143.19,742.882 1145.47,741.814 \n", " 1146.51,741.319 1147.74,740.731 1150.01,739.633 1150.23,739.525 1152.28,738.52 1153.88,737.73 1154.56,737.393 1156.83,736.249 1157.45,735.936 1159.1,735.089 \n", " 1160.94,734.142 1161.37,733.914 1163.65,732.721 1164.35,732.347 1165.92,731.511 1167.7,730.553 1168.19,730.284 1170.46,729.039 1170.97,728.759 1172.73,727.775 \n", " 1174.18,726.964 1175.01,726.493 1177.28,725.192 1177.32,725.17 1179.55,723.869 1180.39,723.376 1181.82,722.526 1183.4,721.581 1184.1,721.163 1186.36,719.787 \n", " 1186.37,719.779 1188.64,718.371 1189.25,717.993 1190.91,716.94 1192.08,716.198 1193.19,715.485 1194.85,714.404 1195.46,714.007 1197.57,712.61 1197.73,712.503 \n", " 1200,710.973 1200.23,710.815 1202.28,709.414 1202.84,709.021 1204.55,707.828 1205.4,707.227 1206.82,706.212 1207.91,705.432 1209.09,704.567 1210.36,703.638 \n", " 1211.36,702.889 1212.76,701.844 1213.64,701.179 1215.12,700.049 1215.91,699.434 1217.42,698.255 1218.18,697.654 1219.68,696.461 1220.45,695.835 1221.89,694.666 \n", " 1222.73,693.978 1224.06,692.872 1225,692.078 1226.18,691.078 1227.27,690.136 1228.26,689.283 1229.54,688.147 1230.29,687.489 1231.82,686.111 1232.28,685.695 \n", " 1234.09,684.024 1234.22,683.9 1236.13,682.106 1236.36,681.88 1237.99,680.312 1238.63,679.678 1239.81,678.517 1240.91,677.414 1241.59,676.723 1243.18,675.087 \n", " 1243.33,674.929 1245.03,673.134 1245.45,672.684 1246.69,671.34 1247.72,670.205 1248.32,669.546 1249.9,667.751 1249.99,667.644 1251.45,665.957 1252.27,664.987 \n", " 1252.96,664.163 1254.43,662.368 1254.54,662.235 1255.87,660.574 1256.81,659.367 1257.27,658.78 1258.63,656.985 1259.08,656.377 1259.96,655.191 1261.25,653.397 \n", " 1261.36,653.25 1262.51,651.602 1263.63,649.964 1263.73,649.808 1264.92,648.014 1265.9,646.494 1266.08,646.219 1267.2,644.425 1268.17,642.814 1268.28,642.631 \n", " 1269.34,640.836 1270.36,639.042 1270.45,638.882 1271.35,637.248 1272.3,635.453 1272.72,634.637 1273.22,633.659 1274.11,631.865 1274.97,630.07 1274.99,630.016 \n", " 1275.79,628.276 1276.58,626.482 1277.26,624.878 1277.34,624.687 1278.07,622.893 1278.77,621.098 1279.44,619.304 1279.54,619.029 1280.07,617.51 1280.68,615.715 \n", " 1281.25,613.921 1281.79,612.127 1281.81,612.078 1282.31,610.332 1282.79,608.538 1283.24,606.744 1283.66,604.949 1284.05,603.155 1284.08,602.997 1284.41,601.361 \n", " 1284.74,599.566 1285.04,597.772 1285.31,595.978 1285.55,594.183 1285.76,592.389 1285.93,590.595 1286.08,588.8 1286.2,587.006 1286.29,585.212 1286.35,583.417 \n", " 1286.35,583.38 1286.38,581.623 1286.38,579.829 1286.35,578.072 1286.35,578.034 1286.29,576.24 1286.2,574.446 1286.08,572.651 1285.93,570.857 1285.76,569.063 \n", " 1285.55,567.268 1285.31,565.474 1285.04,563.68 1284.74,561.885 1284.41,560.091 1284.08,558.455 1284.05,558.297 1283.66,556.502 1283.24,554.708 1282.79,552.914 \n", " 1282.31,551.119 1281.81,549.374 1281.79,549.325 1281.25,547.531 1280.68,545.736 1280.07,543.942 1279.54,542.423 1279.44,542.148 1278.77,540.353 1278.07,538.559 \n", " 1277.34,536.765 1277.26,536.574 1276.58,534.97 1275.79,533.176 1274.99,531.436 1274.97,531.382 1274.11,529.587 1273.22,527.793 1272.72,526.815 1272.3,525.999 \n", " 1271.35,524.204 1270.45,522.57 1270.36,522.41 1269.34,520.616 1268.28,518.821 1268.17,518.638 1267.2,517.027 1266.08,515.233 1265.9,514.958 1264.92,513.438 \n", " 1263.73,511.644 1263.63,511.488 1262.51,509.85 1261.36,508.201 1261.25,508.055 1259.96,506.261 1259.08,505.075 1258.63,504.467 1257.27,502.672 1256.81,502.085 \n", " 1255.87,500.878 1254.54,499.217 1254.43,499.084 1252.96,497.289 1252.27,496.465 1251.45,495.495 1249.99,493.807 1249.9,493.701 1248.32,491.906 1247.72,491.247 \n", " 1246.69,490.112 1245.45,488.768 1245.03,488.318 1243.33,486.523 1243.18,486.365 1241.59,484.729 1240.91,484.038 1239.81,482.935 1238.63,481.774 1237.99,481.14 \n", " 1236.36,479.572 1236.13,479.346 1234.22,477.552 1234.09,477.428 1232.28,475.757 1231.82,475.341 1230.29,473.963 1229.54,473.305 1228.26,472.169 1227.27,471.316 \n", " 1226.18,470.374 1225,469.373 1224.06,468.58 1222.73,467.474 1221.89,466.786 1220.45,465.616 1219.68,464.991 1218.18,463.798 1217.42,463.197 1215.91,462.018 \n", " 1215.12,461.403 1213.64,460.273 1212.76,459.608 1211.36,458.563 1210.36,457.814 1209.09,456.885 1207.91,456.02 1206.82,455.24 1205.4,454.225 1204.55,453.624 \n", " 1202.84,452.431 1202.28,452.038 1200.23,450.637 1200,450.479 1197.73,448.949 1197.57,448.842 1195.46,447.445 1194.85,447.048 1193.19,445.967 1192.08,445.254 \n", " 1190.91,444.512 1189.25,443.459 1188.64,443.081 1186.37,441.673 1186.36,441.665 1184.1,440.289 1183.4,439.871 1181.82,438.926 1180.39,438.076 1179.55,437.583 \n", " 1177.32,436.282 1177.28,436.26 1175.01,434.959 1174.18,434.488 1172.73,433.677 1170.97,432.693 1170.46,432.413 1168.19,431.168 1167.7,430.899 1165.92,429.941 \n", " 1164.35,429.105 1163.65,428.731 1161.37,427.538 1160.94,427.31 1159.1,426.363 1157.45,425.516 1156.83,425.203 1154.56,424.059 1153.88,423.722 1152.28,422.932 \n", " 1150.23,421.927 1150.01,421.819 1147.74,420.721 1146.51,420.133 1145.47,419.638 1143.19,418.57 1142.7,418.339 1140.92,417.515 1138.8,416.544 1138.65,416.474 \n", " 1136.38,415.448 1134.82,414.75 1134.1,414.434 1131.83,413.433 1130.74,412.956 1129.56,412.445 1127.29,411.47 1126.56,411.161 1125.01,410.507 1122.74,409.556 \n", " 1122.29,409.367 1120.47,408.618 1118.2,407.691 1117.91,407.573 1115.93,406.776 1113.65,405.872 1113.42,405.778 1111.38,404.979 1109.11,404.097 1108.81,403.984 \n", " 1106.84,403.227 1104.56,402.367 1104.09,402.19 1102.29,401.518 1100.02,400.679 1099.24,400.395 1097.75,399.85 1095.47,399.032 1094.27,398.601 1093.2,398.223 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#a12b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1093.2,398.223 1090.93,397.425 1089.15,396.807 1088.66,396.636 1086.38,395.857 1084.11,395.088 1083.89,395.012 1081.84,394.327 1079.57,393.577 1078.47,393.218 \n", " 1077.3,392.835 1075.02,392.102 1072.89,391.424 1072.75,391.379 1070.48,390.663 1068.21,389.957 1067.14,389.629 1065.93,389.26 1063.66,388.571 1061.39,387.891 \n", " 1061.2,387.835 1059.12,387.219 1056.84,386.555 1055.06,386.041 1054.57,385.899 1052.3,385.252 1050.03,384.613 1048.71,384.246 1047.75,383.981 1045.48,383.358 \n", " 1043.21,382.742 1042.13,382.452 1040.94,382.134 1038.67,381.534 1036.39,380.941 1035.29,380.658 1034.12,380.356 1031.85,379.778 1029.58,379.208 1028.18,378.863 \n", " 1027.3,378.645 1025.03,378.09 1022.76,377.541 1020.77,377.069 1020.49,377 1018.21,376.466 1015.94,375.939 1013.67,375.419 1013.03,375.275 1011.4,374.906 \n", " 1009.12,374.399 1006.85,373.9 1004.91,373.48 1004.58,373.408 1002.31,372.922 1000.03,372.442 997.763,371.97 996.376,371.686 995.49,371.504 993.218,371.045 \n", " 990.945,370.592 988.673,370.146 987.359,369.892 986.401,369.706 984.128,369.272 981.856,368.845 979.584,368.425 977.788,368.097 977.311,368.01 975.039,367.602 \n", " 972.767,367.199 970.494,366.804 968.222,366.414 967.563,366.303 965.949,366.03 963.677,365.653 961.405,365.281 959.132,364.916 956.86,364.557 956.552,364.509 \n", " 954.588,364.203 952.315,363.855 950.043,363.513 947.771,363.177 945.498,362.847 944.565,362.714 943.226,362.523 940.954,362.204 938.681,361.891 936.409,361.584 \n", " 934.136,361.283 931.864,360.988 931.33,360.92 929.592,360.698 927.319,360.413 925.047,360.135 922.775,359.862 920.502,359.594 918.23,359.333 916.393,359.126 \n", " 915.958,359.077 913.685,358.825 911.413,358.58 909.14,358.34 906.868,358.105 904.596,357.876 902.323,357.653 900.051,357.435 898.94,357.331 897.779,357.223 \n", " 895.506,357.015 893.234,356.813 890.962,356.616 888.689,356.425 886.417,356.239 884.144,356.058 881.872,355.883 879.6,355.713 877.327,355.549 877.16,355.537 \n", " 875.055,355.389 872.783,355.234 870.51,355.085 868.238,354.941 865.966,354.803 863.693,354.669 861.421,354.541 859.148,354.418 856.876,354.301 854.604,354.188 \n", " 852.331,354.081 850.059,353.979 847.787,353.882 845.514,353.79 844.274,353.743 843.242,353.703 840.97,353.621 838.697,353.545 836.425,353.473 834.152,353.407 \n", " 831.88,353.345 829.608,353.289 827.335,353.238 825.063,353.192 822.791,353.152 820.518,353.116 818.246,353.085 815.974,353.06 813.701,353.04 811.429,353.024 \n", " 809.156,353.014 806.884,353.009 804.612,353.009 802.339,353.014 800.067,353.024 797.795,353.04 795.522,353.06 793.25,353.085 790.978,353.116 788.705,353.152 \n", " 786.433,353.192 784.16,353.238 781.888,353.289 779.616,353.345 777.343,353.407 775.071,353.473 772.799,353.545 770.526,353.621 768.254,353.703 767.222,353.743 \n", " 765.982,353.79 763.709,353.882 761.437,353.979 759.164,354.081 756.892,354.188 754.62,354.301 752.347,354.418 750.075,354.541 747.803,354.669 745.53,354.803 \n", " 743.258,354.941 740.986,355.085 738.713,355.234 736.441,355.389 734.336,355.537 734.169,355.549 731.896,355.713 729.624,355.883 727.351,356.058 725.079,356.239 \n", " 722.807,356.425 720.534,356.616 718.262,356.813 715.99,357.015 713.717,357.223 712.556,357.331 711.445,357.435 709.173,357.653 706.9,357.876 704.628,358.105 \n", " 702.355,358.34 700.083,358.58 697.811,358.825 695.538,359.077 695.103,359.126 693.266,359.333 690.994,359.594 688.721,359.862 686.449,360.135 684.177,360.413 \n", " 681.904,360.698 680.166,360.92 679.632,360.988 677.359,361.283 675.087,361.584 672.815,361.891 670.542,362.204 668.27,362.523 666.931,362.714 665.998,362.847 \n", " 663.725,363.177 661.453,363.513 659.181,363.855 656.908,364.203 654.944,364.509 654.636,364.557 652.363,364.916 650.091,365.281 647.819,365.653 645.546,366.03 \n", " 643.933,366.303 643.274,366.414 641.002,366.804 638.729,367.199 636.457,367.602 634.185,368.01 633.707,368.097 631.912,368.425 629.64,368.845 627.367,369.272 \n", " 625.095,369.706 624.137,369.892 622.823,370.146 620.55,370.592 618.278,371.045 616.006,371.504 615.12,371.686 613.733,371.97 611.461,372.442 609.189,372.922 \n", " 606.916,373.408 606.582,373.48 604.644,373.9 602.371,374.399 600.099,374.906 598.466,375.275 597.827,375.419 595.554,375.939 593.282,376.466 591.01,377 \n", " 590.721,377.069 588.737,377.541 586.465,378.09 584.193,378.645 583.312,378.863 581.92,379.208 579.648,379.778 577.375,380.356 576.203,380.658 575.103,380.941 \n", " 572.831,381.534 570.558,382.134 569.369,382.452 568.286,382.742 566.014,383.358 563.741,383.981 562.786,384.246 561.469,384.613 559.197,385.252 556.924,385.899 \n", " 556.433,386.041 554.652,386.555 552.38,387.219 550.295,387.835 550.107,387.891 547.835,388.571 545.562,389.26 544.357,389.629 543.29,389.957 541.018,390.663 \n", " 538.745,391.379 538.603,391.424 536.473,392.102 534.201,392.835 533.024,393.218 531.928,393.577 529.656,394.327 527.608,395.012 527.384,395.088 525.111,395.857 \n", " 522.839,396.636 522.346,396.807 520.566,397.425 518.294,398.223 517.23,398.601 516.022,399.032 513.749,399.85 512.252,400.395 511.477,400.679 509.205,401.518 \n", " 507.405,402.19 506.932,402.367 504.66,403.227 502.682,403.984 502.388,404.097 500.115,404.979 498.079,405.778 497.843,405.872 495.57,406.776 493.59,407.573 \n", " 493.298,407.691 491.026,408.618 489.209,409.367 488.753,409.556 486.481,410.507 484.934,411.161 484.209,411.47 481.936,412.445 480.758,412.956 479.664,413.433 \n", " 477.392,414.434 476.679,414.75 475.119,415.448 472.847,416.474 472.693,416.544 470.574,417.515 468.797,418.339 468.302,418.57 466.03,419.638 464.987,420.133 \n", " 463.757,420.721 461.485,421.819 461.261,421.927 459.213,422.932 457.616,423.722 456.94,424.059 454.668,425.203 454.05,425.516 452.396,426.363 450.56,427.31 \n", " 450.123,427.538 447.851,428.731 447.144,429.105 445.578,429.941 443.8,430.899 443.306,431.168 441.034,432.413 440.525,432.693 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#ba3655; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.346,450.637 459.213,451.916 458.36,452.431 456.94,453.3 455.441,454.225 454.668,454.709 452.586,456.02 452.396,456.142 450.123,457.602 449.795,457.814 \n", " 447.851,459.089 447.065,459.608 445.578,460.605 444.396,461.403 443.306,462.149 441.786,463.197 441.034,463.723 439.233,464.991 438.761,465.329 436.737,466.786 \n", " 436.489,466.967 434.296,468.58 434.217,468.639 431.944,470.348 431.91,470.374 429.672,472.095 429.576,472.169 427.4,473.881 427.296,473.963 425.127,475.708 \n", " 425.066,475.757 422.887,477.552 422.855,477.579 420.757,479.346 420.582,479.496 418.677,481.14 418.31,481.463 416.644,482.935 416.038,483.481 414.658,484.729 \n", " 413.765,485.553 412.719,486.523 411.493,487.684 410.826,488.318 409.221,489.876 408.978,490.112 407.175,491.906 406.948,492.137 405.415,493.701 404.676,494.472 \n", " 403.699,495.495 402.404,496.883 402.026,497.289 400.395,499.084 400.131,499.381 398.806,500.878 397.859,501.974 397.258,502.672 395.751,504.467 395.586,504.667 \n", " 394.284,506.261 393.314,507.479 392.857,508.055 391.47,509.85 391.042,510.418 390.122,511.644 388.813,513.438 388.769,513.499 387.541,515.233 386.497,516.752 \n", " 386.309,517.027 385.113,518.821 384.225,520.198 383.956,520.616 382.835,522.41 381.952,523.871 381.751,524.204 380.703,525.999 379.693,527.793 379.68,527.816 \n", " 378.717,529.587 377.778,531.382 377.408,532.116 376.874,533.176 376.005,534.97 375.172,536.765 375.135,536.847 374.373,538.559 373.609,540.353 372.879,542.148 \n", " 372.863,542.19 372.184,543.942 371.522,545.736 370.896,547.531 370.59,548.453 370.302,549.325 369.742,551.119 369.216,552.914 368.724,554.708 368.318,556.294 \n", " 368.265,556.502 367.839,558.297 367.446,560.091 367.086,561.885 366.759,563.68 366.465,565.474 366.204,567.268 366.046,568.513 365.976,569.063 365.78,570.857 \n", " 365.617,572.651 365.487,574.446 365.389,576.24 365.324,578.034 365.291,579.829 365.291,581.623 365.324,583.417 365.389,585.212 365.487,587.006 365.617,588.8 \n", " 365.78,590.595 365.976,592.389 366.046,592.939 366.204,594.183 366.465,595.978 366.759,597.772 367.086,599.566 367.446,601.361 367.839,603.155 368.265,604.949 \n", " 368.318,605.158 368.724,606.744 369.216,608.538 369.742,610.332 370.302,612.127 370.59,612.999 370.896,613.921 371.522,615.715 372.184,617.51 372.863,619.262 \n", " 372.879,619.304 373.609,621.098 374.373,622.893 375.135,624.605 375.172,624.687 376.005,626.482 376.874,628.276 377.408,629.336 377.778,630.07 378.717,631.865 \n", " 379.68,633.636 379.693,633.659 380.703,635.453 381.751,637.248 381.952,637.581 382.835,639.042 383.956,640.836 384.225,641.254 385.113,642.631 386.309,644.425 \n", " 386.497,644.7 387.541,646.219 388.769,647.953 388.813,648.014 390.122,649.808 391.042,651.033 391.47,651.602 392.857,653.397 393.314,653.972 394.284,655.191 \n", " 395.586,656.785 395.751,656.985 397.258,658.78 397.859,659.478 398.806,660.574 400.131,662.071 400.395,662.368 402.026,664.163 402.404,664.569 403.699,665.957 \n", " 404.676,666.98 405.415,667.751 406.948,669.315 407.175,669.546 408.978,671.34 409.221,671.576 410.826,673.134 411.493,673.768 412.719,674.929 413.765,675.899 \n", " 414.658,676.723 416.038,677.971 416.644,678.517 418.31,679.989 418.677,680.312 420.582,681.956 420.757,682.106 422.855,683.873 422.887,683.9 425.066,685.695 \n", " 425.127,685.744 427.296,687.489 427.4,687.571 429.576,689.283 429.672,689.357 431.91,691.078 431.944,691.104 434.217,692.812 434.296,692.872 436.489,694.485 \n", " 436.737,694.666 438.761,696.123 439.233,696.461 441.034,697.729 441.786,698.255 443.306,699.303 444.396,700.049 445.578,700.847 447.065,701.844 447.851,702.363 \n", " 449.795,703.638 450.123,703.85 452.396,705.31 452.586,705.432 454.668,706.743 455.441,707.227 456.94,708.152 458.36,709.021 459.213,709.536 461.346,710.815 \n", " 461.485,710.898 463.757,712.235 464.4,712.61 466.03,713.55 467.524,714.404 468.302,714.844 470.574,716.118 470.719,716.198 472.847,717.369 473.989,717.993 \n", " 475.119,718.602 477.335,719.787 477.392,719.817 479.664,721.011 480.76,721.581 481.936,722.187 484.209,723.347 484.265,723.376 486.481,724.488 487.855,725.17 \n", " 488.753,725.612 491.026,726.72 491.53,726.964 493.298,727.811 495.296,728.759 495.57,728.888 497.843,729.947 499.155,730.553 500.115,730.992 502.388,732.022 \n", " 503.11,732.347 504.66,733.038 506.932,734.039 507.166,734.142 509.205,735.026 511.326,735.936 511.477,736 513.749,736.96 515.596,737.73 516.022,737.907 \n", " 518.294,738.84 519.979,739.525 520.566,739.761 522.839,740.67 524.482,741.319 525.111,741.566 527.384,742.45 529.11,743.113 529.656,743.322 531.928,744.182 \n", " 533.868,744.908 534.201,745.031 536.473,745.868 538.745,746.695 538.766,746.702 541.018,747.509 543.29,748.314 543.811,748.496 545.562,749.107 547.835,749.89 \n", " 549.01,750.291 550.107,750.663 552.38,751.425 554.373,752.085 554.652,752.177 556.924,752.919 559.197,753.651 559.912,753.879 561.469,754.373 563.741,755.086 \n", " 565.638,755.674 566.014,755.789 568.286,756.483 570.558,757.168 571.566,757.468 572.831,757.843 575.103,758.509 577.375,759.167 577.709,759.262 579.648,759.815 \n", " 581.92,760.455 584.088,761.057 584.193,761.086 586.465,761.708 588.737,762.322 590.723,762.851 591.01,762.927 593.282,763.524 595.554,764.113 597.638,764.645 \n", " 597.827,764.693 600.099,765.266 602.371,765.83 604.644,766.387 604.863,766.44 606.916,766.935 609.189,767.476 611.461,768.009 612.433,768.234 613.733,768.534 \n", " 616.006,769.052 618.278,769.562 620.385,770.028 620.55,770.065 622.823,770.56 625.095,771.048 627.367,771.528 628.779,771.823 629.64,772.002 631.912,772.468 \n", " 634.185,772.927 636.457,773.378 637.676,773.617 638.729,773.823 641.002,774.261 643.274,774.692 645.546,775.115 647.16,775.411 647.819,775.532 650.091,775.942 \n", " 652.363,776.346 654.636,776.742 656.908,777.132 657.345,777.206 659.181,777.515 661.453,777.892 663.725,778.262 665.998,778.625 668.27,778.982 668.385,779 \n", " 670.542,779.333 672.815,779.677 675.087,780.015 677.359,780.346 679.632,780.67 680.515,780.794 681.904,780.989 684.177,781.302 686.449,781.608 688.721,781.908 \n", " 690.994,782.201 693.266,782.488 694.077,782.589 695.538,782.77 697.811,783.045 700.083,783.314 702.355,783.577 704.628,783.834 706.9,784.085 709.173,784.33 \n", " 709.68,784.383 711.445,784.569 713.717,784.802 715.99,785.029 718.262,785.25 720.534,785.465 722.807,785.675 725.079,785.878 727.351,786.076 728.557,786.177 \n", " 729.624,786.267 731.896,786.454 734.169,786.634 736.441,786.808 738.713,786.977 740.986,787.14 743.258,787.297 745.53,787.449 747.803,787.594 750.075,787.734 \n", " 752.347,787.868 754.174,787.972 754.62,787.997 756.892,788.12 759.164,788.237 761.437,788.349 763.709,788.455 765.982,788.556 768.254,788.651 770.526,788.74 \n", " 772.799,788.823 775.071,788.901 777.343,788.974 779.616,789.041 781.888,789.102 784.16,789.157 786.433,789.207 788.705,789.252 790.978,789.291 793.25,789.324 \n", " 795.522,789.352 797.795,789.374 800.067,789.391 802.339,789.402 804.612,789.407 806.884,789.407 809.156,789.402 811.429,789.391 813.701,789.374 815.974,789.352 \n", " 818.246,789.324 820.518,789.291 822.791,789.252 825.063,789.207 827.335,789.157 829.608,789.102 831.88,789.041 834.152,788.974 836.425,788.901 838.697,788.823 \n", " 840.97,788.74 843.242,788.651 845.514,788.556 847.787,788.455 850.059,788.349 852.331,788.237 854.604,788.12 856.876,787.997 857.322,787.972 859.148,787.868 \n", " 861.421,787.734 863.693,787.594 865.966,787.449 868.238,787.297 870.51,787.14 872.783,786.977 875.055,786.808 877.327,786.634 879.6,786.454 881.872,786.267 \n", " 882.939,786.177 884.144,786.076 886.417,785.878 888.689,785.675 890.962,785.465 893.234,785.25 895.506,785.029 897.779,784.802 900.051,784.569 901.816,784.383 \n", " 902.323,784.33 904.596,784.085 906.868,783.834 909.14,783.577 911.413,783.314 913.685,783.045 915.958,782.77 917.419,782.589 918.23,782.488 920.502,782.201 \n", " 922.775,781.908 925.047,781.608 927.319,781.302 929.592,780.989 930.981,780.794 931.864,780.67 934.136,780.346 936.409,780.015 938.681,779.677 940.954,779.333 \n", " 943.111,779 943.226,778.982 945.498,778.625 947.771,778.262 950.043,777.892 952.315,777.515 954.151,777.206 954.588,777.132 956.86,776.742 959.132,776.346 \n", " 961.405,775.942 963.677,775.532 964.336,775.411 965.949,775.115 968.222,774.692 970.494,774.261 972.767,773.823 973.82,773.617 975.039,773.378 977.311,772.927 \n", " 979.584,772.468 981.856,772.002 982.716,771.823 984.128,771.528 986.401,771.048 988.673,770.56 990.945,770.065 991.111,770.028 993.218,769.562 995.49,769.052 \n", " 997.763,768.534 999.063,768.234 1000.03,768.009 1002.31,767.476 1004.58,766.935 1006.63,766.44 1006.85,766.387 1009.12,765.83 1011.4,765.266 1013.67,764.693 \n", " 1013.86,764.645 1015.94,764.113 1018.21,763.524 1020.49,762.927 1020.77,762.851 1022.76,762.322 1025.03,761.708 1027.3,761.086 1027.41,761.057 1029.58,760.455 \n", " 1031.85,759.815 1033.79,759.262 1034.12,759.167 1036.39,758.509 1038.67,757.843 1039.93,757.468 1040.94,757.168 1043.21,756.483 1045.48,755.789 1045.86,755.674 \n", " 1047.75,755.086 1050.03,754.373 1051.58,753.879 1052.3,753.651 1054.57,752.919 1056.84,752.177 1057.12,752.085 1059.12,751.425 1061.39,750.663 1062.49,750.291 \n", " 1063.66,749.89 1065.93,749.107 1067.69,748.496 1068.21,748.314 1070.48,747.509 1072.73,746.702 1072.75,746.695 1075.02,745.868 1077.3,745.031 1077.63,744.908 \n", " 1079.57,744.182 1081.84,743.322 1082.39,743.113 1084.11,742.45 1086.38,741.566 1087.01,741.319 1088.66,740.67 1090.93,739.761 1091.52,739.525 1093.2,738.84 \n", " 1095.47,737.907 1095.9,737.73 1097.75,736.96 1100.02,736 1100.17,735.936 1102.29,735.026 1104.33,734.142 1104.56,734.039 1106.84,733.038 1108.39,732.347 \n", " 1109.11,732.022 1111.38,730.992 1112.34,730.553 1113.65,729.947 1115.93,728.888 1116.2,728.759 1118.2,727.811 1119.97,726.964 1120.47,726.72 1122.74,725.612 \n", " 1123.64,725.17 1125.01,724.488 1127.23,723.376 1127.29,723.347 1129.56,722.187 1130.74,721.581 1131.83,721.011 1134.1,719.817 1134.16,719.787 1136.38,718.602 \n", " 1137.51,717.993 1138.65,717.369 1140.78,716.198 1140.92,716.118 1143.19,714.844 1143.97,714.404 1145.47,713.55 1147.1,712.61 1147.74,712.235 1150.01,710.898 \n", " 1150.15,710.815 1152.28,709.536 1153.14,709.021 1154.56,708.152 1156.05,707.227 1156.83,706.743 1158.91,705.432 1159.1,705.31 1161.37,703.85 1161.7,703.638 \n", " 1163.65,702.363 1164.43,701.844 1165.92,700.847 1167.1,700.049 1168.19,699.303 1169.71,698.255 1170.46,697.729 1172.26,696.461 1172.73,696.123 1174.76,694.666 \n", " 1175.01,694.485 1177.2,692.872 1177.28,692.812 1179.55,691.104 1179.59,691.078 1181.82,689.357 1181.92,689.283 1184.1,687.571 1184.2,687.489 1186.37,685.744 \n", " 1186.43,685.695 1188.61,683.9 1188.64,683.873 1190.74,682.106 1190.91,681.956 1192.82,680.312 1193.19,679.989 1194.85,678.517 1195.46,677.971 1196.84,676.723 \n", " 1197.73,675.899 1198.78,674.929 1200,673.768 1200.67,673.134 1202.28,671.576 1202.52,671.34 1204.32,669.546 1204.55,669.315 1206.08,667.751 1206.82,666.98 \n", " 1207.8,665.957 1209.09,664.569 1209.47,664.163 1211.1,662.368 1211.36,662.071 1212.69,660.574 1213.64,659.478 1214.24,658.78 1215.75,656.985 1215.91,656.785 \n", " 1217.21,655.191 1218.18,653.972 1218.64,653.397 1220.03,651.602 1220.45,651.033 1221.37,649.808 1222.68,648.014 1222.73,647.953 1223.95,646.219 1225,644.7 \n", " 1225.19,644.425 1226.38,642.631 1227.27,641.254 1227.54,640.836 1228.66,639.042 1229.54,637.581 1229.74,637.248 1230.79,635.453 1231.8,633.659 1231.82,633.636 \n", " 1232.78,631.865 1233.72,630.07 1234.09,629.336 1234.62,628.276 1235.49,626.482 1236.32,624.687 1236.36,624.605 1237.12,622.893 1237.89,621.098 1238.62,619.304 \n", " 1238.63,619.262 1239.31,617.51 1239.97,615.715 1240.6,613.921 1240.91,612.999 1241.19,612.127 1241.75,610.332 1242.28,608.538 1242.77,606.744 1243.18,605.158 \n", " 1243.23,604.949 1243.66,603.155 1244.05,601.361 1244.41,599.566 1244.74,597.772 1245.03,595.978 1245.29,594.183 1245.45,592.939 1245.52,592.389 1245.72,590.595 \n", " 1245.88,588.8 1246.01,587.006 1246.11,585.212 1246.17,583.417 1246.2,581.623 1246.2,579.829 1246.17,578.034 1246.11,576.24 1246.01,574.446 1245.88,572.651 \n", " 1245.72,570.857 1245.52,569.063 1245.45,568.513 1245.29,567.268 1245.03,565.474 1244.74,563.68 1244.41,561.885 1244.05,560.091 1243.66,558.297 1243.23,556.502 \n", " 1243.18,556.294 1242.77,554.708 1242.28,552.914 1241.75,551.119 1241.19,549.325 1240.91,548.453 1240.6,547.531 1239.97,545.736 1239.31,543.942 1238.63,542.19 \n", " 1238.62,542.148 1237.89,540.353 1237.12,538.559 1236.36,536.847 1236.32,536.765 1235.49,534.97 1234.62,533.176 1234.09,532.116 1233.72,531.382 1232.78,529.587 \n", " 1231.82,527.816 1231.8,527.793 1230.79,525.999 1229.74,524.204 1229.54,523.871 1228.66,522.41 1227.54,520.616 1227.27,520.198 1226.38,518.821 1225.19,517.027 \n", " 1225,516.752 1223.95,515.233 1222.73,513.499 1222.68,513.438 1221.37,511.644 1220.45,510.418 1220.03,509.85 1218.64,508.055 1218.18,507.479 1217.21,506.261 \n", " 1215.91,504.667 1215.75,504.467 1214.24,502.672 1213.64,501.974 1212.69,500.878 1211.36,499.381 1211.1,499.084 1209.47,497.289 1209.09,496.883 1207.8,495.495 \n", " 1206.82,494.472 1206.08,493.701 1204.55,492.137 1204.32,491.906 1202.52,490.112 1202.28,489.876 1200.67,488.318 1200,487.684 1198.78,486.523 1197.73,485.553 \n", " 1196.84,484.729 1195.46,483.481 1194.85,482.935 1193.19,481.463 1192.82,481.14 1190.91,479.496 1190.74,479.346 1188.64,477.579 1188.61,477.552 1186.43,475.757 \n", " 1186.37,475.708 1184.2,473.963 1184.1,473.881 1181.92,472.169 1181.82,472.095 1179.59,470.374 1179.55,470.348 1177.28,468.639 1177.2,468.58 1175.01,466.967 \n", " 1174.76,466.786 1172.73,465.329 1172.26,464.991 1170.46,463.723 1169.71,463.197 1168.19,462.149 1167.1,461.403 1165.92,460.605 1164.43,459.608 1163.65,459.089 \n", " 1161.7,457.814 1161.37,457.602 1159.1,456.142 1158.91,456.02 1156.83,454.709 1156.05,454.225 1154.56,453.3 1153.14,452.431 1152.28,451.916 1150.15,450.637 \n", " 1150.01,450.554 1147.74,449.217 1147.1,448.842 1145.47,447.902 1143.97,447.048 1143.19,446.608 1140.92,445.334 1140.78,445.254 1138.65,444.083 1137.51,443.459 \n", " 1136.38,442.85 1134.16,441.665 1134.1,441.635 1131.83,440.441 1130.74,439.871 1129.56,439.264 1127.29,438.105 1127.23,438.076 1125.01,436.964 1123.64,436.282 \n", " 1122.74,435.84 1120.47,434.732 1119.97,434.488 1118.2,433.641 1116.2,432.693 1115.93,432.564 1113.65,431.505 1112.34,430.899 1111.38,430.46 1109.11,429.43 \n", " 1108.39,429.105 1106.84,428.414 1104.56,427.413 1104.33,427.31 1102.29,426.426 1100.17,425.516 1100.02,425.452 1097.75,424.492 1095.9,423.722 1095.47,423.545 \n", " 1093.2,422.612 1091.52,421.927 1090.93,421.691 1088.66,420.782 1087.01,420.133 1086.38,419.886 1084.11,419.002 1082.39,418.339 1081.84,418.13 1079.57,417.27 \n", " 1077.63,416.544 1077.3,416.421 1075.02,415.584 1072.75,414.757 1072.73,414.75 1070.48,413.943 1068.21,413.138 1067.69,412.956 1065.93,412.345 1063.66,411.562 \n", " 1062.49,411.161 1061.39,410.789 1059.12,410.027 1057.12,409.367 1056.84,409.275 1054.57,408.533 1052.3,407.801 1051.58,407.573 1050.03,407.079 1047.75,406.366 \n", " 1045.86,405.778 1045.48,405.662 1043.21,404.969 1040.94,404.284 1039.93,403.984 1038.67,403.609 1036.39,402.943 1034.12,402.285 1033.79,402.19 1031.85,401.637 \n", " 1029.58,400.997 1027.41,400.395 1027.3,400.366 1025.03,399.744 1022.76,399.13 1020.77,398.601 1020.49,398.525 1018.21,397.928 1015.94,397.339 1013.86,396.807 \n", " 1013.67,396.759 1011.4,396.186 1009.12,395.622 1006.85,395.065 1006.63,395.012 1004.58,394.517 1002.31,393.976 1000.03,393.443 999.063,393.218 997.763,392.918 \n", " 995.49,392.4 993.218,391.89 991.111,391.424 990.945,391.387 988.673,390.892 986.401,390.404 984.128,389.924 982.716,389.629 981.856,389.45 979.584,388.984 \n", " 977.311,388.525 975.039,388.074 973.82,387.835 972.767,387.629 970.494,387.191 968.222,386.76 965.949,386.337 964.336,386.041 963.677,385.92 961.405,385.51 \n", " 959.132,385.106 956.86,384.71 954.588,384.32 954.151,384.246 952.315,383.937 950.043,383.56 947.771,383.19 945.498,382.827 943.226,382.47 943.111,382.452 \n", " 940.954,382.119 938.681,381.775 936.409,381.437 934.136,381.106 931.864,380.782 930.981,380.658 929.592,380.463 927.319,380.15 925.047,379.844 922.775,379.544 \n", " 920.502,379.251 918.23,378.964 917.419,378.863 915.958,378.682 913.685,378.407 911.413,378.138 909.14,377.875 906.868,377.618 904.596,377.367 902.323,377.122 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#ba3655; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 902.323,377.122 901.816,377.069 900.051,376.883 897.779,376.65 895.506,376.423 893.234,376.202 890.962,375.987 888.689,375.777 886.417,375.574 884.144,375.376 \n", " 882.939,375.275 881.872,375.185 879.6,374.998 877.327,374.818 875.055,374.644 872.783,374.475 870.51,374.312 868.238,374.155 865.966,374.003 863.693,373.858 \n", " 861.421,373.718 859.148,373.584 857.322,373.48 856.876,373.455 854.604,373.332 852.331,373.215 850.059,373.103 847.787,372.997 845.514,372.896 843.242,372.801 \n", " 840.97,372.712 838.697,372.629 836.425,372.551 834.152,372.478 831.88,372.411 829.608,372.35 827.335,372.295 825.063,372.245 822.791,372.2 820.518,372.161 \n", " 818.246,372.128 815.974,372.1 813.701,372.078 811.429,372.061 809.156,372.05 806.884,372.045 804.612,372.045 802.339,372.05 800.067,372.061 797.795,372.078 \n", " 795.522,372.1 793.25,372.128 790.978,372.161 788.705,372.2 786.433,372.245 784.16,372.295 781.888,372.35 779.616,372.411 777.343,372.478 775.071,372.551 \n", " 772.799,372.629 770.526,372.712 768.254,372.801 765.982,372.896 763.709,372.997 761.437,373.103 759.164,373.215 756.892,373.332 754.62,373.455 754.174,373.48 \n", " 752.347,373.584 750.075,373.718 747.803,373.858 745.53,374.003 743.258,374.155 740.986,374.312 738.713,374.475 736.441,374.644 734.169,374.818 731.896,374.998 \n", " 729.624,375.185 728.557,375.275 727.351,375.376 725.079,375.574 722.807,375.777 720.534,375.987 718.262,376.202 715.99,376.423 713.717,376.65 711.445,376.883 \n", " 709.68,377.069 709.173,377.122 706.9,377.367 704.628,377.618 702.355,377.875 700.083,378.138 697.811,378.407 695.538,378.682 694.077,378.863 693.266,378.964 \n", " 690.994,379.251 688.721,379.544 686.449,379.844 684.177,380.15 681.904,380.463 680.515,380.658 679.632,380.782 677.359,381.106 675.087,381.437 672.815,381.775 \n", " 670.542,382.119 668.385,382.452 668.27,382.47 665.998,382.827 663.725,383.19 661.453,383.56 659.181,383.937 657.345,384.246 656.908,384.32 654.636,384.71 \n", " 652.363,385.106 650.091,385.51 647.819,385.92 647.16,386.041 645.546,386.337 643.274,386.76 641.002,387.191 638.729,387.629 637.676,387.835 636.457,388.074 \n", " 634.185,388.525 631.912,388.984 629.64,389.45 628.779,389.629 627.367,389.924 625.095,390.404 622.823,390.892 620.55,391.387 620.385,391.424 618.278,391.89 \n", " 616.006,392.4 613.733,392.918 612.433,393.218 611.461,393.443 609.189,393.976 606.916,394.517 604.863,395.012 604.644,395.065 602.371,395.622 600.099,396.186 \n", " 597.827,396.759 597.638,396.807 595.554,397.339 593.282,397.928 591.01,398.525 590.723,398.601 588.737,399.13 586.465,399.744 584.193,400.366 584.088,400.395 \n", " 581.92,400.997 579.648,401.637 577.709,402.19 577.375,402.285 575.103,402.943 572.831,403.609 571.566,403.984 570.558,404.284 568.286,404.969 566.014,405.662 \n", " 565.638,405.778 563.741,406.366 561.469,407.079 559.912,407.573 559.197,407.801 556.924,408.533 554.652,409.275 554.373,409.367 552.38,410.027 550.107,410.789 \n", " 549.01,411.161 547.835,411.562 545.562,412.345 543.811,412.956 543.29,413.138 541.018,413.943 538.766,414.75 538.745,414.757 536.473,415.584 534.201,416.421 \n", " 533.868,416.544 531.928,417.27 529.656,418.13 529.11,418.339 527.384,419.002 525.111,419.886 524.482,420.133 522.839,420.782 520.566,421.691 519.979,421.927 \n", " 518.294,422.612 516.022,423.545 515.596,423.722 513.749,424.492 511.477,425.452 511.326,425.516 509.205,426.426 507.166,427.31 506.932,427.413 504.66,428.414 \n", " 503.11,429.105 502.388,429.43 500.115,430.46 499.155,430.899 497.843,431.505 495.57,432.564 495.296,432.693 493.298,433.641 491.53,434.488 491.026,434.732 \n", " 488.753,435.84 487.855,436.282 486.481,436.964 484.265,438.076 484.209,438.105 481.936,439.264 480.76,439.871 479.664,440.441 477.392,441.635 477.335,441.665 \n", " 475.119,442.85 473.989,443.459 472.847,444.083 470.719,445.254 470.574,445.334 468.302,446.608 467.524,447.048 466.03,447.902 464.4,448.842 463.757,449.217 \n", " 461.485,450.554 461.346,450.637 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 484.173,466.786 481.936,468.218 481.376,468.58 479.664,469.702 478.646,470.374 477.392,471.216 475.982,472.169 475.119,472.761 473.382,473.963 472.847,474.339 \n", " 470.845,475.757 470.574,475.953 468.37,477.552 468.302,477.602 466.03,479.291 465.956,479.346 463.757,481.02 463.6,481.14 461.485,482.791 461.302,482.935 \n", " 459.213,484.607 459.061,484.729 456.94,486.469 456.875,486.523 454.743,488.318 454.668,488.383 452.665,490.112 452.396,490.35 450.64,491.906 450.123,492.374 \n", " 448.666,493.701 447.851,494.459 446.744,495.495 445.578,496.609 444.871,497.289 443.306,498.828 443.047,499.084 441.272,500.878 441.034,501.124 439.544,502.672 \n", " 438.761,503.506 437.864,504.467 436.489,505.975 436.23,506.261 434.642,508.055 434.217,508.548 433.099,509.85 431.944,511.231 431.601,511.644 430.147,513.438 \n", " 429.672,514.041 428.737,515.233 427.4,516.987 427.369,517.027 426.045,518.821 425.127,520.105 424.763,520.616 423.522,522.41 422.855,523.408 422.323,524.204 \n", " 421.165,525.999 420.582,526.934 420.048,527.793 418.971,529.587 418.31,530.73 417.934,531.382 416.937,533.176 416.038,534.86 415.979,534.97 415.06,536.765 \n", " 414.18,538.559 413.765,539.442 413.338,540.353 412.535,542.148 411.77,543.942 411.493,544.624 411.042,545.736 410.352,547.531 409.7,549.325 409.221,550.723 \n", " 409.085,551.119 408.507,552.914 407.965,554.708 407.461,556.502 406.993,558.297 406.948,558.483 406.562,560.091 406.166,561.885 405.808,563.68 405.485,565.474 \n", " 405.198,567.268 404.948,569.063 404.733,570.857 404.676,571.433 404.554,572.651 404.411,574.446 404.304,576.24 404.233,578.034 404.197,579.829 404.197,581.623 \n", " 404.233,583.417 404.304,585.212 404.411,587.006 404.554,588.8 404.676,590.019 404.733,590.595 404.948,592.389 405.198,594.183 405.485,595.978 405.808,597.772 \n", " 406.166,599.566 406.562,601.361 406.948,602.969 406.993,603.155 407.461,604.949 407.965,606.744 408.507,608.538 409.085,610.332 409.221,610.729 409.7,612.127 \n", " 410.352,613.921 411.042,615.715 411.493,616.828 411.77,617.51 412.535,619.304 413.338,621.098 413.765,622.01 414.18,622.893 415.06,624.687 415.979,626.482 \n", " 416.038,626.592 416.937,628.276 417.934,630.07 418.31,630.722 418.971,631.865 420.048,633.659 420.582,634.518 421.165,635.453 422.323,637.248 422.855,638.044 \n", " 423.522,639.042 424.763,640.836 425.127,641.347 426.045,642.631 427.369,644.425 427.4,644.465 428.737,646.219 429.672,647.411 430.147,648.014 431.601,649.808 \n", " 431.944,650.221 433.099,651.602 434.217,652.904 434.642,653.397 436.23,655.191 436.489,655.477 437.864,656.985 438.761,657.946 439.544,658.78 441.034,660.328 \n", " 441.272,660.574 443.047,662.368 443.306,662.624 444.871,664.163 445.578,664.843 446.744,665.957 447.851,666.992 448.666,667.751 450.123,669.077 450.64,669.546 \n", " 452.396,671.102 452.665,671.34 454.668,673.069 454.743,673.134 456.875,674.929 456.94,674.983 459.061,676.723 459.213,676.845 461.302,678.517 461.485,678.661 \n", " 463.6,680.312 463.757,680.432 465.956,682.106 466.03,682.161 468.302,683.85 468.37,683.9 470.574,685.499 470.845,685.695 472.847,687.112 473.382,687.489 \n", " 475.119,688.691 475.982,689.283 477.392,690.236 478.646,691.078 479.664,691.75 481.376,692.872 481.936,693.234 484.173,694.666 484.209,694.689 486.481,696.113 \n", " 487.041,696.461 488.753,697.51 489.98,698.255 491.026,698.881 492.992,700.049 493.298,700.229 495.57,701.55 496.08,701.844 497.843,702.847 499.246,703.638 \n", " 500.115,704.122 502.388,705.375 502.492,705.432 504.66,706.604 505.822,707.227 506.932,707.814 509.205,709.005 509.236,709.021 511.477,710.173 512.74,710.815 \n", " 513.749,711.323 516.022,712.455 516.335,712.61 518.294,713.566 520.027,714.404 520.566,714.662 522.839,715.739 523.817,716.198 525.111,716.799 527.384,717.844 \n", " 527.71,717.993 529.656,718.87 531.711,719.787 531.928,719.883 534.201,720.878 535.825,721.581 536.473,721.859 538.745,722.825 540.056,723.376 541.018,723.776 \n", " 543.29,724.713 544.411,725.17 545.562,725.635 547.835,726.545 548.895,726.964 550.107,727.44 552.38,728.322 553.516,728.759 554.652,729.191 556.924,730.048 \n", " 558.281,730.553 559.197,730.891 561.469,731.723 563.198,732.347 563.741,732.542 566.014,733.349 568.277,734.142 568.286,734.145 570.558,734.928 572.831,735.7 \n", " 573.531,735.936 575.103,736.461 577.375,737.211 578.968,737.73 579.648,737.95 581.92,738.678 584.193,739.396 584.604,739.525 586.465,740.103 588.737,740.799 \n", " 590.454,741.319 591.01,741.486 593.282,742.162 595.554,742.829 596.536,743.113 597.827,743.485 600.099,744.132 602.371,744.769 602.87,744.908 604.644,745.397 \n", " 606.916,746.015 609.189,746.624 609.482,746.702 611.461,747.224 613.733,747.814 616.006,748.396 616.401,748.496 618.278,748.969 620.55,749.533 622.823,750.088 \n", " 623.662,750.291 625.095,750.635 627.367,751.173 629.64,751.702 631.305,752.085 631.912,752.224 634.185,752.736 636.457,753.241 638.729,753.738 639.386,753.879 \n", " 641.002,754.226 643.274,754.706 645.546,755.179 647.819,755.643 647.969,755.674 650.091,756.1 652.363,756.549 654.636,756.99 656.908,757.423 657.145,757.468 \n", " 659.181,757.849 661.453,758.267 663.725,758.678 665.998,759.082 667.032,759.262 668.27,759.478 670.542,759.866 672.815,760.248 675.087,760.622 677.359,760.989 \n", " 677.788,761.057 679.632,761.348 681.904,761.701 684.177,762.046 686.449,762.385 688.721,762.716 689.662,762.851 690.994,763.041 693.266,763.359 695.538,763.669 \n", " 697.811,763.973 700.083,764.27 702.355,764.56 703.035,764.645 704.628,764.844 706.9,765.121 709.173,765.391 711.445,765.654 713.717,765.911 715.99,766.161 \n", " 718.262,766.405 718.595,766.44 720.534,766.642 722.807,766.873 725.079,767.097 727.351,767.314 729.624,767.525 731.896,767.73 734.169,767.928 736.441,768.12 \n", " 737.839,768.234 738.713,768.305 740.986,768.484 743.258,768.657 745.53,768.824 747.803,768.984 750.075,769.138 752.347,769.285 754.62,769.427 756.892,769.562 \n", " 759.164,769.691 761.437,769.813 763.709,769.93 765.745,770.028 765.982,770.04 768.254,770.144 770.526,770.242 772.799,770.334 775.071,770.419 777.343,770.499 \n", " 779.616,770.572 781.888,770.639 784.16,770.7 786.433,770.755 788.705,770.804 790.978,770.846 793.25,770.883 795.522,770.913 797.795,770.938 800.067,770.956 \n", " 802.339,770.968 804.612,770.974 806.884,770.974 809.156,770.968 811.429,770.956 813.701,770.938 815.974,770.913 818.246,770.883 820.518,770.846 822.791,770.804 \n", " 825.063,770.755 827.335,770.7 829.608,770.639 831.88,770.572 834.152,770.499 836.425,770.419 838.697,770.334 840.97,770.242 843.242,770.144 845.514,770.04 \n", " 845.751,770.028 847.787,769.93 850.059,769.813 852.331,769.691 854.604,769.562 856.876,769.427 859.148,769.285 861.421,769.138 863.693,768.984 865.966,768.824 \n", " 868.238,768.657 870.51,768.484 872.783,768.305 873.657,768.234 875.055,768.12 877.327,767.928 879.6,767.73 881.872,767.525 884.144,767.314 886.417,767.097 \n", " 888.689,766.873 890.962,766.642 892.901,766.44 893.234,766.405 895.506,766.161 897.779,765.911 900.051,765.654 902.323,765.391 904.596,765.121 906.868,764.844 \n", " 908.461,764.645 909.14,764.56 911.413,764.27 913.685,763.973 915.958,763.669 918.23,763.359 920.502,763.041 921.834,762.851 922.775,762.716 925.047,762.385 \n", " 927.319,762.046 929.592,761.701 931.864,761.348 933.708,761.057 934.136,760.989 936.409,760.622 938.681,760.248 940.954,759.866 943.226,759.478 944.464,759.262 \n", " 945.498,759.082 947.771,758.678 950.043,758.267 952.315,757.849 954.351,757.468 954.588,757.423 956.86,756.99 959.132,756.549 961.405,756.1 963.527,755.674 \n", " 963.677,755.643 965.949,755.179 968.222,754.706 970.494,754.226 972.11,753.879 972.767,753.738 975.039,753.241 977.311,752.736 979.584,752.224 980.191,752.085 \n", " 981.856,751.702 984.128,751.173 986.401,750.635 987.834,750.291 988.673,750.088 990.945,749.533 993.218,748.969 995.095,748.496 995.49,748.396 997.763,747.814 \n", " 1000.03,747.224 1002.01,746.702 1002.31,746.624 1004.58,746.015 1006.85,745.397 1008.63,744.908 1009.12,744.769 1011.4,744.132 1013.67,743.485 1014.96,743.113 \n", " 1015.94,742.829 1018.21,742.162 1020.49,741.486 1021.04,741.319 1022.76,740.799 1025.03,740.103 1026.89,739.525 1027.3,739.396 1029.58,738.678 1031.85,737.95 \n", " 1032.53,737.73 1034.12,737.211 1036.39,736.461 1037.97,735.936 1038.67,735.7 1040.94,734.928 1043.21,734.145 1043.22,734.142 1045.48,733.349 1047.75,732.542 \n", " 1048.3,732.347 1050.03,731.723 1052.3,730.891 1053.22,730.553 1054.57,730.048 1056.84,729.191 1057.98,728.759 1059.12,728.322 1061.39,727.44 1062.6,726.964 \n", " 1063.66,726.545 1065.93,725.635 1067.08,725.17 1068.21,724.713 1070.48,723.776 1071.44,723.376 1072.75,722.825 1075.02,721.859 1075.67,721.581 1077.3,720.878 \n", " 1079.57,719.883 1079.78,719.787 1081.84,718.87 1083.79,717.993 1084.11,717.844 1086.38,716.799 1087.68,716.198 1088.66,715.739 1090.93,714.662 1091.47,714.404 \n", " 1093.2,713.566 1095.16,712.61 1095.47,712.455 1097.75,711.323 1098.76,710.815 1100.02,710.173 1102.26,709.021 1102.29,709.005 1104.56,707.814 1105.67,707.227 \n", " 1106.84,706.604 1109,705.432 1109.11,705.375 1111.38,704.122 1112.25,703.638 1113.65,702.847 1115.42,701.844 1115.93,701.55 1118.2,700.229 1118.5,700.049 \n", " 1120.47,698.881 1121.52,698.255 1122.74,697.51 1124.45,696.461 1125.01,696.113 1127.29,694.689 1127.32,694.666 1129.56,693.234 1130.12,692.872 1131.83,691.75 \n", " 1132.85,691.078 1134.1,690.236 1135.51,689.283 1136.38,688.691 1138.11,687.489 1138.65,687.112 1140.65,685.695 1140.92,685.499 1143.13,683.9 1143.19,683.85 \n", " 1145.47,682.161 1145.54,682.106 1147.74,680.432 1147.9,680.312 1150.01,678.661 1150.19,678.517 1152.28,676.845 1152.44,676.723 1154.56,674.983 1154.62,674.929 \n", " 1156.75,673.134 1156.83,673.069 1158.83,671.34 1159.1,671.102 1160.86,669.546 1161.37,669.077 1162.83,667.751 1163.65,666.992 1164.75,665.957 1165.92,664.843 \n", " 1166.63,664.163 1168.19,662.624 1168.45,662.368 1170.22,660.574 1170.46,660.328 1171.95,658.78 1172.73,657.946 1173.63,656.985 1175.01,655.477 1175.27,655.191 \n", " 1176.85,653.397 1177.28,652.904 1178.4,651.602 1179.55,650.221 1179.9,649.808 1181.35,648.014 1181.82,647.411 1182.76,646.219 1184.1,644.465 1184.13,644.425 \n", " 1185.45,642.631 1186.37,641.347 1186.73,640.836 1187.97,639.042 1188.64,638.044 1189.17,637.248 1190.33,635.453 1190.91,634.518 1191.45,633.659 1192.52,631.865 \n", " 1193.19,630.722 1193.56,630.07 1194.56,628.276 1195.46,626.592 1195.52,626.482 1196.44,624.687 1197.32,622.893 1197.73,622.01 1198.16,621.098 1198.96,619.304 \n", " 1199.73,617.51 1200,616.828 1200.45,615.715 1201.14,613.921 1201.8,612.127 1202.28,610.729 1202.41,610.332 1202.99,608.538 1203.53,606.744 1204.04,604.949 \n", " 1204.5,603.155 1204.55,602.969 1204.93,601.361 1205.33,599.566 1205.69,597.772 1206.01,595.978 1206.3,594.183 1206.55,592.389 1206.76,590.595 1206.82,590.019 \n", " 1206.94,588.8 1207.08,587.006 1207.19,585.212 1207.26,583.417 1207.3,581.623 1207.3,579.829 1207.26,578.034 1207.19,576.24 1207.08,574.446 1206.94,572.651 \n", " 1206.82,571.433 1206.76,570.857 1206.55,569.063 1206.3,567.268 1206.01,565.474 1205.69,563.68 1205.33,561.885 1204.93,560.091 1204.55,558.483 1204.5,558.297 \n", " 1204.04,556.502 1203.53,554.708 1202.99,552.914 1202.41,551.119 1202.28,550.723 1201.8,549.325 1201.14,547.531 1200.45,545.736 1200,544.624 1199.73,543.942 \n", " 1198.96,542.148 1198.16,540.353 1197.73,539.442 1197.32,538.559 1196.44,536.765 1195.52,534.97 1195.46,534.86 1194.56,533.176 1193.56,531.382 1193.19,530.73 \n", " 1192.52,529.587 1191.45,527.793 1190.91,526.934 1190.33,525.999 1189.17,524.204 1188.64,523.408 1187.97,522.41 1186.73,520.616 1186.37,520.105 1185.45,518.821 \n", " 1184.13,517.027 1184.1,516.987 1182.76,515.233 1181.82,514.041 1181.35,513.438 1179.9,511.644 1179.55,511.231 1178.4,509.85 1177.28,508.548 1176.85,508.055 \n", " 1175.27,506.261 1175.01,505.975 1173.63,504.467 1172.73,503.506 1171.95,502.672 1170.46,501.124 1170.22,500.878 1168.45,499.084 1168.19,498.828 1166.63,497.289 \n", " 1165.92,496.609 1164.75,495.495 1163.65,494.459 1162.83,493.701 1161.37,492.374 1160.86,491.906 1159.1,490.35 1158.83,490.112 1156.83,488.383 1156.75,488.318 \n", " 1154.62,486.523 1154.56,486.469 1152.44,484.729 1152.28,484.607 1150.19,482.935 1150.01,482.791 1147.9,481.14 1147.74,481.02 1145.54,479.346 1145.47,479.291 \n", " 1143.19,477.602 1143.13,477.552 1140.92,475.953 1140.65,475.757 1138.65,474.339 1138.11,473.963 1136.38,472.761 1135.51,472.169 1134.1,471.216 1132.85,470.374 \n", " 1131.83,469.702 1130.12,468.58 1129.56,468.218 1127.32,466.786 1127.29,466.763 1125.01,465.339 1124.45,464.991 1122.74,463.942 1121.52,463.197 1120.47,462.571 \n", " 1118.5,461.403 1118.2,461.223 1115.93,459.902 1115.42,459.608 1113.65,458.605 1112.25,457.814 1111.38,457.33 1109.11,456.077 1109,456.02 1106.84,454.848 \n", " 1105.67,454.225 1104.56,453.638 1102.29,452.447 1102.26,452.431 1100.02,451.279 1098.76,450.637 1097.75,450.129 1095.47,448.997 1095.16,448.842 1093.2,447.886 \n", " 1091.47,447.048 1090.93,446.79 1088.66,445.713 1087.68,445.254 1086.38,444.653 1084.11,443.608 1083.79,443.459 1081.84,442.582 1079.78,441.665 1079.57,441.569 \n", " 1077.3,440.574 1075.67,439.871 1075.02,439.593 1072.75,438.627 1071.44,438.076 1070.48,437.676 1068.21,436.739 1067.08,436.282 1065.93,435.816 1063.66,434.907 \n", " 1062.6,434.488 1061.39,434.012 1059.12,433.13 1057.98,432.693 1056.84,432.261 1054.57,431.404 1053.22,430.899 1052.3,430.561 1050.03,429.729 1048.3,429.105 \n", " 1047.75,428.91 1045.48,428.103 1043.22,427.31 1043.21,427.307 1040.94,426.524 1038.67,425.751 1037.97,425.516 1036.39,424.991 1034.12,424.241 1032.53,423.722 \n", " 1031.85,423.502 1029.58,422.774 1027.3,422.056 1026.89,421.927 1025.03,421.349 1022.76,420.652 1021.04,420.133 1020.49,419.966 1018.21,419.29 1015.94,418.623 \n", " 1014.96,418.339 1013.67,417.967 1011.4,417.32 1009.12,416.683 1008.63,416.544 1006.85,416.055 1004.58,415.437 1002.31,414.828 1002.01,414.75 1000.03,414.228 \n", " 997.763,413.638 995.49,413.056 995.095,412.956 993.218,412.483 990.945,411.919 988.673,411.364 987.834,411.161 986.401,410.817 984.128,410.279 981.856,409.75 \n", " 980.191,409.367 979.584,409.228 977.311,408.715 975.039,408.211 972.767,407.714 972.11,407.573 970.494,407.226 968.222,406.746 965.949,406.273 963.677,405.809 \n", " 963.527,405.778 961.405,405.352 959.132,404.903 956.86,404.462 954.588,404.029 954.351,403.984 952.315,403.603 950.043,403.184 947.771,402.774 945.498,402.37 \n", " 944.464,402.19 943.226,401.974 940.954,401.586 938.681,401.204 936.409,400.83 934.136,400.463 933.708,400.395 931.864,400.104 929.592,399.751 927.319,399.405 \n", " 925.047,399.067 922.775,398.736 921.834,398.601 920.502,398.411 918.23,398.093 915.958,397.783 913.685,397.479 911.413,397.182 909.14,396.892 908.461,396.807 \n", " 906.868,396.608 904.596,396.331 902.323,396.061 900.051,395.798 897.779,395.541 895.506,395.291 893.234,395.047 892.901,395.012 890.962,394.81 888.689,394.579 \n", " 886.417,394.355 884.144,394.138 881.872,393.927 879.6,393.722 877.327,393.524 875.055,393.332 873.657,393.218 872.783,393.147 870.51,392.968 868.238,392.795 \n", " 865.966,392.628 863.693,392.468 861.421,392.314 859.148,392.167 856.876,392.025 854.604,391.89 852.331,391.761 850.059,391.639 847.787,391.522 845.751,391.424 \n", " 845.514,391.412 843.242,391.308 840.97,391.21 838.697,391.118 836.425,391.033 834.152,390.953 831.88,390.88 829.608,390.813 827.335,390.752 825.063,390.697 \n", " 822.791,390.648 820.518,390.606 818.246,390.569 815.974,390.538 813.701,390.514 811.429,390.496 809.156,390.484 806.884,390.478 804.612,390.478 802.339,390.484 \n", " 800.067,390.496 797.795,390.514 795.522,390.538 793.25,390.569 790.978,390.606 788.705,390.648 786.433,390.697 784.16,390.752 781.888,390.813 779.616,390.88 \n", " 777.343,390.953 775.071,391.033 772.799,391.118 770.526,391.21 768.254,391.308 765.982,391.412 765.745,391.424 763.709,391.522 761.437,391.639 759.164,391.761 \n", " 756.892,391.89 754.62,392.025 752.347,392.167 750.075,392.314 747.803,392.468 745.53,392.628 743.258,392.795 740.986,392.968 738.713,393.147 737.839,393.218 \n", " 736.441,393.332 734.169,393.524 731.896,393.722 729.624,393.927 727.351,394.138 725.079,394.355 722.807,394.579 720.534,394.81 718.595,395.012 718.262,395.047 \n", " 715.99,395.291 713.717,395.541 711.445,395.798 709.173,396.061 706.9,396.331 704.628,396.608 703.035,396.807 702.355,396.892 700.083,397.182 697.811,397.479 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 697.811,397.479 695.538,397.783 693.266,398.093 690.994,398.411 689.662,398.601 688.721,398.736 686.449,399.067 684.177,399.405 681.904,399.751 679.632,400.104 \n", " 677.788,400.395 677.359,400.463 675.087,400.83 672.815,401.204 670.542,401.586 668.27,401.974 667.032,402.19 665.998,402.37 663.725,402.774 661.453,403.184 \n", " 659.181,403.603 657.145,403.984 656.908,404.029 654.636,404.462 652.363,404.903 650.091,405.352 647.969,405.778 647.819,405.809 645.546,406.273 643.274,406.746 \n", " 641.002,407.226 639.386,407.573 638.729,407.714 636.457,408.211 634.185,408.715 631.912,409.228 631.305,409.367 629.64,409.75 627.367,410.279 625.095,410.817 \n", " 623.662,411.161 622.823,411.364 620.55,411.919 618.278,412.483 616.401,412.956 616.006,413.056 613.733,413.638 611.461,414.228 609.482,414.75 609.189,414.828 \n", " 606.916,415.437 604.644,416.055 602.87,416.544 602.371,416.683 600.099,417.32 597.827,417.967 596.536,418.339 595.554,418.623 593.282,419.29 591.01,419.966 \n", " 590.454,420.133 588.737,420.652 586.465,421.349 584.604,421.927 584.193,422.056 581.92,422.774 579.648,423.502 578.968,423.722 577.375,424.241 575.103,424.991 \n", " 573.531,425.516 572.831,425.751 570.558,426.524 568.286,427.307 568.277,427.31 566.014,428.103 563.741,428.91 563.198,429.105 561.469,429.729 559.197,430.561 \n", " 558.281,430.899 556.924,431.404 554.652,432.261 553.516,432.693 552.38,433.13 550.107,434.012 548.895,434.488 547.835,434.907 545.562,435.816 544.411,436.282 \n", " 543.29,436.739 541.018,437.676 540.056,438.076 538.745,438.627 536.473,439.593 535.825,439.871 534.201,440.574 531.928,441.569 531.711,441.665 529.656,442.582 \n", " 527.71,443.459 527.384,443.608 525.111,444.653 523.817,445.254 522.839,445.713 520.566,446.79 520.027,447.048 518.294,447.886 516.335,448.842 516.022,448.997 \n", " 513.749,450.129 512.74,450.637 511.477,451.279 509.236,452.431 509.205,452.447 506.932,453.638 505.822,454.225 504.66,454.848 502.492,456.02 502.388,456.077 \n", " 500.115,457.33 499.246,457.814 497.843,458.605 496.08,459.608 495.57,459.902 493.298,461.223 492.992,461.403 491.026,462.571 489.98,463.197 488.753,463.942 \n", " 487.041,464.991 486.481,465.339 484.209,466.763 484.173,466.786 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 504.408,484.729 502.388,486.17 501.896,486.523 500.115,487.828 499.451,488.318 497.843,489.528 497.072,490.112 495.57,491.273 494.758,491.906 493.298,493.067 \n", " 492.506,493.701 491.026,494.911 490.315,495.495 488.753,496.809 488.185,497.289 486.481,498.764 486.114,499.084 484.209,500.782 484.101,500.878 482.145,502.672 \n", " 481.936,502.869 480.245,504.467 479.664,505.029 478.399,506.261 477.392,507.268 476.608,508.055 475.119,509.59 474.869,509.85 473.183,511.644 472.847,512.011 \n", " 471.548,513.438 470.574,514.539 469.964,515.233 468.429,517.027 468.302,517.18 466.944,518.821 466.03,519.962 465.508,520.616 464.12,522.41 463.757,522.893 \n", " 462.779,524.204 461.485,525.998 461.484,525.999 460.237,527.793 459.213,529.322 459.035,529.587 457.879,531.382 456.94,532.896 456.767,533.176 455.7,534.97 \n", " 454.677,536.765 454.668,536.782 453.698,538.559 452.762,540.353 452.396,541.089 451.87,542.148 451.019,543.942 450.211,545.736 450.123,545.943 449.446,547.531 \n", " 448.722,549.325 448.04,551.119 447.851,551.647 447.399,552.914 446.799,554.708 446.24,556.502 445.721,558.297 445.578,558.833 445.244,560.091 444.806,561.885 \n", " 444.409,563.68 444.052,565.474 443.735,567.268 443.458,569.063 443.306,570.207 443.22,570.857 443.022,572.651 442.864,574.446 442.746,576.24 442.667,578.034 \n", " 442.627,579.829 442.627,581.623 442.667,583.417 442.746,585.212 442.864,587.006 443.022,588.8 443.22,590.595 443.306,591.245 443.458,592.389 443.735,594.183 \n", " 444.052,595.978 444.409,597.772 444.806,599.566 445.244,601.361 445.578,602.619 445.721,603.155 446.24,604.949 446.799,606.744 447.399,608.538 447.851,609.805 \n", " 448.04,610.332 448.722,612.127 449.446,613.921 450.123,615.509 450.211,615.715 451.019,617.51 451.87,619.304 452.396,620.363 452.762,621.098 453.698,622.893 \n", " 454.668,624.67 454.677,624.687 455.7,626.482 456.767,628.276 456.94,628.556 457.879,630.07 459.035,631.865 459.213,632.13 460.237,633.659 461.484,635.453 \n", " 461.485,635.454 462.779,637.248 463.757,638.559 464.12,639.042 465.508,640.836 466.03,641.49 466.944,642.631 468.302,644.272 468.429,644.425 469.964,646.219 \n", " 470.574,646.913 471.548,648.014 472.847,649.441 473.183,649.808 474.869,651.602 475.119,651.862 476.608,653.397 477.392,654.184 478.399,655.191 479.664,656.423 \n", " 480.245,656.985 481.936,658.583 482.145,658.78 484.101,660.574 484.209,660.67 486.114,662.368 486.481,662.688 488.185,664.163 488.753,664.643 490.315,665.957 \n", " 491.026,666.541 492.506,667.751 493.298,668.385 494.758,669.546 495.57,670.179 497.072,671.34 497.843,671.924 499.451,673.134 500.115,673.624 501.896,674.929 \n", " 502.388,675.282 504.408,676.723 504.66,676.899 506.932,678.478 506.989,678.517 509.205,680.018 509.642,680.312 511.477,681.523 512.368,682.106 513.749,682.995 \n", " 515.168,683.9 516.022,684.436 518.044,685.695 518.294,685.847 520.566,687.227 521.001,687.489 522.839,688.578 524.04,689.283 525.111,689.903 527.163,691.078 \n", " 527.384,691.202 529.656,692.474 530.374,692.872 531.928,693.721 533.675,694.666 534.201,694.947 536.473,696.148 537.07,696.461 538.745,697.326 540.563,698.255 \n", " 541.018,698.484 543.29,699.62 544.158,700.049 545.562,700.735 547.835,701.833 547.856,701.844 550.107,702.908 551.668,703.638 552.38,703.967 554.652,705.006 \n", " 555.593,705.432 556.924,706.028 559.197,707.033 559.639,707.227 561.469,708.019 563.741,708.991 563.812,709.021 566.014,709.944 568.119,710.815 568.286,710.884 \n", " 570.558,711.805 572.567,712.61 572.831,712.714 575.103,713.606 577.164,714.404 577.375,714.485 579.648,715.348 581.919,716.198 581.92,716.199 584.193,717.033 \n", " 586.465,717.856 586.845,717.993 588.737,718.665 591.01,719.461 591.951,719.787 593.282,720.244 595.554,721.014 597.249,721.581 597.827,721.773 600.099,722.518 \n", " 602.371,723.253 602.756,723.376 604.644,723.974 606.916,724.684 608.49,725.17 609.189,725.384 611.461,726.07 613.733,726.747 614.471,726.964 616.006,727.412 \n", " 618.278,728.066 620.55,728.711 620.721,728.759 622.823,729.343 625.095,729.966 627.27,730.553 627.367,730.579 629.64,731.18 631.912,731.772 634.154,732.347 \n", " 634.185,732.355 636.457,732.927 638.729,733.489 641.002,734.043 641.414,734.142 643.274,734.586 645.546,735.119 647.819,735.644 649.101,735.936 650.091,736.16 \n", " 652.363,736.666 654.636,737.163 656.908,737.652 657.279,737.73 659.181,738.131 661.453,738.601 663.725,739.063 665.998,739.517 666.038,739.525 668.27,739.961 \n", " 670.542,740.397 672.815,740.825 675.087,741.244 675.497,741.319 677.359,741.655 679.632,742.058 681.904,742.453 684.177,742.839 685.818,743.113 686.449,743.218 \n", " 688.721,743.588 690.994,743.951 693.266,744.305 695.538,744.652 697.246,744.908 697.811,744.992 700.083,745.323 702.355,745.646 704.628,745.962 706.9,746.271 \n", " 709.173,746.572 710.18,746.702 711.445,746.865 713.717,747.151 715.99,747.429 718.262,747.7 720.534,747.963 722.807,748.22 725.079,748.469 725.336,748.496 \n", " 727.351,748.71 729.624,748.945 731.896,749.172 734.169,749.392 736.441,749.605 738.713,749.811 740.986,750.009 743.258,750.201 744.358,750.291 745.53,750.386 \n", " 747.803,750.563 750.075,750.734 752.347,750.897 754.62,751.054 756.892,751.203 759.164,751.346 761.437,751.482 763.709,751.611 765.982,751.733 768.254,751.848 \n", " 770.526,751.957 772.799,752.058 773.442,752.085 775.071,752.153 777.343,752.241 779.616,752.322 781.888,752.396 784.16,752.463 786.433,752.524 788.705,752.578 \n", " 790.978,752.625 793.25,752.666 795.522,752.699 797.795,752.726 800.067,752.747 802.339,752.76 804.612,752.767 806.884,752.767 809.156,752.76 811.429,752.747 \n", " 813.701,752.726 815.974,752.699 818.246,752.666 820.518,752.625 822.791,752.578 825.063,752.524 827.335,752.463 829.608,752.396 831.88,752.322 834.152,752.241 \n", " 836.425,752.153 838.054,752.085 838.697,752.058 840.97,751.957 843.242,751.848 845.514,751.733 847.787,751.611 850.059,751.482 852.331,751.346 854.604,751.203 \n", " 856.876,751.054 859.148,750.897 861.421,750.734 863.693,750.563 865.966,750.386 867.138,750.291 868.238,750.201 870.51,750.009 872.783,749.811 875.055,749.605 \n", " 877.327,749.392 879.6,749.172 881.872,748.945 884.144,748.71 886.16,748.496 886.417,748.469 888.689,748.22 890.962,747.963 893.234,747.7 895.506,747.429 \n", " 897.779,747.151 900.051,746.865 901.316,746.702 902.323,746.572 904.596,746.271 906.868,745.962 909.14,745.646 911.413,745.323 913.685,744.992 914.25,744.908 \n", " 915.958,744.652 918.23,744.305 920.502,743.951 922.775,743.588 925.047,743.218 925.678,743.113 927.319,742.839 929.592,742.453 931.864,742.058 934.136,741.655 \n", " 935.999,741.319 936.409,741.244 938.681,740.825 940.954,740.397 943.226,739.961 945.458,739.525 945.498,739.517 947.771,739.063 950.043,738.601 952.315,738.131 \n", " 954.216,737.73 954.588,737.652 956.86,737.163 959.132,736.666 961.405,736.16 962.395,735.936 963.677,735.644 965.949,735.119 968.222,734.586 970.082,734.142 \n", " 970.494,734.043 972.767,733.489 975.039,732.927 977.311,732.355 977.342,732.347 979.584,731.772 981.856,731.18 984.128,730.579 984.225,730.553 986.401,729.966 \n", " 988.673,729.343 990.775,728.759 990.945,728.711 993.218,728.066 995.49,727.412 997.025,726.964 997.763,726.747 1000.03,726.07 1002.31,725.384 1003.01,725.17 \n", " 1004.58,724.684 1006.85,723.974 1008.74,723.376 1009.12,723.253 1011.4,722.518 1013.67,721.773 1014.25,721.581 1015.94,721.014 1018.21,720.244 1019.55,719.787 \n", " 1020.49,719.461 1022.76,718.665 1024.65,717.993 1025.03,717.856 1027.3,717.033 1029.58,716.199 1029.58,716.198 1031.85,715.348 1034.12,714.485 1034.33,714.404 \n", " 1036.39,713.606 1038.67,712.714 1038.93,712.61 1040.94,711.805 1043.21,710.884 1043.38,710.815 1045.48,709.944 1047.68,709.021 1047.75,708.991 1050.03,708.019 \n", " 1051.86,707.227 1052.3,707.033 1054.57,706.028 1055.9,705.432 1056.84,705.006 1059.12,703.967 1059.83,703.638 1061.39,702.908 1063.64,701.844 1063.66,701.833 \n", " 1065.93,700.735 1067.34,700.049 1068.21,699.62 1070.48,698.484 1070.93,698.255 1072.75,697.326 1074.43,696.461 1075.02,696.148 1077.3,694.947 1077.82,694.666 \n", " 1079.57,693.721 1081.12,692.872 1081.84,692.474 1084.11,691.202 1084.33,691.078 1086.38,689.903 1087.46,689.283 1088.66,688.578 1090.49,687.489 1090.93,687.227 \n", " 1093.2,685.847 1093.45,685.695 1095.47,684.436 1096.33,683.9 1097.75,682.995 1099.13,682.106 1100.02,681.523 1101.85,680.312 1102.29,680.018 1104.51,678.517 \n", " 1104.56,678.478 1106.84,676.899 1107.09,676.723 1109.11,675.282 1109.6,674.929 1111.38,673.624 1112.04,673.134 1113.65,671.924 1114.42,671.34 1115.93,670.179 \n", " 1116.74,669.546 1118.2,668.385 1118.99,667.751 1120.47,666.541 1121.18,665.957 1122.74,664.643 1123.31,664.163 1125.01,662.688 1125.38,662.368 1127.29,660.67 \n", " 1127.39,660.574 1129.35,658.78 1129.56,658.583 1131.25,656.985 1131.83,656.423 1133.1,655.191 1134.1,654.184 1134.89,653.397 1136.38,651.862 1136.63,651.602 \n", " 1138.31,649.808 1138.65,649.441 1139.95,648.014 1140.92,646.913 1141.53,646.219 1143.07,644.425 1143.19,644.272 1144.55,642.631 1145.47,641.49 1145.99,640.836 \n", " 1147.38,639.042 1147.74,638.559 1148.72,637.248 1150.01,635.454 1150.01,635.453 1151.26,633.659 1152.28,632.13 1152.46,631.865 1153.62,630.07 1154.56,628.556 \n", " 1154.73,628.276 1155.8,626.482 1156.82,624.687 1156.83,624.67 1157.8,622.893 1158.73,621.098 1159.1,620.363 1159.63,619.304 1160.48,617.51 1161.28,615.715 \n", " 1161.37,615.509 1162.05,613.921 1162.77,612.127 1163.46,610.332 1163.65,609.805 1164.1,608.538 1164.7,606.744 1165.26,604.949 1165.77,603.155 1165.92,602.619 \n", " 1166.25,601.361 1166.69,599.566 1167.09,597.772 1167.44,595.978 1167.76,594.183 1168.04,592.389 1168.19,591.245 1168.28,590.595 1168.47,588.8 1168.63,587.006 \n", " 1168.75,585.212 1168.83,583.417 1168.87,581.623 1168.87,579.829 1168.83,578.034 1168.75,576.24 1168.63,574.446 1168.47,572.651 1168.28,570.857 1168.19,570.207 \n", " 1168.04,569.063 1167.76,567.268 1167.44,565.474 1167.09,563.68 1166.69,561.885 1166.25,560.091 1165.92,558.833 1165.77,558.297 1165.26,556.502 1164.7,554.708 \n", " 1164.1,552.914 1163.65,551.647 1163.46,551.119 1162.77,549.325 1162.05,547.531 1161.37,545.943 1161.28,545.736 1160.48,543.942 1159.63,542.148 1159.1,541.089 \n", " 1158.73,540.353 1157.8,538.559 1156.83,536.782 1156.82,536.765 1155.8,534.97 1154.73,533.176 1154.56,532.896 1153.62,531.382 1152.46,529.587 1152.28,529.322 \n", " 1151.26,527.793 1150.01,525.999 1150.01,525.998 1148.72,524.204 1147.74,522.893 1147.38,522.41 1145.99,520.616 1145.47,519.962 1144.55,518.821 1143.19,517.18 \n", " 1143.07,517.027 1141.53,515.233 1140.92,514.539 1139.95,513.438 1138.65,512.011 1138.31,511.644 1136.63,509.85 1136.38,509.59 1134.89,508.055 1134.1,507.268 \n", " 1133.1,506.261 1131.83,505.029 1131.25,504.467 1129.56,502.869 1129.35,502.672 1127.39,500.878 1127.29,500.782 1125.38,499.084 1125.01,498.764 1123.31,497.289 \n", " 1122.74,496.809 1121.18,495.495 1120.47,494.911 1118.99,493.701 1118.2,493.067 1116.74,491.906 1115.93,491.273 1114.42,490.112 1113.65,489.528 1112.04,488.318 \n", " 1111.38,487.828 1109.6,486.523 1109.11,486.17 1107.09,484.729 1106.84,484.553 1104.56,482.974 1104.51,482.935 1102.29,481.434 1101.85,481.14 1100.02,479.929 \n", " 1099.13,479.346 1097.75,478.457 1096.33,477.552 1095.47,477.016 1093.45,475.757 1093.2,475.605 1090.93,474.225 1090.49,473.963 1088.66,472.874 1087.46,472.169 \n", " 1086.38,471.549 1084.33,470.374 1084.11,470.25 1081.84,468.978 1081.12,468.58 1079.57,467.731 1077.82,466.786 1077.3,466.505 1075.02,465.304 1074.43,464.991 \n", " 1072.75,464.126 1070.93,463.197 1070.48,462.968 1068.21,461.832 1067.34,461.403 1065.93,460.716 1063.66,459.619 1063.64,459.608 1061.39,458.544 1059.83,457.814 \n", " 1059.12,457.485 1056.84,456.446 1055.9,456.02 1054.57,455.424 1052.3,454.419 1051.86,454.225 1050.03,453.433 1047.75,452.461 1047.68,452.431 1045.48,451.508 \n", " 1043.38,450.637 1043.21,450.568 1040.94,449.647 1038.93,448.842 1038.67,448.738 1036.39,447.846 1034.33,447.048 1034.12,446.967 1031.85,446.104 1029.58,445.254 \n", " 1029.58,445.253 1027.3,444.419 1025.03,443.596 1024.65,443.459 1022.76,442.787 1020.49,441.991 1019.55,441.665 1018.21,441.208 1015.94,440.438 1014.25,439.871 \n", " 1013.67,439.679 1011.4,438.934 1009.12,438.199 1008.74,438.076 1006.85,437.478 1004.58,436.768 1003.01,436.282 1002.31,436.068 1000.03,435.381 997.763,434.705 \n", " 997.025,434.488 995.49,434.04 993.218,433.385 990.945,432.741 990.775,432.693 988.673,432.109 986.401,431.486 984.225,430.899 984.128,430.873 981.856,430.272 \n", " 979.584,429.68 977.342,429.105 977.311,429.097 975.039,428.525 972.767,427.963 970.494,427.409 970.082,427.31 968.222,426.866 965.949,426.333 963.677,425.808 \n", " 962.395,425.516 961.405,425.292 959.132,424.786 956.86,424.289 954.588,423.8 954.216,423.722 952.315,423.321 950.043,422.851 947.771,422.389 945.498,421.935 \n", " 945.458,421.927 943.226,421.491 940.954,421.055 938.681,420.627 936.409,420.208 935.999,420.133 934.136,419.797 931.864,419.394 929.592,418.999 927.319,418.613 \n", " 925.678,418.339 925.047,418.234 922.775,417.864 920.502,417.501 918.23,417.146 915.958,416.8 914.25,416.544 913.685,416.46 911.413,416.129 909.14,415.806 \n", " 906.868,415.49 904.596,415.181 902.323,414.88 901.316,414.75 900.051,414.587 897.779,414.301 895.506,414.023 893.234,413.752 890.962,413.489 888.689,413.232 \n", " 886.417,412.983 886.16,412.956 884.144,412.742 881.872,412.507 879.6,412.28 877.327,412.06 875.055,411.847 872.783,411.641 870.51,411.443 868.238,411.251 \n", " 867.138,411.161 865.966,411.066 863.693,410.889 861.421,410.718 859.148,410.555 856.876,410.398 854.604,410.249 852.331,410.106 850.059,409.97 847.787,409.841 \n", " 845.514,409.719 843.242,409.604 840.97,409.495 838.697,409.394 838.054,409.367 836.425,409.299 834.152,409.211 831.88,409.13 829.608,409.056 827.335,408.989 \n", " 825.063,408.928 822.791,408.874 820.518,408.827 818.246,408.786 815.974,408.753 813.701,408.726 811.429,408.705 809.156,408.692 806.884,408.685 804.612,408.685 \n", " 802.339,408.692 800.067,408.705 797.795,408.726 795.522,408.753 793.25,408.786 790.978,408.827 788.705,408.874 786.433,408.928 784.16,408.989 781.888,409.056 \n", " 779.616,409.13 777.343,409.211 775.071,409.299 773.442,409.367 772.799,409.394 770.526,409.495 768.254,409.604 765.982,409.719 763.709,409.841 761.437,409.97 \n", " 759.164,410.106 756.892,410.249 754.62,410.398 752.347,410.555 750.075,410.718 747.803,410.889 745.53,411.066 744.358,411.161 743.258,411.251 740.986,411.443 \n", " 738.713,411.641 736.441,411.847 734.169,412.06 731.896,412.28 729.624,412.507 727.351,412.742 725.336,412.956 725.079,412.983 722.807,413.232 720.534,413.489 \n", " 718.262,413.752 715.99,414.023 713.717,414.301 711.445,414.587 710.18,414.75 709.173,414.88 706.9,415.181 704.628,415.49 702.355,415.806 700.083,416.129 \n", " 697.811,416.46 697.246,416.544 695.538,416.8 693.266,417.146 690.994,417.501 688.721,417.864 686.449,418.234 685.818,418.339 684.177,418.613 681.904,418.999 \n", " 679.632,419.394 677.359,419.797 675.497,420.133 675.087,420.208 672.815,420.627 670.542,421.055 668.27,421.491 666.038,421.927 665.998,421.935 663.725,422.389 \n", " 661.453,422.851 659.181,423.321 657.279,423.722 656.908,423.8 654.636,424.289 652.363,424.786 650.091,425.292 649.101,425.516 647.819,425.808 645.546,426.333 \n", " 643.274,426.866 641.414,427.31 641.002,427.409 638.729,427.963 636.457,428.525 634.185,429.097 634.154,429.105 631.912,429.68 629.64,430.272 627.367,430.873 \n", " 627.27,430.899 625.095,431.486 622.823,432.109 620.721,432.693 620.55,432.741 618.278,433.385 616.006,434.04 614.471,434.488 613.733,434.705 611.461,435.381 \n", " 609.189,436.068 608.49,436.282 606.916,436.768 604.644,437.478 602.756,438.076 602.371,438.199 600.099,438.934 597.827,439.679 597.249,439.871 595.554,440.438 \n", " 593.282,441.208 591.951,441.665 591.01,441.991 588.737,442.787 586.845,443.459 586.465,443.596 584.193,444.419 581.92,445.253 581.919,445.254 579.648,446.104 \n", " 577.375,446.967 577.164,447.048 575.103,447.846 572.831,448.738 572.567,448.842 570.558,449.647 568.286,450.568 568.119,450.637 566.014,451.508 563.812,452.431 \n", " 563.741,452.461 561.469,453.433 559.639,454.225 559.197,454.419 556.924,455.424 555.593,456.02 554.652,456.446 552.38,457.485 551.668,457.814 550.107,458.544 \n", " 547.856,459.608 547.835,459.619 545.562,460.716 544.158,461.403 543.29,461.832 541.018,462.968 540.563,463.197 538.745,464.126 537.07,464.991 536.473,465.304 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 536.473,465.304 534.201,466.505 533.675,466.786 531.928,467.731 530.374,468.58 529.656,468.978 527.384,470.25 527.163,470.374 525.111,471.549 524.04,472.169 \n", " 522.839,472.874 521.001,473.963 520.566,474.225 518.294,475.605 518.044,475.757 516.022,477.016 515.168,477.552 513.749,478.457 512.368,479.346 511.477,479.929 \n", " 509.642,481.14 509.205,481.434 506.989,482.935 506.932,482.974 504.66,484.553 504.408,484.729 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 526.33,502.672 525.111,503.663 524.131,504.467 522.839,505.551 522,506.261 520.566,507.504 519.935,508.055 518.294,509.525 517.934,509.85 516.022,511.621 \n", " 515.996,511.644 514.122,513.438 513.749,513.805 512.308,515.233 511.477,516.08 510.554,517.027 509.205,518.452 508.857,518.821 507.219,520.616 506.932,520.94 \n", " 505.638,522.41 504.66,523.558 504.113,524.204 502.642,525.999 502.388,526.32 501.226,527.793 500.115,529.254 499.863,529.587 498.553,531.382 497.843,532.392 \n", " 497.295,533.176 496.088,534.97 495.57,535.772 494.932,536.765 493.826,538.559 493.298,539.455 492.771,540.353 491.764,542.148 491.026,543.529 490.806,543.942 \n", " 489.897,545.736 489.035,547.531 488.753,548.149 488.221,549.325 487.454,551.119 486.733,552.914 486.481,553.584 486.06,554.708 485.432,556.502 484.851,558.297 \n", " 484.314,560.091 484.209,560.477 483.824,561.885 483.379,563.68 482.979,565.474 482.624,567.268 482.313,569.063 482.047,570.857 481.936,571.75 481.825,572.651 \n", " 481.648,574.446 481.516,576.24 481.427,578.034 481.383,579.829 481.383,581.623 481.427,583.417 481.516,585.212 481.648,587.006 481.825,588.8 481.936,589.702 \n", " 482.047,590.595 482.313,592.389 482.624,594.183 482.979,595.978 483.379,597.772 483.824,599.566 484.209,600.975 484.314,601.361 484.851,603.155 485.432,604.949 \n", " 486.06,606.744 486.481,607.867 486.733,608.538 487.454,610.332 488.221,612.127 488.753,613.303 489.035,613.921 489.897,615.715 490.806,617.51 491.026,617.923 \n", " 491.764,619.304 492.771,621.098 493.298,621.997 493.826,622.893 494.932,624.687 495.57,625.68 496.088,626.482 497.295,628.276 497.843,629.06 498.553,630.07 \n", " 499.863,631.865 500.115,632.198 501.226,633.659 502.388,635.132 502.642,635.453 504.113,637.248 504.66,637.894 505.638,639.042 506.932,640.512 507.219,640.836 \n", " 508.857,642.631 509.205,643 510.554,644.425 511.477,645.372 512.308,646.219 513.749,647.647 514.122,648.014 515.996,649.808 516.022,649.831 517.934,651.602 \n", " 518.294,651.927 519.935,653.397 520.566,653.948 522,655.191 522.839,655.901 524.131,656.985 525.111,657.789 526.33,658.78 527.384,659.617 528.598,660.574 \n", " 529.656,661.39 530.936,662.368 531.928,663.11 533.348,664.163 534.201,664.782 535.834,665.957 536.473,666.407 538.396,667.751 538.745,667.99 541.018,669.532 \n", " 541.038,669.546 543.29,671.032 543.762,671.34 545.562,672.495 546.569,673.134 547.835,673.923 549.463,674.929 550.107,675.319 552.38,676.683 552.446,676.723 \n", " 554.652,678.013 555.524,678.517 556.924,679.314 558.696,680.312 559.197,680.589 561.469,681.834 561.969,682.106 563.741,683.052 565.346,683.9 566.014,684.247 \n", " 568.286,685.416 568.832,685.695 570.558,686.56 572.431,687.489 572.831,687.684 575.103,688.783 576.15,689.283 577.375,689.861 579.648,690.919 579.992,691.078 \n", " 581.92,691.954 583.966,692.872 584.193,692.972 586.465,693.968 588.08,694.666 588.737,694.947 591.01,695.906 592.339,696.461 593.282,696.849 595.554,697.773 \n", " 596.753,698.255 597.827,698.681 600.099,699.572 601.333,700.049 602.371,700.446 604.644,701.305 606.09,701.844 606.916,702.148 609.189,702.975 611.035,703.638 \n", " 611.461,703.789 613.733,704.586 616.006,705.371 616.186,705.432 618.278,706.139 620.55,706.895 621.56,707.227 622.823,707.637 625.095,708.365 627.173,709.021 \n", " 627.367,709.082 629.64,709.783 631.912,710.473 633.055,710.815 634.185,711.15 636.457,711.815 638.729,712.468 639.228,712.61 641.002,713.108 643.274,713.737 \n", " 645.546,714.355 645.727,714.404 647.819,714.96 650.091,715.555 652.363,716.139 652.598,716.198 654.636,716.71 656.908,717.272 659.181,717.823 659.891,717.993 \n", " 661.453,718.363 663.725,718.892 665.998,719.411 667.67,719.787 668.27,719.921 670.542,720.419 672.815,720.907 675.087,721.387 676.027,721.581 677.359,721.855 \n", " 679.632,722.314 681.904,722.764 684.177,723.204 685.077,723.376 686.449,723.635 688.721,724.055 690.994,724.467 693.266,724.87 694.993,725.17 695.538,725.264 \n", " 697.811,725.648 700.083,726.023 702.355,726.39 704.628,726.748 706.035,726.964 706.9,727.097 709.173,727.436 711.445,727.768 713.717,728.09 715.99,728.405 \n", " 718.262,728.711 718.622,728.759 720.534,729.008 722.807,729.297 725.079,729.577 727.351,729.85 729.624,730.114 731.896,730.37 733.57,730.553 734.169,730.618 \n", " 736.441,730.857 738.713,731.088 740.986,731.312 743.258,731.527 745.53,731.734 747.803,731.934 750.075,732.126 752.347,732.31 752.833,732.347 754.62,732.485 \n", " 756.892,732.653 759.164,732.813 761.437,732.965 763.709,733.11 765.982,733.247 768.254,733.376 770.526,733.497 772.799,733.611 775.071,733.717 777.343,733.816 \n", " 779.616,733.907 781.888,733.99 784.16,734.066 786.433,734.134 786.724,734.142 788.705,734.194 790.978,734.247 793.25,734.292 795.522,734.33 797.795,734.36 \n", " 800.067,734.383 802.339,734.398 804.612,734.405 806.884,734.405 809.156,734.398 811.429,734.383 813.701,734.36 815.974,734.33 818.246,734.292 820.518,734.247 \n", " 822.791,734.194 824.772,734.142 825.063,734.134 827.335,734.066 829.608,733.99 831.88,733.907 834.152,733.816 836.425,733.717 838.697,733.611 840.97,733.497 \n", " 843.242,733.376 845.514,733.247 847.787,733.11 850.059,732.965 852.331,732.813 854.604,732.653 856.876,732.485 858.663,732.347 859.148,732.31 861.421,732.126 \n", " 863.693,731.934 865.966,731.734 868.238,731.527 870.51,731.312 872.783,731.088 875.055,730.857 877.327,730.618 877.925,730.553 879.6,730.37 881.872,730.114 \n", " 884.144,729.85 886.417,729.577 888.689,729.297 890.962,729.008 892.874,728.759 893.234,728.711 895.506,728.405 897.779,728.09 900.051,727.768 902.323,727.436 \n", " 904.596,727.097 905.461,726.964 906.868,726.748 909.14,726.39 911.413,726.023 913.685,725.648 915.958,725.264 916.503,725.17 918.23,724.87 920.502,724.467 \n", " 922.775,724.055 925.047,723.635 926.418,723.376 927.319,723.204 929.592,722.764 931.864,722.314 934.136,721.855 935.469,721.581 936.409,721.387 938.681,720.907 \n", " 940.954,720.419 943.226,719.921 943.826,719.787 945.498,719.411 947.771,718.892 950.043,718.363 951.605,717.993 952.315,717.823 954.588,717.272 956.86,716.71 \n", " 958.898,716.198 959.132,716.139 961.405,715.555 963.677,714.96 965.769,714.404 965.949,714.355 968.222,713.737 970.494,713.108 972.268,712.61 972.767,712.468 \n", " 975.039,711.815 977.311,711.15 978.441,710.815 979.584,710.473 981.856,709.783 984.128,709.082 984.323,709.021 986.401,708.365 988.673,707.637 989.936,707.227 \n", " 990.945,706.895 993.218,706.139 995.31,705.432 995.49,705.371 997.763,704.586 1000.03,703.789 1000.46,703.638 1002.31,702.975 1004.58,702.148 1005.41,701.844 \n", " 1006.85,701.305 1009.12,700.446 1010.16,700.049 1011.4,699.572 1013.67,698.681 1014.74,698.255 1015.94,697.773 1018.21,696.849 1019.16,696.461 1020.49,695.906 \n", " 1022.76,694.947 1023.42,694.666 1025.03,693.968 1027.3,692.972 1027.53,692.872 1029.58,691.954 1031.5,691.078 1031.85,690.919 1034.12,689.861 1035.35,689.283 \n", " 1036.39,688.783 1038.67,687.684 1039.06,687.489 1040.94,686.56 1042.66,685.695 1043.21,685.416 1045.48,684.247 1046.15,683.9 1047.75,683.052 1049.53,682.106 \n", " 1050.03,681.834 1052.3,680.589 1052.8,680.312 1054.57,679.314 1055.97,678.517 1056.84,678.013 1059.05,676.723 1059.12,676.683 1061.39,675.319 1062.03,674.929 \n", " 1063.66,673.923 1064.93,673.134 1065.93,672.495 1067.73,671.34 1068.21,671.032 1070.46,669.546 1070.48,669.532 1072.75,667.99 1073.1,667.751 1075.02,666.407 \n", " 1075.66,665.957 1077.3,664.782 1078.15,664.163 1079.57,663.11 1080.56,662.368 1081.84,661.39 1082.9,660.574 1084.11,659.617 1085.17,658.78 1086.38,657.789 \n", " 1087.36,656.985 1088.66,655.901 1089.5,655.191 1090.93,653.948 1091.56,653.397 1093.2,651.927 1093.56,651.602 1095.47,649.831 1095.5,649.808 1097.37,648.014 \n", " 1097.75,647.647 1099.19,646.219 1100.02,645.372 1100.94,644.425 1102.29,643 1102.64,642.631 1104.28,640.836 1104.56,640.512 1105.86,639.042 1106.84,637.894 \n", " 1107.38,637.248 1108.85,635.453 1109.11,635.132 1110.27,633.659 1111.38,632.198 1111.63,631.865 1112.94,630.07 1113.65,629.06 1114.2,628.276 1115.41,626.482 \n", " 1115.93,625.68 1116.56,624.687 1117.67,622.893 1118.2,621.997 1118.73,621.098 1119.73,619.304 1120.47,617.923 1120.69,617.51 1121.6,615.715 1122.46,613.921 \n", " 1122.74,613.303 1123.28,612.127 1124.04,610.332 1124.76,608.538 1125.01,607.867 1125.44,606.744 1126.06,604.949 1126.65,603.155 1127.18,601.361 1127.29,600.975 \n", " 1127.67,599.566 1128.12,597.772 1128.52,595.978 1128.87,594.183 1129.18,592.389 1129.45,590.595 1129.56,589.702 1129.67,588.8 1129.85,587.006 1129.98,585.212 \n", " 1130.07,583.417 1130.11,581.623 1130.11,579.829 1130.07,578.034 1129.98,576.24 1129.85,574.446 1129.67,572.651 1129.56,571.75 1129.45,570.857 1129.18,569.063 \n", " 1128.87,567.268 1128.52,565.474 1128.12,563.68 1127.67,561.885 1127.29,560.477 1127.18,560.091 1126.65,558.297 1126.06,556.502 1125.44,554.708 1125.01,553.584 \n", " 1124.76,552.914 1124.04,551.119 1123.28,549.325 1122.74,548.149 1122.46,547.531 1121.6,545.736 1120.69,543.942 1120.47,543.529 1119.73,542.148 1118.73,540.353 \n", " 1118.2,539.455 1117.67,538.559 1116.56,536.765 1115.93,535.772 1115.41,534.97 1114.2,533.176 1113.65,532.392 1112.94,531.382 1111.63,529.587 1111.38,529.254 \n", " 1110.27,527.793 1109.11,526.32 1108.85,525.999 1107.38,524.204 1106.84,523.558 1105.86,522.41 1104.56,520.94 1104.28,520.616 1102.64,518.821 1102.29,518.452 \n", " 1100.94,517.027 1100.02,516.08 1099.19,515.233 1097.75,513.805 1097.37,513.438 1095.5,511.644 1095.47,511.621 1093.56,509.85 1093.2,509.525 1091.56,508.055 \n", " 1090.93,507.504 1089.5,506.261 1088.66,505.551 1087.36,504.467 1086.38,503.663 1085.17,502.672 1084.11,501.835 1082.9,500.878 1081.84,500.062 1080.56,499.084 \n", " 1079.57,498.342 1078.15,497.289 1077.3,496.67 1075.66,495.495 1075.02,495.045 1073.1,493.701 1072.75,493.462 1070.48,491.92 1070.46,491.906 1068.21,490.42 \n", " 1067.73,490.112 1065.93,488.957 1064.93,488.318 1063.66,487.529 1062.03,486.523 1061.39,486.133 1059.12,484.769 1059.05,484.729 1056.84,483.439 1055.97,482.935 \n", " 1054.57,482.138 1052.8,481.14 1052.3,480.863 1050.03,479.617 1049.53,479.346 1047.75,478.399 1046.15,477.552 1045.48,477.205 1043.21,476.035 1042.66,475.757 \n", " 1040.94,474.891 1039.06,473.963 1038.67,473.768 1036.39,472.669 1035.35,472.169 1034.12,471.591 1031.85,470.533 1031.5,470.374 1029.58,469.498 1027.53,468.58 \n", " 1027.3,468.48 1025.03,467.484 1023.42,466.786 1022.76,466.505 1020.49,465.546 1019.16,464.991 1018.21,464.603 1015.94,463.679 1014.74,463.197 1013.67,462.771 \n", " 1011.4,461.88 1010.16,461.403 1009.12,461.006 1006.85,460.147 1005.41,459.608 1004.58,459.304 1002.31,458.477 1000.46,457.814 1000.03,457.663 997.763,456.866 \n", " 995.49,456.081 995.31,456.02 993.218,455.313 990.945,454.557 989.936,454.225 988.673,453.815 986.401,453.087 984.323,452.431 984.128,452.37 981.856,451.669 \n", " 979.584,450.979 978.441,450.637 977.311,450.302 975.039,449.637 972.767,448.984 972.268,448.842 970.494,448.344 968.222,447.715 965.949,447.097 965.769,447.048 \n", " 963.677,446.492 961.405,445.897 959.132,445.313 958.898,445.254 956.86,444.742 954.588,444.18 952.315,443.629 951.605,443.459 950.043,443.089 947.771,442.56 \n", " 945.498,442.041 943.826,441.665 943.226,441.531 940.954,441.033 938.681,440.545 936.409,440.065 935.469,439.871 934.136,439.597 931.864,439.138 929.592,438.688 \n", " 927.319,438.248 926.418,438.076 925.047,437.817 922.775,437.397 920.502,436.985 918.23,436.582 916.503,436.282 915.958,436.188 913.685,435.804 911.413,435.429 \n", " 909.14,435.062 906.868,434.704 905.461,434.488 904.596,434.355 902.323,434.016 900.051,433.684 897.779,433.361 895.506,433.047 893.234,432.741 892.874,432.693 \n", " 890.962,432.444 888.689,432.155 886.417,431.875 884.144,431.602 881.872,431.338 879.6,431.082 877.925,430.899 877.327,430.834 875.055,430.595 872.783,430.364 \n", " 870.51,430.14 868.238,429.925 865.966,429.718 863.693,429.518 861.421,429.326 859.148,429.142 858.663,429.105 856.876,428.967 854.604,428.799 852.331,428.639 \n", " 850.059,428.487 847.787,428.342 845.514,428.205 843.242,428.076 840.97,427.955 838.697,427.841 836.425,427.735 834.152,427.636 831.88,427.545 829.608,427.462 \n", " 827.335,427.386 825.063,427.318 824.772,427.31 822.791,427.258 820.518,427.205 818.246,427.16 815.974,427.122 813.701,427.092 811.429,427.069 809.156,427.054 \n", " 806.884,427.047 804.612,427.047 802.339,427.054 800.067,427.069 797.795,427.092 795.522,427.122 793.25,427.16 790.978,427.205 788.705,427.258 786.724,427.31 \n", " 786.433,427.318 784.16,427.386 781.888,427.462 779.616,427.545 777.343,427.636 775.071,427.735 772.799,427.841 770.526,427.955 768.254,428.076 765.982,428.205 \n", " 763.709,428.342 761.437,428.487 759.164,428.639 756.892,428.799 754.62,428.967 752.833,429.105 752.347,429.142 750.075,429.326 747.803,429.518 745.53,429.718 \n", " 743.258,429.925 740.986,430.14 738.713,430.364 736.441,430.595 734.169,430.834 733.57,430.899 731.896,431.082 729.624,431.338 727.351,431.602 725.079,431.875 \n", " 722.807,432.155 720.534,432.444 718.622,432.693 718.262,432.741 715.99,433.047 713.717,433.361 711.445,433.684 709.173,434.016 706.9,434.355 706.035,434.488 \n", " 704.628,434.704 702.355,435.062 700.083,435.429 697.811,435.804 695.538,436.188 694.993,436.282 693.266,436.582 690.994,436.985 688.721,437.397 686.449,437.817 \n", " 685.077,438.076 684.177,438.248 681.904,438.688 679.632,439.138 677.359,439.597 676.027,439.871 675.087,440.065 672.815,440.545 670.542,441.033 668.27,441.531 \n", " 667.67,441.665 665.998,442.041 663.725,442.56 661.453,443.089 659.891,443.459 659.181,443.629 656.908,444.18 654.636,444.742 652.598,445.254 652.363,445.313 \n", " 650.091,445.897 647.819,446.492 645.727,447.048 645.546,447.097 643.274,447.715 641.002,448.344 639.228,448.842 638.729,448.984 636.457,449.637 634.185,450.302 \n", " 633.055,450.637 631.912,450.979 629.64,451.669 627.367,452.37 627.173,452.431 625.095,453.087 622.823,453.815 621.56,454.225 620.55,454.557 618.278,455.313 \n", " 616.186,456.02 616.006,456.081 613.733,456.866 611.461,457.663 611.035,457.814 609.189,458.477 606.916,459.304 606.09,459.608 604.644,460.147 602.371,461.006 \n", " 601.333,461.403 600.099,461.88 597.827,462.771 596.753,463.197 595.554,463.679 593.282,464.603 592.339,464.991 591.01,465.546 588.737,466.505 588.08,466.786 \n", " 586.465,467.484 584.193,468.48 583.966,468.58 581.92,469.498 579.992,470.374 579.648,470.533 577.375,471.591 576.15,472.169 575.103,472.669 572.831,473.768 \n", " 572.431,473.963 570.558,474.891 568.832,475.757 568.286,476.035 566.014,477.205 565.346,477.552 563.741,478.399 561.969,479.346 561.469,479.617 559.197,480.863 \n", " 558.696,481.14 556.924,482.138 555.524,482.935 554.652,483.439 552.446,484.729 552.38,484.769 550.107,486.133 549.463,486.523 547.835,487.529 546.569,488.318 \n", " 545.562,488.957 543.762,490.112 543.29,490.42 541.038,491.906 541.018,491.92 538.745,493.462 538.396,493.701 536.473,495.045 535.834,495.495 534.201,496.67 \n", " 533.348,497.289 531.928,498.342 530.936,499.084 529.656,500.062 528.598,500.878 527.384,501.835 526.33,502.672 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 551.29,520.616 550.107,521.757 549.436,522.41 547.835,524.018 547.651,524.204 545.934,525.999 545.562,526.4 544.284,527.793 543.29,528.914 542.697,529.587 \n", " 541.174,531.382 541.018,531.573 539.715,533.176 538.745,534.418 538.317,534.97 536.979,536.765 536.473,537.473 535.702,538.559 534.482,540.353 534.201,540.787 \n", " 533.322,542.148 532.218,543.942 531.928,544.437 531.172,545.736 530.181,547.531 529.656,548.535 529.245,549.325 528.365,551.119 527.538,552.914 527.384,553.273 \n", " 526.767,554.708 526.048,556.502 525.382,558.297 525.111,559.086 524.768,560.091 524.208,561.885 523.699,563.68 523.241,565.474 522.839,567.251 522.835,567.268 \n", " 522.481,569.063 522.177,570.857 521.925,572.651 521.723,574.446 521.571,576.24 521.47,578.034 521.42,579.829 521.42,581.623 521.47,583.417 521.571,585.212 \n", " 521.723,587.006 521.925,588.8 522.177,590.595 522.481,592.389 522.835,594.183 522.839,594.201 523.241,595.978 523.699,597.772 524.208,599.566 524.768,601.361 \n", " 525.111,602.366 525.382,603.155 526.048,604.949 526.767,606.744 527.384,608.179 527.538,608.538 528.365,610.332 529.245,612.127 529.656,612.917 530.181,613.921 \n", " 531.172,615.715 531.928,617.015 532.218,617.51 533.322,619.304 534.201,620.665 534.482,621.098 535.702,622.893 536.473,623.979 536.979,624.687 538.317,626.482 \n", " 538.745,627.034 539.715,628.276 541.018,629.879 541.174,630.07 542.697,631.865 543.29,632.538 544.284,633.659 545.562,635.052 545.934,635.453 547.651,637.248 \n", " 547.835,637.434 549.436,639.042 550.107,639.695 551.29,640.836 552.38,641.856 553.213,642.631 554.652,643.927 555.209,644.425 556.924,645.915 557.278,646.219 \n", " 559.197,647.826 559.423,648.014 561.469,649.666 561.646,649.808 563.741,651.442 563.948,651.602 566.014,653.158 566.333,653.397 568.286,654.819 568.802,655.191 \n", " 570.558,656.427 571.359,656.985 572.831,657.988 574.006,658.78 575.103,659.503 576.745,660.574 577.375,660.976 579.58,662.368 579.648,662.41 581.92,663.801 \n", " 582.517,664.163 584.193,665.156 585.558,665.957 586.465,666.478 588.706,667.751 588.737,667.769 591.01,669.022 591.97,669.546 593.282,670.247 595.351,671.34 \n", " 595.554,671.446 597.827,672.612 598.858,673.134 600.099,673.752 602.371,674.869 602.493,674.929 604.644,675.956 606.27,676.723 606.916,677.023 609.189,678.064 \n", " 610.192,678.517 611.461,679.082 613.733,680.08 614.268,680.312 616.006,681.054 618.278,682.01 618.509,682.106 620.55,682.942 622.823,683.859 622.927,683.9 \n", " 625.095,684.752 627.367,685.63 627.536,685.695 629.64,686.487 631.912,687.329 632.35,687.489 634.185,688.15 636.457,688.957 637.388,689.283 638.729,689.747 \n", " 641.002,690.52 642.667,691.078 643.274,691.278 645.546,692.019 647.819,692.747 648.214,692.872 650.091,693.458 652.363,694.155 654.059,694.666 654.636,694.838 \n", " 656.908,695.505 659.181,696.161 660.237,696.461 661.453,696.801 663.725,697.428 665.998,698.043 666.792,698.255 668.27,698.644 670.542,699.232 672.815,699.808 \n", " 673.781,700.049 675.087,700.371 677.359,700.922 679.632,701.461 681.275,701.844 681.904,701.989 684.177,702.502 686.449,703.006 688.721,703.499 689.374,703.638 \n", " 690.994,703.979 693.266,704.448 695.538,704.906 697.811,705.354 698.213,705.432 700.083,705.79 702.355,706.215 704.628,706.63 706.9,707.035 707.998,707.227 \n", " 709.173,707.429 711.445,707.812 713.717,708.185 715.99,708.549 718.262,708.903 719.039,709.021 720.534,709.246 722.807,709.578 725.079,709.902 727.351,710.216 \n", " 729.624,710.52 731.896,710.815 731.896,710.815 734.169,711.099 736.441,711.374 738.713,711.64 740.986,711.896 743.258,712.144 745.53,712.382 747.784,712.61 \n", " 747.803,712.611 750.075,712.83 752.347,713.04 754.62,713.241 756.892,713.434 759.164,713.617 761.437,713.791 763.709,713.957 765.982,714.114 768.254,714.262 \n", " 770.526,714.401 770.577,714.404 772.799,714.531 775.071,714.652 777.343,714.764 779.616,714.867 781.888,714.962 784.16,715.048 786.433,715.126 788.705,715.195 \n", " 790.978,715.255 793.25,715.307 795.522,715.35 797.795,715.385 800.067,715.41 802.339,715.428 804.612,715.436 806.884,715.436 809.156,715.428 811.429,715.41 \n", " 813.701,715.385 815.974,715.35 818.246,715.307 820.518,715.255 822.791,715.195 825.063,715.126 827.335,715.048 829.608,714.962 831.88,714.867 834.152,714.764 \n", " 836.425,714.652 838.697,714.531 840.919,714.404 840.97,714.401 843.242,714.262 845.514,714.114 847.787,713.957 850.059,713.791 852.331,713.617 854.604,713.434 \n", " 856.876,713.241 859.148,713.04 861.421,712.83 863.693,712.611 863.712,712.61 865.966,712.382 868.238,712.144 870.51,711.896 872.783,711.64 875.055,711.374 \n", " 877.327,711.099 879.6,710.815 879.6,710.815 881.872,710.52 884.144,710.216 886.417,709.902 888.689,709.578 890.962,709.246 892.457,709.021 893.234,708.903 \n", " 895.506,708.549 897.779,708.185 900.051,707.812 902.323,707.429 903.498,707.227 904.596,707.035 906.868,706.63 909.14,706.215 911.413,705.79 913.282,705.432 \n", " 913.685,705.354 915.958,704.906 918.23,704.448 920.502,703.979 922.121,703.638 922.775,703.499 925.047,703.006 927.319,702.502 929.592,701.989 930.221,701.844 \n", " 931.864,701.461 934.136,700.922 936.409,700.371 937.715,700.049 938.681,699.808 940.954,699.232 943.226,698.644 944.704,698.255 945.498,698.043 947.771,697.428 \n", " 950.043,696.801 951.259,696.461 952.315,696.161 954.588,695.505 956.86,694.838 957.437,694.666 959.132,694.155 961.405,693.458 963.282,692.872 963.677,692.747 \n", " 965.949,692.019 968.222,691.278 968.829,691.078 970.494,690.52 972.767,689.747 974.108,689.283 975.039,688.957 977.311,688.15 979.146,687.489 979.584,687.329 \n", " 981.856,686.487 983.96,685.695 984.128,685.63 986.401,684.752 988.569,683.9 988.673,683.859 990.945,682.942 992.987,682.106 993.218,682.01 995.49,681.054 \n", " 997.228,680.312 997.763,680.08 1000.03,679.082 1001.3,678.517 1002.31,678.064 1004.58,677.023 1005.23,676.723 1006.85,675.956 1009,674.929 1009.12,674.869 \n", " 1011.4,673.752 1012.64,673.134 1013.67,672.612 1015.94,671.446 1016.15,671.34 1018.21,670.247 1019.53,669.546 1020.49,669.022 1022.76,667.769 1022.79,667.751 \n", " 1025.03,666.478 1025.94,665.957 1027.3,665.156 1028.98,664.163 1029.58,663.801 1031.85,662.41 1031.92,662.368 1034.12,660.976 1034.75,660.574 1036.39,659.503 \n", " 1037.49,658.78 1038.67,657.988 1040.14,656.985 1040.94,656.427 1042.69,655.191 1043.21,654.819 1045.16,653.397 1045.48,653.158 1047.55,651.602 1047.75,651.442 \n", " 1049.85,649.808 1050.03,649.666 1052.07,648.014 1052.3,647.826 1054.22,646.219 1054.57,645.915 1056.29,644.425 1056.84,643.927 1058.28,642.631 1059.12,641.856 \n", " 1060.21,640.836 1061.39,639.695 1062.06,639.042 1063.66,637.434 1063.85,637.248 1065.56,635.453 1065.93,635.052 1067.21,633.659 1068.21,632.538 1068.8,631.865 \n", " 1070.32,630.07 1070.48,629.879 1071.78,628.276 1072.75,627.034 1073.18,626.482 1074.52,624.687 1075.02,623.979 1075.79,622.893 1077.01,621.098 1077.3,620.665 \n", " 1078.17,619.304 1079.28,617.51 1079.57,617.015 1080.32,615.715 1081.31,613.921 1081.84,612.917 1082.25,612.127 1083.13,610.332 1083.96,608.538 1084.11,608.179 \n", " 1084.73,606.744 1085.45,604.949 1086.11,603.155 1086.38,602.366 1086.73,601.361 1087.29,599.566 1087.8,597.772 1088.25,595.978 1088.66,594.201 1088.66,594.183 \n", " 1089.02,592.389 1089.32,590.595 1089.57,588.8 1089.77,587.006 1089.92,585.212 1090.03,583.417 1090.08,581.623 1090.08,579.829 1090.03,578.034 1089.92,576.24 \n", " 1089.77,574.446 1089.57,572.651 1089.32,570.857 1089.02,569.063 1088.66,567.268 1088.66,567.251 1088.25,565.474 1087.8,563.68 1087.29,561.885 1086.73,560.091 \n", " 1086.38,559.086 1086.11,558.297 1085.45,556.502 1084.73,554.708 1084.11,553.273 1083.96,552.914 1083.13,551.119 1082.25,549.325 1081.84,548.535 1081.31,547.531 \n", " 1080.32,545.736 1079.57,544.437 1079.28,543.942 1078.17,542.148 1077.3,540.787 1077.01,540.353 1075.79,538.559 1075.02,537.473 1074.52,536.765 1073.18,534.97 \n", " 1072.75,534.418 1071.78,533.176 1070.48,531.573 1070.32,531.382 1068.8,529.587 1068.21,528.914 1067.21,527.793 1065.93,526.4 1065.56,525.999 1063.85,524.204 \n", " 1063.66,524.018 1062.06,522.41 1061.39,521.757 1060.21,520.616 1059.12,519.595 1058.28,518.821 1056.84,517.525 1056.29,517.027 1054.57,515.537 1054.22,515.233 \n", " 1052.3,513.626 1052.07,513.438 1050.03,511.786 1049.85,511.644 1047.75,510.01 1047.55,509.85 1045.48,508.294 1045.16,508.055 1043.21,506.633 1042.69,506.261 \n", " 1040.94,505.025 1040.14,504.467 1038.67,503.464 1037.49,502.672 1036.39,501.949 1034.75,500.878 1034.12,500.476 1031.92,499.084 1031.85,499.042 1029.58,497.651 \n", " 1028.98,497.289 1027.3,496.296 1025.94,495.495 1025.03,494.974 1022.79,493.701 1022.76,493.683 1020.49,492.43 1019.53,491.906 1018.21,491.205 1016.15,490.112 \n", " 1015.94,490.006 1013.67,488.84 1012.64,488.318 1011.4,487.7 1009.12,486.583 1009,486.523 1006.85,485.496 1005.23,484.729 1004.58,484.429 1002.31,483.388 \n", " 1001.3,482.935 1000.03,482.37 997.763,481.372 997.228,481.14 995.49,480.398 993.218,479.442 992.987,479.346 990.945,478.51 988.673,477.593 988.569,477.552 \n", " 986.401,476.7 984.128,475.822 983.96,475.757 981.856,474.965 979.584,474.123 979.146,473.963 977.311,473.302 975.039,472.495 974.108,472.169 972.767,471.705 \n", " 970.494,470.932 968.829,470.374 968.222,470.174 965.949,469.433 963.677,468.705 963.282,468.58 961.405,467.994 959.132,467.297 957.437,466.786 956.86,466.614 \n", " 954.588,465.947 952.315,465.291 951.259,464.991 950.043,464.65 947.771,464.024 945.498,463.409 944.704,463.197 943.226,462.808 940.954,462.22 938.681,461.644 \n", " 937.715,461.403 936.409,461.081 934.136,460.53 931.864,459.991 930.221,459.608 929.592,459.463 927.319,458.949 925.047,458.446 922.775,457.953 922.121,457.814 \n", " 920.502,457.473 918.23,457.004 915.958,456.546 913.685,456.098 913.282,456.02 911.413,455.662 909.14,455.237 906.868,454.822 904.596,454.417 903.498,454.225 \n", " 902.323,454.023 900.051,453.64 897.779,453.267 895.506,452.903 893.234,452.549 892.457,452.431 890.962,452.206 888.689,451.873 886.417,451.55 884.144,451.236 \n", " 881.872,450.932 879.6,450.637 879.6,450.637 877.327,450.353 875.055,450.078 872.783,449.812 870.51,449.556 868.238,449.308 865.966,449.07 863.712,448.842 \n", " 863.693,448.841 861.421,448.622 859.148,448.412 856.876,448.21 854.604,448.018 852.331,447.835 850.059,447.661 847.787,447.495 845.514,447.338 843.242,447.19 \n", " 840.97,447.051 840.919,447.048 838.697,446.921 836.425,446.8 834.152,446.688 831.88,446.585 829.608,446.49 827.335,446.403 825.063,446.326 822.791,446.257 \n", " 820.518,446.197 818.246,446.145 815.974,446.102 813.701,446.067 811.429,446.042 809.156,446.024 806.884,446.016 804.612,446.016 802.339,446.024 800.067,446.042 \n", " 797.795,446.067 795.522,446.102 793.25,446.145 790.978,446.197 788.705,446.257 786.433,446.326 784.16,446.403 781.888,446.49 779.616,446.585 777.343,446.688 \n", " 775.071,446.8 772.799,446.921 770.577,447.048 770.526,447.051 768.254,447.19 765.982,447.338 763.709,447.495 761.437,447.661 759.164,447.835 756.892,448.018 \n", " 754.62,448.21 752.347,448.412 750.075,448.622 747.803,448.841 747.784,448.842 745.53,449.07 743.258,449.308 740.986,449.556 738.713,449.812 736.441,450.078 \n", " 734.169,450.353 731.896,450.637 731.896,450.637 729.624,450.932 727.351,451.236 725.079,451.55 722.807,451.873 720.534,452.206 719.039,452.431 718.262,452.549 \n", " 715.99,452.903 713.717,453.267 711.445,453.64 709.173,454.023 707.998,454.225 706.9,454.417 704.628,454.822 702.355,455.237 700.083,455.662 698.213,456.02 \n", " 697.811,456.098 695.538,456.546 693.266,457.004 690.994,457.473 689.374,457.814 688.721,457.953 686.449,458.446 684.177,458.949 681.904,459.463 681.275,459.608 \n", " 679.632,459.991 677.359,460.53 675.087,461.081 673.781,461.403 672.815,461.644 670.542,462.22 668.27,462.808 666.792,463.197 665.998,463.409 663.725,464.024 \n", " 661.453,464.65 660.237,464.991 659.181,465.291 656.908,465.947 654.636,466.614 654.059,466.786 652.363,467.297 650.091,467.994 648.214,468.58 647.819,468.705 \n", " 645.546,469.433 643.274,470.174 642.667,470.374 641.002,470.932 638.729,471.705 637.388,472.169 636.457,472.495 634.185,473.302 632.35,473.963 631.912,474.123 \n", " 629.64,474.965 627.536,475.757 627.367,475.822 625.095,476.7 622.927,477.552 622.823,477.593 620.55,478.51 618.509,479.346 618.278,479.442 616.006,480.398 \n", " 614.268,481.14 613.733,481.372 611.461,482.37 610.192,482.935 609.189,483.388 606.916,484.429 606.27,484.729 604.644,485.496 602.493,486.523 602.371,486.583 \n", " 600.099,487.7 598.858,488.318 597.827,488.84 595.554,490.006 595.351,490.112 593.282,491.205 591.97,491.906 591.01,492.43 588.737,493.683 588.706,493.701 \n", " 586.465,494.974 585.558,495.495 584.193,496.296 582.517,497.289 581.92,497.651 579.648,499.042 579.58,499.084 577.375,500.476 576.745,500.878 575.103,501.949 \n", " 574.006,502.672 572.831,503.464 571.359,504.467 570.558,505.025 568.802,506.261 568.286,506.633 566.333,508.055 566.014,508.294 563.948,509.85 563.741,510.01 \n", " 561.646,511.644 561.469,511.786 559.423,513.438 559.197,513.626 557.278,515.233 556.924,515.537 555.209,517.027 554.652,517.525 553.213,518.821 552.38,519.595 \n", " 551.29,520.616 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 579.625,540.353 578.235,542.148 577.375,543.313 576.915,543.942 575.665,545.736 575.103,546.586 574.483,547.531 573.369,549.325 572.831,550.245 572.322,551.119 \n", " 571.342,552.914 570.558,554.444 570.424,554.708 569.574,556.502 568.785,558.297 568.286,559.528 568.059,560.091 567.397,561.885 566.796,563.68 566.256,565.474 \n", " 566.014,566.379 565.777,567.268 565.36,569.063 565.002,570.857 564.705,572.651 564.467,574.446 564.288,576.24 564.169,578.034 564.11,579.829 564.11,581.623 \n", " 564.169,583.417 564.288,585.212 564.467,587.006 564.705,588.8 565.002,590.595 565.36,592.389 565.777,594.183 566.014,595.073 566.256,595.978 566.796,597.772 \n", " 567.397,599.566 568.059,601.361 568.286,601.924 568.785,603.155 569.574,604.949 570.424,606.744 570.558,607.008 571.342,608.538 572.322,610.332 572.831,611.207 \n", " 573.369,612.127 574.483,613.921 575.103,614.866 575.665,615.715 576.915,617.51 577.375,618.139 578.235,619.304 579.625,621.098 579.648,621.127 581.09,622.893 \n", " 581.92,623.866 582.628,624.687 584.193,626.43 584.239,626.482 585.93,628.276 586.465,628.822 587.7,630.07 588.737,631.081 589.549,631.865 591.01,633.224 \n", " 591.482,633.659 593.282,635.262 593.499,635.453 595.554,637.206 595.603,637.248 597.799,639.042 597.827,639.064 600.088,640.836 600.099,640.845 602.371,642.555 \n", " 602.473,642.631 604.644,644.2 604.959,644.425 606.916,645.785 607.548,646.219 609.189,647.316 610.244,648.014 611.461,648.796 613.052,649.808 613.733,650.23 \n", " 615.975,651.602 616.006,651.62 618.278,652.961 619.025,653.397 620.55,654.264 622.201,655.191 622.823,655.532 625.095,656.762 625.513,656.985 627.367,657.954 \n", " 628.969,658.78 629.64,659.118 631.912,660.248 632.576,660.574 634.185,661.347 636.342,662.368 636.457,662.421 638.729,663.462 640.285,664.163 641.002,664.479 \n", " 643.274,665.469 644.411,665.957 645.546,666.435 647.819,667.377 648.736,667.751 650.091,668.294 652.363,669.19 653.278,669.546 654.636,670.063 656.908,670.916 \n", " 658.057,671.34 659.181,671.748 661.453,672.558 663.095,673.134 663.725,673.352 665.998,674.122 668.27,674.879 668.421,674.929 670.542,675.612 672.815,676.331 \n", " 674.076,676.723 675.087,677.032 677.359,677.714 679.632,678.383 680.095,678.517 681.904,679.032 684.177,679.667 686.449,680.288 686.536,680.312 688.721,680.889 \n", " 690.994,681.478 693.266,682.054 693.477,682.106 695.538,682.611 697.811,683.155 700.083,683.687 701.015,683.9 702.355,684.203 704.628,684.705 706.9,685.195 \n", " 709.173,685.672 709.28,685.695 711.445,686.134 713.717,686.583 715.99,687.02 718.262,687.447 718.494,687.489 720.534,687.857 722.807,688.256 725.079,688.643 \n", " 727.351,689.02 728.992,689.283 729.624,689.384 731.896,689.734 734.169,690.073 736.441,690.401 738.713,690.718 740.986,691.025 741.39,691.078 743.258,691.318 \n", " 745.53,691.6 747.803,691.871 750.075,692.131 752.347,692.381 754.62,692.62 756.892,692.849 757.131,692.872 759.164,693.065 761.437,693.271 763.709,693.466 \n", " 765.982,693.65 768.254,693.825 770.526,693.989 772.799,694.142 775.071,694.286 777.343,694.419 779.616,694.541 781.888,694.654 782.163,694.666 784.16,694.755 \n", " 786.433,694.846 788.705,694.927 790.978,694.998 793.25,695.059 795.522,695.109 797.795,695.15 800.067,695.18 802.339,695.2 804.612,695.21 806.884,695.21 \n", " 809.156,695.2 811.429,695.18 813.701,695.15 815.974,695.109 818.246,695.059 820.518,694.998 822.791,694.927 825.063,694.846 827.335,694.755 829.332,694.666 \n", " 829.608,694.654 831.88,694.541 834.152,694.419 836.425,694.286 838.697,694.142 840.97,693.989 843.242,693.825 845.514,693.65 847.787,693.466 850.059,693.271 \n", " 852.331,693.065 854.364,692.872 854.604,692.849 856.876,692.62 859.148,692.381 861.421,692.131 863.693,691.871 865.966,691.6 868.238,691.318 870.105,691.078 \n", " 870.51,691.025 872.783,690.718 875.055,690.401 877.327,690.073 879.6,689.734 881.872,689.384 882.504,689.283 884.144,689.02 886.417,688.643 888.689,688.256 \n", " 890.962,687.857 893.002,687.489 893.234,687.447 895.506,687.02 897.779,686.583 900.051,686.134 902.216,685.695 902.323,685.672 904.596,685.195 906.868,684.705 \n", " 909.14,684.203 910.481,683.9 911.413,683.687 913.685,683.155 915.958,682.611 918.019,682.106 918.23,682.054 920.502,681.478 922.775,680.889 924.96,680.312 \n", " 925.047,680.288 927.319,679.667 929.592,679.032 931.401,678.517 931.864,678.383 934.136,677.714 936.409,677.032 937.42,676.723 938.681,676.331 940.954,675.612 \n", " 943.075,674.929 943.226,674.879 945.498,674.122 947.771,673.352 948.401,673.134 950.043,672.558 952.315,671.748 953.439,671.34 954.588,670.916 956.86,670.063 \n", " 958.218,669.546 959.132,669.19 961.405,668.294 962.76,667.751 963.677,667.377 965.949,666.435 967.085,665.957 968.222,665.469 970.494,664.479 971.211,664.163 \n", " 972.767,663.462 975.039,662.421 975.154,662.368 977.311,661.347 978.92,660.574 979.584,660.248 981.856,659.118 982.527,658.78 984.128,657.954 985.983,656.985 \n", " 986.401,656.762 988.673,655.532 989.294,655.191 990.945,654.264 992.471,653.397 993.218,652.961 995.49,651.62 995.521,651.602 997.763,650.23 998.444,649.808 \n", " 1000.03,648.796 1001.25,648.014 1002.31,647.316 1003.95,646.219 1004.58,645.785 1006.54,644.425 1006.85,644.2 1009.02,642.631 1009.12,642.555 1011.4,640.845 \n", " 1011.41,640.836 1013.67,639.064 1013.7,639.042 1015.89,637.248 1015.94,637.206 1018,635.453 1018.21,635.262 1020.01,633.659 1020.49,633.224 1021.95,631.865 \n", " 1022.76,631.081 1023.8,630.07 1025.03,628.822 1025.57,628.276 1027.26,626.482 1027.3,626.43 1028.87,624.687 1029.58,623.866 1030.41,622.893 1031.85,621.127 \n", " 1031.87,621.098 1033.26,619.304 1034.12,618.139 1034.58,617.51 1035.83,615.715 1036.39,614.866 1037.01,613.921 1038.13,612.127 1038.67,611.207 1039.17,610.332 \n", " 1040.15,608.538 1040.94,607.008 1041.07,606.744 1041.92,604.949 1042.71,603.155 1043.21,601.924 1043.44,601.361 1044.1,599.566 1044.7,597.772 1045.24,595.978 \n", " 1045.48,595.073 1045.72,594.183 1046.14,592.389 1046.49,590.595 1046.79,588.8 1047.03,587.006 1047.21,585.212 1047.33,583.417 1047.39,581.623 1047.39,579.829 \n", " 1047.33,578.034 1047.21,576.24 1047.03,574.446 1046.79,572.651 1046.49,570.857 1046.14,569.063 1045.72,567.268 1045.48,566.379 1045.24,565.474 1044.7,563.68 \n", " 1044.1,561.885 1043.44,560.091 1043.21,559.528 1042.71,558.297 1041.92,556.502 1041.07,554.708 1040.94,554.444 1040.15,552.914 1039.17,551.119 1038.67,550.245 \n", " 1038.13,549.325 1037.01,547.531 1036.39,546.586 1035.83,545.736 1034.58,543.942 1034.12,543.313 1033.26,542.148 1031.87,540.353 1031.85,540.325 1030.41,538.559 \n", " 1029.58,537.586 1028.87,536.765 1027.3,535.022 1027.26,534.97 1025.57,533.176 1025.03,532.63 1023.8,531.382 1022.76,530.371 1021.95,529.587 1020.49,528.228 \n", " 1020.01,527.793 1018.21,526.19 1018,525.999 1015.94,524.246 1015.89,524.204 1013.7,522.41 1013.67,522.388 1011.41,520.616 1011.4,520.607 1009.12,518.897 \n", " 1009.02,518.821 1006.85,517.252 1006.54,517.027 1004.58,515.667 1003.95,515.233 1002.31,514.136 1001.25,513.438 1000.03,512.655 998.444,511.644 997.763,511.222 \n", " 995.521,509.85 995.49,509.832 993.218,508.491 992.471,508.055 990.945,507.188 989.294,506.261 988.673,505.92 986.401,504.69 985.983,504.467 984.128,503.498 \n", " 982.527,502.672 981.856,502.334 979.584,501.204 978.92,500.878 977.311,500.105 975.154,499.084 975.039,499.03 972.767,497.99 971.211,497.289 970.494,496.973 \n", " 968.222,495.983 967.085,495.495 965.949,495.017 963.677,494.075 962.76,493.701 961.405,493.158 959.132,492.262 958.218,491.906 956.86,491.389 954.588,490.536 \n", " 953.439,490.112 952.315,489.704 950.043,488.894 948.401,488.318 947.771,488.1 945.498,487.33 943.226,486.573 943.075,486.523 940.954,485.84 938.681,485.121 \n", " 937.42,484.729 936.409,484.42 934.136,483.738 931.864,483.069 931.401,482.935 929.592,482.419 927.319,481.785 925.047,481.164 924.96,481.14 922.775,480.562 \n", " 920.502,479.974 918.23,479.398 918.019,479.346 915.958,478.841 913.685,478.297 911.413,477.765 910.481,477.552 909.14,477.249 906.868,476.747 904.596,476.257 \n", " 902.323,475.78 902.216,475.757 900.051,475.318 897.779,474.869 895.506,474.432 893.234,474.005 893.002,473.963 890.962,473.595 888.689,473.196 886.417,472.809 \n", " 884.144,472.432 882.504,472.169 881.872,472.068 879.6,471.718 877.327,471.379 875.055,471.051 872.783,470.733 870.51,470.427 870.105,470.374 868.238,470.134 \n", " 865.966,469.852 863.693,469.581 861.421,469.321 859.148,469.071 856.876,468.832 854.604,468.603 854.364,468.58 852.331,468.387 850.059,468.181 847.787,467.986 \n", " 845.514,467.802 843.242,467.627 840.97,467.463 838.697,467.31 836.425,467.166 834.152,467.033 831.88,466.911 829.608,466.798 829.332,466.786 827.335,466.697 \n", " 825.063,466.606 822.791,466.525 820.518,466.454 818.246,466.393 815.974,466.343 813.701,466.302 811.429,466.272 809.156,466.252 806.884,466.242 804.612,466.242 \n", " 802.339,466.252 800.067,466.272 797.795,466.302 795.522,466.343 793.25,466.393 790.978,466.454 788.705,466.525 786.433,466.606 784.16,466.697 782.163,466.786 \n", " 781.888,466.798 779.616,466.911 777.343,467.033 775.071,467.166 772.799,467.31 770.526,467.463 768.254,467.627 765.982,467.802 763.709,467.986 761.437,468.181 \n", " 759.164,468.387 757.131,468.58 756.892,468.603 754.62,468.832 752.347,469.071 750.075,469.321 747.803,469.581 745.53,469.852 743.258,470.134 741.39,470.374 \n", " 740.986,470.427 738.713,470.733 736.441,471.051 734.169,471.379 731.896,471.718 729.624,472.068 728.992,472.169 727.351,472.432 725.079,472.809 722.807,473.196 \n", " 720.534,473.595 718.494,473.963 718.262,474.005 715.99,474.432 713.717,474.869 711.445,475.318 709.28,475.757 709.173,475.78 706.9,476.257 704.628,476.747 \n", " 702.355,477.249 701.015,477.552 700.083,477.765 697.811,478.297 695.538,478.841 693.477,479.346 693.266,479.398 690.994,479.974 688.721,480.562 686.536,481.14 \n", " 686.449,481.164 684.177,481.785 681.904,482.419 680.095,482.935 679.632,483.069 677.359,483.738 675.087,484.42 674.076,484.729 672.815,485.121 670.542,485.84 \n", " 668.421,486.523 668.27,486.573 665.998,487.33 663.725,488.1 663.095,488.318 661.453,488.894 659.181,489.704 658.057,490.112 656.908,490.536 654.636,491.389 \n", " 653.278,491.906 652.363,492.262 650.091,493.158 648.736,493.701 647.819,494.075 645.546,495.017 644.411,495.495 643.274,495.983 641.002,496.973 640.285,497.289 \n", " 638.729,497.99 636.457,499.03 636.342,499.084 634.185,500.105 632.576,500.878 631.912,501.204 629.64,502.334 628.969,502.672 627.367,503.498 625.513,504.467 \n", " 625.095,504.69 622.823,505.92 622.201,506.261 620.55,507.188 619.025,508.055 618.278,508.491 616.006,509.832 615.975,509.85 613.733,511.222 613.052,511.644 \n", " 611.461,512.655 610.244,513.438 609.189,514.136 607.548,515.233 606.916,515.667 604.959,517.027 604.644,517.252 602.473,518.821 602.371,518.897 600.099,520.607 \n", " 600.088,520.616 597.827,522.388 597.799,522.41 595.603,524.204 595.554,524.246 593.499,525.999 593.282,526.19 591.482,527.793 591.01,528.228 589.549,529.587 \n", " 588.737,530.371 587.7,531.382 586.465,532.63 585.93,533.176 584.239,534.97 584.193,535.022 582.628,536.765 581.92,537.586 581.09,538.559 579.648,540.325 \n", " 579.625,540.353 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 613.996,567.268 613.733,568.165 613.473,569.063 613.027,570.857 612.655,572.651 612.358,574.446 612.136,576.24 611.987,578.034 611.913,579.829 611.913,581.623 \n", " 611.987,583.417 612.136,585.212 612.358,587.006 612.655,588.8 613.027,590.595 613.473,592.389 613.733,593.287 613.996,594.183 614.596,595.978 615.273,597.772 \n", " 616.006,599.52 616.025,599.566 616.861,601.361 617.774,603.155 618.278,604.069 618.768,604.949 619.846,606.744 620.55,607.838 621.006,608.538 622.253,610.332 \n", " 622.823,611.104 623.587,612.127 625.008,613.921 625.095,614.025 626.524,615.715 627.367,616.662 628.132,617.51 629.64,619.101 629.835,619.304 631.638,621.098 \n", " 631.912,621.36 633.544,622.893 634.185,623.469 635.555,624.687 636.457,625.456 637.676,626.482 638.729,627.334 639.909,628.276 641.002,629.115 642.261,630.07 \n", " 643.274,630.81 644.736,631.865 645.546,632.428 647.34,633.659 647.819,633.976 650.078,635.453 650.091,635.461 652.363,636.879 652.964,637.248 654.636,638.243 \n", " 655.999,639.042 656.908,639.559 659.181,640.831 659.19,640.836 661.453,642.048 662.56,642.631 663.725,643.227 665.998,644.371 666.107,644.425 668.27,645.467 \n", " 669.858,646.219 670.542,646.535 672.815,647.565 673.822,648.014 675.087,648.563 677.359,649.532 678.019,649.808 679.632,650.467 681.904,651.377 682.476,651.602 \n", " 684.177,652.255 686.449,653.111 687.223,653.397 688.721,653.937 690.994,654.741 692.293,655.191 693.266,655.52 695.538,656.274 697.729,656.985 697.811,657.011 \n", " 700.083,657.718 702.355,658.409 703.603,658.78 704.628,659.078 706.9,659.724 709.173,660.355 709.98,660.574 711.445,660.963 713.717,661.552 715.99,662.126 \n", " 716.976,662.368 718.262,662.679 720.534,663.213 722.807,663.732 724.745,664.163 725.079,664.235 727.351,664.717 729.624,665.185 731.896,665.638 733.548,665.957 \n", " 734.169,666.075 736.441,666.492 738.713,666.896 740.986,667.286 743.258,667.663 743.814,667.751 745.53,668.021 747.803,668.364 750.075,668.693 752.347,669.01 \n", " 754.62,669.312 756.449,669.546 756.892,669.601 759.164,669.873 761.437,670.132 763.709,670.377 765.982,670.61 768.254,670.829 770.526,671.036 772.799,671.229 \n", " 774.195,671.34 775.071,671.408 777.343,671.573 779.616,671.726 781.888,671.865 784.16,671.992 786.433,672.106 788.705,672.207 790.978,672.296 793.25,672.372 \n", " 795.522,672.435 797.795,672.486 800.067,672.524 802.339,672.549 804.612,672.562 806.884,672.562 809.156,672.549 811.429,672.524 813.701,672.486 815.974,672.435 \n", " 818.246,672.372 820.518,672.296 822.791,672.207 825.063,672.106 827.335,671.992 829.608,671.865 831.88,671.726 834.152,671.573 836.425,671.408 837.301,671.34 \n", " 838.697,671.229 840.97,671.036 843.242,670.829 845.514,670.61 847.787,670.377 850.059,670.132 852.331,669.873 854.604,669.601 855.046,669.546 856.876,669.312 \n", " 859.148,669.01 861.421,668.693 863.693,668.364 865.966,668.021 867.682,667.751 868.238,667.663 870.51,667.286 872.783,666.896 875.055,666.492 877.327,666.075 \n", " 877.947,665.957 879.6,665.638 881.872,665.185 884.144,664.717 886.417,664.235 886.751,664.163 888.689,663.732 890.962,663.213 893.234,662.679 894.52,662.368 \n", " 895.506,662.126 897.779,661.552 900.051,660.963 901.516,660.574 902.323,660.355 904.596,659.724 906.868,659.078 907.893,658.78 909.14,658.409 911.413,657.718 \n", " 913.685,657.011 913.767,656.985 915.958,656.274 918.23,655.52 919.203,655.191 920.502,654.741 922.775,653.937 924.273,653.397 925.047,653.111 927.319,652.255 \n", " 929.02,651.602 929.592,651.377 931.864,650.467 933.477,649.808 934.136,649.532 936.409,648.563 937.674,648.014 938.681,647.565 940.954,646.535 941.638,646.219 \n", " 943.226,645.467 945.389,644.425 945.498,644.371 947.771,643.227 948.936,642.631 950.043,642.048 952.306,640.836 952.315,640.831 954.588,639.559 955.497,639.042 \n", " 956.86,638.243 958.532,637.248 959.132,636.879 961.405,635.461 961.418,635.453 963.677,633.976 964.156,633.659 965.949,632.428 966.759,631.865 968.222,630.81 \n", " 969.234,630.07 970.494,629.115 971.586,628.276 972.767,627.334 973.82,626.482 975.039,625.456 975.94,624.687 977.311,623.469 977.952,622.893 979.584,621.36 \n", " 979.858,621.098 981.661,619.304 981.856,619.101 983.364,617.51 984.128,616.662 984.971,615.715 986.401,614.025 986.488,613.921 987.909,612.127 988.673,611.104 \n", " 989.243,610.332 990.49,608.538 990.945,607.838 991.65,606.744 992.727,604.949 993.218,604.069 993.722,603.155 994.635,601.361 995.471,599.566 995.49,599.52 \n", " 996.223,597.772 996.899,595.978 997.5,594.183 997.763,593.287 998.023,592.389 998.469,590.595 998.84,588.8 999.137,587.006 999.36,585.212 999.508,583.417 \n", " 999.583,581.623 999.583,579.829 999.508,578.034 999.36,576.24 999.137,574.446 998.84,572.651 998.469,570.857 998.023,569.063 997.763,568.165 997.5,567.268 \n", " 996.899,565.474 996.223,563.68 995.49,561.932 995.471,561.885 994.635,560.091 993.722,558.297 993.218,557.382 992.727,556.502 991.65,554.708 990.945,553.614 \n", " 990.49,552.914 989.243,551.119 988.673,550.348 987.909,549.325 986.488,547.531 986.401,547.427 984.971,545.736 984.128,544.79 983.364,543.942 981.856,542.351 \n", " 981.661,542.148 979.858,540.353 979.584,540.092 977.952,538.559 977.311,537.983 975.94,536.765 975.039,535.996 973.82,534.97 972.767,534.118 971.586,533.176 \n", " 970.494,532.337 969.234,531.382 968.222,530.642 966.759,529.587 965.949,529.024 964.156,527.793 963.677,527.476 961.418,525.999 961.405,525.991 959.132,524.573 \n", " 958.532,524.204 956.86,523.209 955.497,522.41 954.588,521.893 952.315,520.621 952.306,520.616 950.043,519.404 948.936,518.821 947.771,518.225 945.498,517.081 \n", " 945.389,517.027 943.226,515.985 941.638,515.233 940.954,514.917 938.681,513.887 937.674,513.438 936.409,512.889 934.136,511.92 933.477,511.644 931.864,510.985 \n", " 929.592,510.075 929.02,509.85 927.319,509.197 925.047,508.341 924.273,508.055 922.775,507.515 920.502,506.711 919.203,506.261 918.23,505.931 915.958,505.178 \n", " 913.767,504.467 913.685,504.441 911.413,503.734 909.14,503.043 907.893,502.672 906.868,502.374 904.596,501.728 902.323,501.097 901.516,500.878 900.051,500.489 \n", " 897.779,499.9 895.506,499.326 894.52,499.084 893.234,498.773 890.962,498.239 888.689,497.72 886.751,497.289 886.417,497.217 884.144,496.735 881.872,496.267 \n", " 879.6,495.814 877.947,495.495 877.327,495.377 875.055,494.96 872.783,494.556 870.51,494.166 868.238,493.789 867.682,493.701 865.966,493.431 863.693,493.088 \n", " 861.421,492.758 859.148,492.442 856.876,492.139 855.046,491.906 854.604,491.851 852.331,491.579 850.059,491.32 847.787,491.075 845.514,490.842 843.242,490.623 \n", " 840.97,490.416 838.697,490.223 837.301,490.112 836.425,490.044 834.152,489.879 831.88,489.726 829.608,489.587 827.335,489.46 825.063,489.346 822.791,489.245 \n", " 820.518,489.156 818.246,489.08 815.974,489.017 813.701,488.966 811.429,488.928 809.156,488.903 806.884,488.89 804.612,488.89 802.339,488.903 800.067,488.928 \n", " 797.795,488.966 795.522,489.017 793.25,489.08 790.978,489.156 788.705,489.245 786.433,489.346 784.16,489.46 781.888,489.587 779.616,489.726 777.343,489.879 \n", " 775.071,490.044 774.195,490.112 772.799,490.223 770.526,490.416 768.254,490.623 765.982,490.842 763.709,491.075 761.437,491.32 759.164,491.579 756.892,491.851 \n", " 756.449,491.906 754.62,492.139 752.347,492.442 750.075,492.758 747.803,493.088 745.53,493.431 743.814,493.701 743.258,493.789 740.986,494.166 738.713,494.556 \n", " 736.441,494.96 734.169,495.377 733.548,495.495 731.896,495.814 729.624,496.267 727.351,496.735 725.079,497.217 724.745,497.289 722.807,497.72 720.534,498.239 \n", " 718.262,498.773 716.976,499.084 715.99,499.326 713.717,499.9 711.445,500.489 709.98,500.878 709.173,501.097 706.9,501.728 704.628,502.374 703.603,502.672 \n", " 702.355,503.043 700.083,503.734 697.811,504.441 697.729,504.467 695.538,505.178 693.266,505.931 692.293,506.261 690.994,506.711 688.721,507.515 687.223,508.055 \n", " 686.449,508.341 684.177,509.197 682.476,509.85 681.904,510.075 679.632,510.985 678.019,511.644 677.359,511.92 675.087,512.889 673.822,513.438 672.815,513.887 \n", " 670.542,514.917 669.858,515.233 668.27,515.985 666.107,517.027 665.998,517.081 663.725,518.225 662.56,518.821 661.453,519.404 659.19,520.616 659.181,520.621 \n", " 656.908,521.893 655.999,522.41 654.636,523.209 652.964,524.204 652.363,524.573 650.091,525.991 650.078,525.999 647.819,527.476 647.34,527.793 645.546,529.024 \n", " 644.736,529.587 643.274,530.642 642.261,531.382 641.002,532.337 639.909,533.176 638.729,534.118 637.676,534.97 636.457,535.996 635.555,536.765 634.185,537.983 \n", " 633.544,538.559 631.912,540.092 631.638,540.353 629.835,542.148 629.64,542.351 628.132,543.942 627.367,544.79 626.524,545.736 625.095,547.427 625.008,547.531 \n", " 623.587,549.325 622.823,550.348 622.253,551.119 621.006,552.914 620.55,553.614 619.846,554.708 618.768,556.502 618.278,557.382 617.774,558.297 616.861,560.091 \n", " 616.025,561.885 616.006,561.932 615.273,563.68 614.596,565.474 613.996,567.268 \n", " \"/>\n", "<polyline clip-path=\"url(#clip072)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 672.56,590.595 672.815,591.306 673.208,592.389 673.97,594.183 674.841,595.978 675.087,596.428 675.833,597.772 676.941,599.566 677.359,600.183 678.173,601.361 \n", " 679.526,603.155 679.632,603.285 681.015,604.949 681.904,605.942 682.636,606.744 684.177,608.32 684.393,608.538 686.299,610.332 686.449,610.465 688.359,612.127 \n", " 688.721,612.424 690.58,613.921 690.994,614.237 692.97,615.715 693.266,615.926 695.538,617.508 695.541,617.51 697.811,618.985 698.313,619.304 700.083,620.38 \n", " 701.293,621.098 702.355,621.703 704.496,622.893 704.628,622.963 706.9,624.148 707.96,624.687 709.173,625.28 711.445,626.365 711.694,626.482 713.717,627.389 \n", " 715.747,628.276 715.99,628.378 718.262,629.312 720.159,630.07 720.534,630.215 722.807,631.069 724.984,631.865 725.079,631.898 727.351,632.678 729.624,633.435 \n", " 730.316,633.659 731.896,634.153 734.169,634.842 736.25,635.453 736.441,635.508 738.713,636.133 740.986,636.738 742.974,637.248 743.258,637.318 745.53,637.864 \n", " 747.803,638.389 750.075,638.893 750.775,639.042 752.347,639.367 754.62,639.818 756.892,640.248 759.164,640.659 760.193,640.836 761.437,641.044 763.709,641.406 \n", " 765.982,641.748 768.254,642.071 770.526,642.374 772.572,642.631 772.799,642.658 775.071,642.917 777.343,643.157 779.616,643.379 781.888,643.582 784.16,643.766 \n", " 786.433,643.932 788.705,644.08 790.978,644.209 793.25,644.319 795.522,644.411 795.934,644.425 797.795,644.484 800.067,644.538 802.339,644.574 804.612,644.592 \n", " 806.884,644.592 809.156,644.574 811.429,644.538 813.701,644.484 815.562,644.425 815.974,644.411 818.246,644.319 820.518,644.209 822.791,644.08 825.063,643.932 \n", " 827.335,643.766 829.608,643.582 831.88,643.379 834.152,643.157 836.425,642.917 838.697,642.658 838.924,642.631 840.97,642.374 843.242,642.071 845.514,641.748 \n", " 847.787,641.406 850.059,641.044 851.302,640.836 852.331,640.659 854.604,640.248 856.876,639.818 859.148,639.367 860.721,639.042 861.421,638.893 863.693,638.389 \n", " 865.966,637.864 868.238,637.318 868.522,637.248 870.51,636.738 872.783,636.133 875.055,635.508 875.246,635.453 877.327,634.842 879.6,634.153 881.18,633.659 \n", " 881.872,633.435 884.144,632.678 886.417,631.898 886.511,631.865 888.689,631.069 890.962,630.215 891.337,630.07 893.234,629.312 895.506,628.378 895.749,628.276 \n", " 897.779,627.389 899.802,626.482 900.051,626.365 902.323,625.28 903.536,624.687 904.596,624.148 906.868,622.963 907,622.893 909.14,621.703 910.203,621.098 \n", " 911.413,620.38 913.183,619.304 913.685,618.985 915.955,617.51 915.958,617.508 918.23,615.926 918.525,615.715 920.502,614.237 920.916,613.921 922.775,612.424 \n", " 923.137,612.127 925.047,610.465 925.197,610.332 927.103,608.538 927.319,608.32 928.86,606.744 929.592,605.942 930.48,604.949 931.864,603.285 931.97,603.155 \n", " 933.323,601.361 934.136,600.183 934.555,599.566 935.663,597.772 936.409,596.428 936.655,595.978 937.526,594.183 938.287,592.389 938.681,591.306 938.936,590.595 \n", " 939.471,588.8 939.899,587.006 940.22,585.212 940.434,583.417 940.541,581.623 940.541,579.829 940.434,578.034 940.22,576.24 939.899,574.446 939.471,572.651 \n", " 938.936,570.857 938.681,570.146 938.287,569.063 937.526,567.268 936.655,565.474 936.409,565.024 935.663,563.68 934.555,561.885 934.136,561.269 933.323,560.091 \n", " 931.97,558.297 931.864,558.167 930.48,556.502 929.592,555.51 928.86,554.708 927.319,553.131 927.103,552.914 925.197,551.119 925.047,550.986 923.137,549.325 \n", " 922.775,549.028 920.916,547.531 920.502,547.215 918.525,545.736 918.23,545.526 915.958,543.944 915.955,543.942 913.685,542.467 913.183,542.148 911.413,541.072 \n", " 910.203,540.353 909.14,539.749 907,538.559 906.868,538.489 904.596,537.304 903.536,536.765 902.323,536.172 900.051,535.087 899.802,534.97 897.779,534.063 \n", " 895.749,533.176 895.506,533.074 893.234,532.14 891.337,531.382 890.962,531.237 888.689,530.383 886.511,529.587 886.417,529.554 884.144,528.774 881.872,528.017 \n", " 881.18,527.793 879.6,527.299 877.327,526.61 875.246,525.999 875.055,525.944 872.783,525.319 870.51,524.714 868.522,524.204 868.238,524.134 865.966,523.588 \n", " 863.693,523.063 861.421,522.559 860.721,522.41 859.148,522.085 856.876,521.634 854.604,521.204 852.331,520.793 851.302,520.616 850.059,520.408 847.787,520.046 \n", " 845.514,519.704 843.242,519.381 840.97,519.078 838.924,518.821 838.697,518.794 836.425,518.535 834.152,518.295 831.88,518.073 829.608,517.87 827.335,517.686 \n", " 825.063,517.52 822.791,517.372 820.518,517.243 818.246,517.133 815.974,517.04 815.562,517.027 813.701,516.968 811.429,516.914 809.156,516.878 806.884,516.86 \n", " 804.612,516.86 802.339,516.878 800.067,516.914 797.795,516.968 795.934,517.027 795.522,517.04 793.25,517.133 790.978,517.243 788.705,517.372 786.433,517.52 \n", " 784.16,517.686 781.888,517.87 779.616,518.073 777.343,518.295 775.071,518.535 772.799,518.794 772.572,518.821 770.526,519.078 768.254,519.381 765.982,519.704 \n", " 763.709,520.046 761.437,520.408 760.193,520.616 759.164,520.793 756.892,521.204 754.62,521.634 752.347,522.085 750.775,522.41 750.075,522.559 747.803,523.063 \n", " 745.53,523.588 743.258,524.134 742.974,524.204 740.986,524.714 738.713,525.319 736.441,525.944 736.25,525.999 734.169,526.61 731.896,527.299 730.316,527.793 \n", " 729.624,528.017 727.351,528.774 725.079,529.554 724.984,529.587 722.807,530.383 720.534,531.237 720.159,531.382 718.262,532.14 715.99,533.074 715.747,533.176 \n", " 713.717,534.063 711.694,534.97 711.445,535.087 709.173,536.172 707.96,536.765 706.9,537.304 704.628,538.489 704.496,538.559 702.355,539.749 701.293,540.353 \n", " 700.083,541.072 698.313,542.148 697.811,542.467 695.541,543.942 695.538,543.944 693.266,545.526 692.97,545.736 690.994,547.215 690.58,547.531 688.721,549.028 \n", " 688.359,549.325 686.449,550.986 686.299,551.119 684.393,552.914 684.177,553.131 682.636,554.708 681.904,555.51 681.015,556.502 679.632,558.167 679.526,558.297 \n", " 678.173,560.091 677.359,561.269 676.941,561.885 675.833,563.68 675.087,565.024 674.841,565.474 673.97,567.268 673.208,569.063 672.815,570.146 672.56,570.857 \n", " 672.025,572.651 671.597,574.446 671.276,576.24 671.062,578.034 670.955,579.829 670.955,581.623 671.062,583.417 671.276,585.212 671.597,587.006 672.025,588.8 \n", " 672.56,590.595 \n", " \"/>\n", "<defs>\n", " <clipPath id=\"clip073\">\n", " <rect x=\"1444\" y=\"133\" width=\"109\" height=\"896\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#0a0723; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,972.452 1552.7,972.452 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#200c4a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,916.491 1552.7,916.491 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#3c0965; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,860.53 1552.7,860.53 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#570f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,804.569 1552.7,804.569 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#70196e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,748.608 1552.7,748.608 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#892269; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,692.648 1552.7,692.648 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#a32b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,636.687 1552.7,636.687 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#bb3754; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,580.726 1552.7,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,524.765 1552.7,524.765 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,468.804 1552.7,468.804 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,412.844 1552.7,412.844 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,356.883 1552.7,356.883 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,300.922 1552.7,300.922 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,244.961 1552.7,244.961 \n", " \"/>\n", "<polyline clip-path=\"url(#clip073)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1444.7,189 1552.7,189 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M1618.65 880.857 Q1615.04 880.857 1613.21 884.421 Q1611.4 887.963 1611.4 895.093 Q1611.4 902.199 1613.21 905.764 Q1615.04 909.305 1618.65 909.305 Q1622.28 909.305 1624.09 905.764 Q1625.92 902.199 1625.92 895.093 Q1625.92 887.963 1624.09 884.421 Q1622.28 880.857 1618.65 880.857 M1618.65 877.153 Q1624.46 877.153 1627.51 881.759 Q1630.59 886.343 1630.59 895.093 Q1630.59 903.819 1627.51 908.426 Q1624.46 913.009 1618.65 913.009 Q1612.84 913.009 1609.76 908.426 Q1606.7 903.819 1606.7 895.093 Q1606.7 886.343 1609.76 881.759 Q1612.84 877.153 1618.65 877.153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 906.458 L1643.69 906.458 L1643.69 912.338 L1638.81 912.338 L1638.81 906.458 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1663.88 880.857 Q1660.27 880.857 1658.44 884.421 Q1656.63 887.963 1656.63 895.093 Q1656.63 902.199 1658.44 905.764 Q1660.27 909.305 1663.88 909.305 Q1667.51 909.305 1669.32 905.764 Q1671.15 902.199 1671.15 895.093 Q1671.15 887.963 1669.32 884.421 Q1667.51 880.857 1663.88 880.857 M1663.88 877.153 Q1669.69 877.153 1672.74 881.759 Q1675.82 886.343 1675.82 895.093 Q1675.82 903.819 1672.74 908.426 Q1669.69 913.009 1663.88 913.009 Q1658.07 913.009 1654.99 908.426 Q1651.93 903.819 1651.93 895.093 Q1651.93 886.343 1654.99 881.759 Q1658.07 877.153 1663.88 877.153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1688.07 908.403 L1704.39 908.403 L1704.39 912.338 L1682.44 912.338 L1682.44 908.403 Q1685.1 905.648 1689.69 901.018 Q1694.29 896.366 1695.48 895.023 Q1697.72 892.5 1698.6 890.764 Q1699.5 889.005 1699.5 887.315 Q1699.5 884.56 1697.56 882.824 Q1695.64 881.088 1692.54 881.088 Q1690.34 881.088 1687.88 881.852 Q1685.45 882.616 1682.67 884.167 L1682.67 879.445 Q1685.5 878.31 1687.95 877.732 Q1690.41 877.153 1692.44 877.153 Q1697.81 877.153 1701.01 879.838 Q1704.2 882.523 1704.2 887.014 Q1704.2 889.144 1703.39 891.065 Q1702.6 892.963 1700.5 895.556 Q1699.92 896.227 1696.82 899.444 Q1693.72 902.639 1688.07 908.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1714.25 877.778 L1732.6 877.778 L1732.6 881.713 L1718.53 881.713 L1718.53 890.185 Q1719.55 889.838 1720.57 889.676 Q1721.59 889.491 1722.6 889.491 Q1728.39 889.491 1731.77 892.662 Q1735.15 895.833 1735.15 901.25 Q1735.15 906.829 1731.68 909.93 Q1728.21 913.009 1721.89 913.009 Q1719.71 913.009 1717.44 912.639 Q1715.2 912.268 1712.79 911.528 L1712.79 906.829 Q1714.87 907.963 1717.1 908.518 Q1719.32 909.074 1721.79 909.074 Q1725.8 909.074 1728.14 906.968 Q1730.47 904.861 1730.47 901.25 Q1730.47 897.639 1728.14 895.532 Q1725.8 893.426 1721.79 893.426 Q1719.92 893.426 1718.04 893.843 Q1716.19 894.259 1714.25 895.139 L1714.25 877.778 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1618.65 738.174 Q1615.04 738.174 1613.21 741.739 Q1611.4 745.28 1611.4 752.41 Q1611.4 759.517 1613.21 763.081 Q1615.04 766.623 1618.65 766.623 Q1622.28 766.623 1624.09 763.081 Q1625.92 759.517 1625.92 752.41 Q1625.92 745.28 1624.09 741.739 Q1622.28 738.174 1618.65 738.174 M1618.65 734.47 Q1624.46 734.47 1627.51 739.077 Q1630.59 743.66 1630.59 752.41 Q1630.59 761.137 1627.51 765.743 Q1624.46 770.327 1618.65 770.327 Q1612.84 770.327 1609.76 765.743 Q1606.7 761.137 1606.7 752.41 Q1606.7 743.66 1609.76 739.077 Q1612.84 734.47 1618.65 734.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 763.776 L1643.69 763.776 L1643.69 769.655 L1638.81 769.655 L1638.81 763.776 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1663.88 738.174 Q1660.27 738.174 1658.44 741.739 Q1656.63 745.28 1656.63 752.41 Q1656.63 759.517 1658.44 763.081 Q1660.27 766.623 1663.88 766.623 Q1667.51 766.623 1669.32 763.081 Q1671.15 759.517 1671.15 752.41 Q1671.15 745.28 1669.32 741.739 Q1667.51 738.174 1663.88 738.174 M1663.88 734.47 Q1669.69 734.47 1672.74 739.077 Q1675.82 743.66 1675.82 752.41 Q1675.82 761.137 1672.74 765.743 Q1669.69 770.327 1663.88 770.327 Q1658.07 770.327 1654.99 765.743 Q1651.93 761.137 1651.93 752.41 Q1651.93 743.66 1654.99 739.077 Q1658.07 734.47 1663.88 734.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1684.09 735.095 L1702.44 735.095 L1702.44 739.031 L1688.37 739.031 L1688.37 747.503 Q1689.39 747.155 1690.41 746.993 Q1691.42 746.808 1692.44 746.808 Q1698.23 746.808 1701.61 749.98 Q1704.99 753.151 1704.99 758.567 Q1704.99 764.146 1701.52 767.248 Q1698.04 770.327 1691.73 770.327 Q1689.55 770.327 1687.28 769.956 Q1685.04 769.586 1682.63 768.845 L1682.63 764.146 Q1684.71 765.28 1686.93 765.836 Q1689.16 766.391 1691.63 766.391 Q1695.64 766.391 1697.98 764.285 Q1700.31 762.179 1700.31 758.567 Q1700.31 754.956 1697.98 752.85 Q1695.64 750.743 1691.63 750.743 Q1689.76 750.743 1687.88 751.16 Q1686.03 751.577 1684.09 752.456 L1684.09 735.095 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1724.2 738.174 Q1720.59 738.174 1718.76 741.739 Q1716.96 745.28 1716.96 752.41 Q1716.96 759.517 1718.76 763.081 Q1720.59 766.623 1724.2 766.623 Q1727.84 766.623 1729.64 763.081 Q1731.47 759.517 1731.47 752.41 Q1731.47 745.28 1729.64 741.739 Q1727.84 738.174 1724.2 738.174 M1724.2 734.47 Q1730.01 734.47 1733.07 739.077 Q1736.15 743.66 1736.15 752.41 Q1736.15 761.137 1733.07 765.743 Q1730.01 770.327 1724.2 770.327 Q1718.39 770.327 1715.31 765.743 Q1712.26 761.137 1712.26 752.41 Q1712.26 743.66 1715.31 739.077 Q1718.39 734.47 1724.2 734.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1618.65 595.492 Q1615.04 595.492 1613.21 599.056 Q1611.4 602.598 1611.4 609.728 Q1611.4 616.834 1613.21 620.399 Q1615.04 623.94 1618.65 623.94 Q1622.28 623.94 1624.09 620.399 Q1625.92 616.834 1625.92 609.728 Q1625.92 602.598 1624.09 599.056 Q1622.28 595.492 1618.65 595.492 M1618.65 591.788 Q1624.46 591.788 1627.51 596.394 Q1630.59 600.978 1630.59 609.728 Q1630.59 618.454 1627.51 623.061 Q1624.46 627.644 1618.65 627.644 Q1612.84 627.644 1609.76 623.061 Q1606.7 618.454 1606.7 609.728 Q1606.7 600.978 1609.76 596.394 Q1612.84 591.788 1618.65 591.788 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 621.093 L1643.69 621.093 L1643.69 626.973 L1638.81 626.973 L1638.81 621.093 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1663.88 595.492 Q1660.27 595.492 1658.44 599.056 Q1656.63 602.598 1656.63 609.728 Q1656.63 616.834 1658.44 620.399 Q1660.27 623.94 1663.88 623.94 Q1667.51 623.94 1669.32 620.399 Q1671.15 616.834 1671.15 609.728 Q1671.15 602.598 1669.32 599.056 Q1667.51 595.492 1663.88 595.492 M1663.88 591.788 Q1669.69 591.788 1672.74 596.394 Q1675.82 600.978 1675.82 609.728 Q1675.82 618.454 1672.74 623.061 Q1669.69 627.644 1663.88 627.644 Q1658.07 627.644 1654.99 623.061 Q1651.93 618.454 1651.93 609.728 Q1651.93 600.978 1654.99 596.394 Q1658.07 591.788 1663.88 591.788 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1682.86 592.413 L1705.08 592.413 L1705.08 594.404 L1692.54 626.973 L1687.65 626.973 L1699.46 596.348 L1682.86 596.348 L1682.86 592.413 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1714.25 592.413 L1732.6 592.413 L1732.6 596.348 L1718.53 596.348 L1718.53 604.82 Q1719.55 604.473 1720.57 604.311 Q1721.59 604.126 1722.6 604.126 Q1728.39 604.126 1731.77 607.297 Q1735.15 610.468 1735.15 615.885 Q1735.15 621.464 1731.68 624.565 Q1728.21 627.644 1721.89 627.644 Q1719.71 627.644 1717.44 627.274 Q1715.2 626.903 1712.79 626.163 L1712.79 621.464 Q1714.87 622.598 1717.1 623.153 Q1719.32 623.709 1721.79 623.709 Q1725.8 623.709 1728.14 621.603 Q1730.47 619.496 1730.47 615.885 Q1730.47 612.274 1728.14 610.167 Q1725.8 608.061 1721.79 608.061 Q1719.92 608.061 1718.04 608.478 Q1716.19 608.894 1714.25 609.774 L1714.25 592.413 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1618.65 452.809 Q1615.04 452.809 1613.21 456.374 Q1611.4 459.915 1611.4 467.045 Q1611.4 474.152 1613.21 477.716 Q1615.04 481.258 1618.65 481.258 Q1622.28 481.258 1624.09 477.716 Q1625.92 474.152 1625.92 467.045 Q1625.92 459.915 1624.09 456.374 Q1622.28 452.809 1618.65 452.809 M1618.65 449.105 Q1624.46 449.105 1627.51 453.712 Q1630.59 458.295 1630.59 467.045 Q1630.59 475.772 1627.51 480.378 Q1624.46 484.962 1618.65 484.962 Q1612.84 484.962 1609.76 480.378 Q1606.7 475.772 1606.7 467.045 Q1606.7 458.295 1609.76 453.712 Q1612.84 449.105 1618.65 449.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 478.411 L1643.69 478.411 L1643.69 484.29 L1638.81 484.29 L1638.81 478.411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1654.69 480.355 L1662.33 480.355 L1662.33 453.99 L1654.02 455.656 L1654.02 451.397 L1662.28 449.73 L1666.96 449.73 L1666.96 480.355 L1674.6 480.355 L1674.6 484.29 L1654.69 484.29 L1654.69 480.355 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1694.04 452.809 Q1690.43 452.809 1688.6 456.374 Q1686.79 459.915 1686.79 467.045 Q1686.79 474.152 1688.6 477.716 Q1690.43 481.258 1694.04 481.258 Q1697.67 481.258 1699.48 477.716 Q1701.31 474.152 1701.31 467.045 Q1701.31 459.915 1699.48 456.374 Q1697.67 452.809 1694.04 452.809 M1694.04 449.105 Q1699.85 449.105 1702.91 453.712 Q1705.98 458.295 1705.98 467.045 Q1705.98 475.772 1702.91 480.378 Q1699.85 484.962 1694.04 484.962 Q1688.23 484.962 1685.15 480.378 Q1682.1 475.772 1682.1 467.045 Q1682.1 458.295 1685.15 453.712 Q1688.23 449.105 1694.04 449.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1724.2 452.809 Q1720.59 452.809 1718.76 456.374 Q1716.96 459.915 1716.96 467.045 Q1716.96 474.152 1718.76 477.716 Q1720.59 481.258 1724.2 481.258 Q1727.84 481.258 1729.64 477.716 Q1731.47 474.152 1731.47 467.045 Q1731.47 459.915 1729.64 456.374 Q1727.84 452.809 1724.2 452.809 M1724.2 449.105 Q1730.01 449.105 1733.07 453.712 Q1736.15 458.295 1736.15 467.045 Q1736.15 475.772 1733.07 480.378 Q1730.01 484.962 1724.2 484.962 Q1718.39 484.962 1715.31 480.378 Q1712.26 475.772 1712.26 467.045 Q1712.26 458.295 1715.31 453.712 Q1718.39 449.105 1724.2 449.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1618.65 310.127 Q1615.04 310.127 1613.21 313.691 Q1611.4 317.233 1611.4 324.363 Q1611.4 331.469 1613.21 335.034 Q1615.04 338.575 1618.65 338.575 Q1622.28 338.575 1624.09 335.034 Q1625.92 331.469 1625.92 324.363 Q1625.92 317.233 1624.09 313.691 Q1622.28 310.127 1618.65 310.127 M1618.65 306.423 Q1624.46 306.423 1627.51 311.029 Q1630.59 315.613 1630.59 324.363 Q1630.59 333.089 1627.51 337.696 Q1624.46 342.279 1618.65 342.279 Q1612.84 342.279 1609.76 337.696 Q1606.7 333.089 1606.7 324.363 Q1606.7 315.613 1609.76 311.029 Q1612.84 306.423 1618.65 306.423 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 335.728 L1643.69 335.728 L1643.69 341.608 L1638.81 341.608 L1638.81 335.728 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1654.69 337.673 L1662.33 337.673 L1662.33 311.307 L1654.02 312.974 L1654.02 308.715 L1662.28 307.048 L1666.96 307.048 L1666.96 337.673 L1674.6 337.673 L1674.6 341.608 L1654.69 341.608 L1654.69 337.673 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1688.07 337.673 L1704.39 337.673 L1704.39 341.608 L1682.44 341.608 L1682.44 337.673 Q1685.1 334.918 1689.69 330.288 Q1694.29 325.636 1695.48 324.293 Q1697.72 321.77 1698.6 320.034 Q1699.5 318.275 1699.5 316.585 Q1699.5 313.83 1697.56 312.094 Q1695.64 310.358 1692.54 310.358 Q1690.34 310.358 1687.88 311.122 Q1685.45 311.886 1682.67 313.437 L1682.67 308.715 Q1685.5 307.58 1687.95 307.002 Q1690.41 306.423 1692.44 306.423 Q1697.81 306.423 1701.01 309.108 Q1704.2 311.793 1704.2 316.284 Q1704.2 318.414 1703.39 320.335 Q1702.6 322.233 1700.5 324.826 Q1699.92 325.497 1696.82 328.714 Q1693.72 331.909 1688.07 337.673 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1714.25 307.048 L1732.6 307.048 L1732.6 310.983 L1718.53 310.983 L1718.53 319.455 Q1719.55 319.108 1720.57 318.946 Q1721.59 318.761 1722.6 318.761 Q1728.39 318.761 1731.77 321.932 Q1735.15 325.103 1735.15 330.52 Q1735.15 336.099 1731.68 339.2 Q1728.21 342.279 1721.89 342.279 Q1719.71 342.279 1717.44 341.909 Q1715.2 341.538 1712.79 340.798 L1712.79 336.099 Q1714.87 337.233 1717.1 337.788 Q1719.32 338.344 1721.79 338.344 Q1725.8 338.344 1728.14 336.238 Q1730.47 334.131 1730.47 330.52 Q1730.47 326.909 1728.14 324.802 Q1725.8 322.696 1721.79 322.696 Q1719.92 322.696 1718.04 323.113 Q1716.19 323.529 1714.25 324.409 L1714.25 307.048 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1618.65 167.444 Q1615.04 167.444 1613.21 171.009 Q1611.4 174.55 1611.4 181.68 Q1611.4 188.787 1613.21 192.351 Q1615.04 195.893 1618.65 195.893 Q1622.28 195.893 1624.09 192.351 Q1625.92 188.787 1625.92 181.68 Q1625.92 174.55 1624.09 171.009 Q1622.28 167.444 1618.65 167.444 M1618.65 163.74 Q1624.46 163.74 1627.51 168.347 Q1630.59 172.93 1630.59 181.68 Q1630.59 190.407 1627.51 195.013 Q1624.46 199.597 1618.65 199.597 Q1612.84 199.597 1609.76 195.013 Q1606.7 190.407 1606.7 181.68 Q1606.7 172.93 1609.76 168.347 Q1612.84 163.74 1618.65 163.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1638.81 193.046 L1643.69 193.046 L1643.69 198.925 L1638.81 198.925 L1638.81 193.046 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1654.69 194.99 L1662.33 194.99 L1662.33 168.625 L1654.02 170.291 L1654.02 166.032 L1662.28 164.365 L1666.96 164.365 L1666.96 194.99 L1674.6 194.99 L1674.6 198.925 L1654.69 198.925 L1654.69 194.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1684.09 164.365 L1702.44 164.365 L1702.44 168.301 L1688.37 168.301 L1688.37 176.773 Q1689.39 176.425 1690.41 176.263 Q1691.42 176.078 1692.44 176.078 Q1698.23 176.078 1701.61 179.25 Q1704.99 182.421 1704.99 187.837 Q1704.99 193.416 1701.52 196.518 Q1698.04 199.597 1691.73 199.597 Q1689.55 199.597 1687.28 199.226 Q1685.04 198.856 1682.63 198.115 L1682.63 193.416 Q1684.71 194.55 1686.93 195.106 Q1689.16 195.661 1691.63 195.661 Q1695.64 195.661 1697.98 193.555 Q1700.31 191.449 1700.31 187.837 Q1700.31 184.226 1697.98 182.12 Q1695.64 180.013 1691.63 180.013 Q1689.76 180.013 1687.88 180.43 Q1686.03 180.847 1684.09 181.726 L1684.09 164.365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1724.2 167.444 Q1720.59 167.444 1718.76 171.009 Q1716.96 174.55 1716.96 181.68 Q1716.96 188.787 1718.76 192.351 Q1720.59 195.893 1724.2 195.893 Q1727.84 195.893 1729.64 192.351 Q1731.47 188.787 1731.47 181.68 Q1731.47 174.55 1729.64 171.009 Q1727.84 167.444 1724.2 167.444 M1724.2 163.74 Q1730.01 163.74 1733.07 168.347 Q1736.15 172.93 1736.15 181.68 Q1736.15 190.407 1733.07 195.013 Q1730.01 199.597 1724.2 199.597 Q1718.39 199.597 1715.31 195.013 Q1712.26 190.407 1712.26 181.68 Q1712.26 172.93 1715.31 168.347 Q1718.39 163.74 1724.2 163.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1552.7,1028.41 1552.7,898.687 1588.7,898.687 1552.7,898.687 1552.7,756.004 1588.7,756.004 1552.7,756.004 1552.7,613.322 1588.7,613.322 1552.7,613.322 \n", " 1552.7,470.639 1588.7,470.639 1552.7,470.639 1552.7,327.957 1588.7,327.957 1552.7,327.957 1552.7,185.274 1588.7,185.274 1552.7,185.274 1552.7,133.04 \n", " \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"\n", "M2019.04 1028.41 L3152.95 1028.41 L3152.95 133.04 L2019.04 133.04 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip074\">\n", " <rect x=\"2019\" y=\"133\" width=\"1135\" height=\"896\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,1028.41 2019.04,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2208.02,1028.41 2208.02,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2397.01,1028.41 2397.01,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2585.99,1028.41 2585.99,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2774.98,1028.41 2774.98,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2963.96,1028.41 2963.96,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 3152.95,1028.41 3152.95,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,1028.41 3152.95,1028.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,1028.41 2019.04,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2208.02,1028.41 2208.02,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2397.01,1028.41 2397.01,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2585.99,1028.41 2585.99,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2774.98,1028.41 2774.98,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2963.96,1028.41 2963.96,1009.51 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3152.95,1028.41 3152.95,1009.51 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M1966.07 1083.58 L1995.74 1083.58 L1995.74 1087.52 L1966.07 1087.52 L1966.07 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2006.64 1096.48 L2014.28 1096.48 L2014.28 1070.11 L2005.97 1071.78 L2005.97 1067.52 L2014.24 1065.85 L2018.91 1065.85 L2018.91 1096.48 L2026.55 1096.48 L2026.55 1100.41 L2006.64 1100.41 L2006.64 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2036 1094.53 L2040.88 1094.53 L2040.88 1100.41 L2036 1100.41 L2036 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2051.11 1065.85 L2069.47 1065.85 L2069.47 1069.79 L2055.39 1069.79 L2055.39 1078.26 Q2056.41 1077.91 2057.43 1077.75 Q2058.45 1077.57 2059.47 1077.57 Q2065.25 1077.57 2068.63 1080.74 Q2072.01 1083.91 2072.01 1089.32 Q2072.01 1094.9 2068.54 1098 Q2065.07 1101.08 2058.75 1101.08 Q2056.57 1101.08 2054.31 1100.71 Q2052.06 1100.34 2049.65 1099.6 L2049.65 1094.9 Q2051.74 1096.04 2053.96 1096.59 Q2056.18 1097.15 2058.66 1097.15 Q2062.66 1097.15 2065 1095.04 Q2067.34 1092.94 2067.34 1089.32 Q2067.34 1085.71 2065 1083.61 Q2062.66 1081.5 2058.66 1081.5 Q2056.78 1081.5 2054.91 1081.92 Q2053.06 1082.33 2051.11 1083.21 L2051.11 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2154.55 1083.58 L2184.23 1083.58 L2184.23 1087.52 L2154.55 1087.52 L2154.55 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2195.13 1096.48 L2202.77 1096.48 L2202.77 1070.11 L2194.46 1071.78 L2194.46 1067.52 L2202.72 1065.85 L2207.4 1065.85 L2207.4 1096.48 L2215.04 1096.48 L2215.04 1100.41 L2195.13 1100.41 L2195.13 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2224.48 1094.53 L2229.37 1094.53 L2229.37 1100.41 L2224.48 1100.41 L2224.48 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2249.55 1068.93 Q2245.94 1068.93 2244.11 1072.5 Q2242.31 1076.04 2242.31 1083.17 Q2242.31 1090.27 2244.11 1093.84 Q2245.94 1097.38 2249.55 1097.38 Q2253.19 1097.38 2254.99 1093.84 Q2256.82 1090.27 2256.82 1083.17 Q2256.82 1076.04 2254.99 1072.5 Q2253.19 1068.93 2249.55 1068.93 M2249.55 1065.23 Q2255.36 1065.23 2258.42 1069.83 Q2261.5 1074.42 2261.5 1083.17 Q2261.5 1091.89 2258.42 1096.5 Q2255.36 1101.08 2249.55 1101.08 Q2243.74 1101.08 2240.66 1096.5 Q2237.61 1091.89 2237.61 1083.17 Q2237.61 1074.42 2240.66 1069.83 Q2243.74 1065.23 2249.55 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2344.03 1083.58 L2373.71 1083.58 L2373.71 1087.52 L2344.03 1087.52 L2344.03 1083.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2393.8 1068.93 Q2390.19 1068.93 2388.36 1072.5 Q2386.56 1076.04 2386.56 1083.17 Q2386.56 1090.27 2388.36 1093.84 Q2390.19 1097.38 2393.8 1097.38 Q2397.44 1097.38 2399.24 1093.84 Q2401.07 1090.27 2401.07 1083.17 Q2401.07 1076.04 2399.24 1072.5 Q2397.44 1068.93 2393.8 1068.93 M2393.8 1065.23 Q2399.61 1065.23 2402.67 1069.83 Q2405.75 1074.42 2405.75 1083.17 Q2405.75 1091.89 2402.67 1096.5 Q2399.61 1101.08 2393.8 1101.08 Q2387.99 1101.08 2384.91 1096.5 Q2381.86 1091.89 2381.86 1083.17 Q2381.86 1074.42 2384.91 1069.83 Q2387.99 1065.23 2393.8 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2413.97 1094.53 L2418.85 1094.53 L2418.85 1100.41 L2413.97 1100.41 L2413.97 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2429.08 1065.85 L2447.44 1065.85 L2447.44 1069.79 L2433.36 1069.79 L2433.36 1078.26 Q2434.38 1077.91 2435.4 1077.75 Q2436.42 1077.57 2437.44 1077.57 Q2443.22 1077.57 2446.6 1080.74 Q2449.98 1083.91 2449.98 1089.32 Q2449.98 1094.9 2446.51 1098 Q2443.04 1101.08 2436.72 1101.08 Q2434.54 1101.08 2432.28 1100.71 Q2430.03 1100.34 2427.62 1099.6 L2427.62 1094.9 Q2429.71 1096.04 2431.93 1096.59 Q2434.15 1097.15 2436.63 1097.15 Q2440.63 1097.15 2442.97 1095.04 Q2445.31 1092.94 2445.31 1089.32 Q2445.31 1085.71 2442.97 1083.61 Q2440.63 1081.5 2436.63 1081.5 Q2434.75 1081.5 2432.88 1081.92 Q2431.03 1082.33 2429.08 1083.21 L2429.08 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2563.38 1068.93 Q2559.77 1068.93 2557.94 1072.5 Q2556.13 1076.04 2556.13 1083.17 Q2556.13 1090.27 2557.94 1093.84 Q2559.77 1097.38 2563.38 1097.38 Q2567.01 1097.38 2568.82 1093.84 Q2570.65 1090.27 2570.65 1083.17 Q2570.65 1076.04 2568.82 1072.5 Q2567.01 1068.93 2563.38 1068.93 M2563.38 1065.23 Q2569.19 1065.23 2572.24 1069.83 Q2575.32 1074.42 2575.32 1083.17 Q2575.32 1091.89 2572.24 1096.5 Q2569.19 1101.08 2563.38 1101.08 Q2557.57 1101.08 2554.49 1096.5 Q2551.43 1091.89 2551.43 1083.17 Q2551.43 1074.42 2554.49 1069.83 Q2557.57 1065.23 2563.38 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2583.54 1094.53 L2588.42 1094.53 L2588.42 1100.41 L2583.54 1100.41 L2583.54 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2608.61 1068.93 Q2605 1068.93 2603.17 1072.5 Q2601.36 1076.04 2601.36 1083.17 Q2601.36 1090.27 2603.17 1093.84 Q2605 1097.38 2608.61 1097.38 Q2612.24 1097.38 2614.05 1093.84 Q2615.88 1090.27 2615.88 1083.17 Q2615.88 1076.04 2614.05 1072.5 Q2612.24 1068.93 2608.61 1068.93 M2608.61 1065.23 Q2614.42 1065.23 2617.48 1069.83 Q2620.55 1074.42 2620.55 1083.17 Q2620.55 1091.89 2617.48 1096.5 Q2614.42 1101.08 2608.61 1101.08 Q2602.8 1101.08 2599.72 1096.5 Q2596.67 1091.89 2596.67 1083.17 Q2596.67 1074.42 2599.72 1069.83 Q2602.8 1065.23 2608.61 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2752.86 1068.93 Q2749.25 1068.93 2747.42 1072.5 Q2745.62 1076.04 2745.62 1083.17 Q2745.62 1090.27 2747.42 1093.84 Q2749.25 1097.38 2752.86 1097.38 Q2756.5 1097.38 2758.3 1093.84 Q2760.13 1090.27 2760.13 1083.17 Q2760.13 1076.04 2758.3 1072.5 Q2756.5 1068.93 2752.86 1068.93 M2752.86 1065.23 Q2758.67 1065.23 2761.73 1069.83 Q2764.81 1074.42 2764.81 1083.17 Q2764.81 1091.89 2761.73 1096.5 Q2758.67 1101.08 2752.86 1101.08 Q2747.05 1101.08 2743.97 1096.5 Q2740.92 1091.89 2740.92 1083.17 Q2740.92 1074.42 2743.97 1069.83 Q2747.05 1065.23 2752.86 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2773.02 1094.53 L2777.91 1094.53 L2777.91 1100.41 L2773.02 1100.41 L2773.02 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2788.14 1065.85 L2806.49 1065.85 L2806.49 1069.79 L2792.42 1069.79 L2792.42 1078.26 Q2793.44 1077.91 2794.46 1077.75 Q2795.48 1077.57 2796.49 1077.57 Q2802.28 1077.57 2805.66 1080.74 Q2809.04 1083.91 2809.04 1089.32 Q2809.04 1094.9 2805.57 1098 Q2802.1 1101.08 2795.78 1101.08 Q2793.6 1101.08 2791.33 1100.71 Q2789.09 1100.34 2786.68 1099.6 L2786.68 1094.9 Q2788.76 1096.04 2790.99 1096.59 Q2793.21 1097.15 2795.68 1097.15 Q2799.69 1097.15 2802.03 1095.04 Q2804.37 1092.94 2804.37 1089.32 Q2804.37 1085.71 2802.03 1083.61 Q2799.69 1081.5 2795.68 1081.5 Q2793.81 1081.5 2791.93 1081.92 Q2790.08 1082.33 2788.14 1083.21 L2788.14 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2931.12 1096.48 L2938.76 1096.48 L2938.76 1070.11 L2930.45 1071.78 L2930.45 1067.52 L2938.71 1065.85 L2943.38 1065.85 L2943.38 1096.48 L2951.02 1096.48 L2951.02 1100.41 L2931.12 1100.41 L2931.12 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2960.47 1094.53 L2965.35 1094.53 L2965.35 1100.41 L2960.47 1100.41 L2960.47 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2985.54 1068.93 Q2981.93 1068.93 2980.1 1072.5 Q2978.29 1076.04 2978.29 1083.17 Q2978.29 1090.27 2980.1 1093.84 Q2981.93 1097.38 2985.54 1097.38 Q2989.17 1097.38 2990.98 1093.84 Q2992.81 1090.27 2992.81 1083.17 Q2992.81 1076.04 2990.98 1072.5 Q2989.17 1068.93 2985.54 1068.93 M2985.54 1065.23 Q2991.35 1065.23 2994.4 1069.83 Q2997.48 1074.42 2997.48 1083.17 Q2997.48 1091.89 2994.4 1096.5 Q2991.35 1101.08 2985.54 1101.08 Q2979.73 1101.08 2976.65 1096.5 Q2973.59 1091.89 2973.59 1083.17 Q2973.59 1074.42 2976.65 1069.83 Q2979.73 1065.23 2985.54 1065.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3120.6 1096.48 L3128.24 1096.48 L3128.24 1070.11 L3119.93 1071.78 L3119.93 1067.52 L3128.19 1065.85 L3132.87 1065.85 L3132.87 1096.48 L3140.51 1096.48 L3140.51 1100.41 L3120.6 1100.41 L3120.6 1096.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3149.95 1094.53 L3154.83 1094.53 L3154.83 1100.41 L3149.95 1100.41 L3149.95 1094.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3165.07 1065.85 L3183.42 1065.85 L3183.42 1069.79 L3169.35 1069.79 L3169.35 1078.26 Q3170.37 1077.91 3171.39 1077.75 Q3172.4 1077.57 3173.42 1077.57 Q3179.21 1077.57 3182.59 1080.74 Q3185.97 1083.91 3185.97 1089.32 Q3185.97 1094.9 3182.5 1098 Q3179.02 1101.08 3172.71 1101.08 Q3170.53 1101.08 3168.26 1100.71 Q3166.02 1100.34 3163.61 1099.6 L3163.61 1094.9 Q3165.69 1096.04 3167.91 1096.59 Q3170.14 1097.15 3172.61 1097.15 Q3176.62 1097.15 3178.96 1095.04 Q3181.29 1092.94 3181.29 1089.32 Q3181.29 1085.71 3178.96 1083.61 Q3176.62 1081.5 3172.61 1081.5 Q3170.74 1081.5 3168.86 1081.92 Q3167.01 1082.33 3165.07 1083.21 L3165.07 1065.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2576.6 1168.68 L2556.33 1168.68 Q2556.81 1178.19 2559 1182.24 Q2561.74 1187.2 2566.48 1187.2 Q2571.26 1187.2 2573.9 1182.21 Q2576.22 1177.81 2576.6 1168.68 M2576.51 1163.27 Q2575.62 1154.23 2573.9 1151.05 Q2571.16 1146.02 2566.48 1146.02 Q2561.61 1146.02 2559.04 1150.98 Q2557 1154.99 2556.39 1163.27 L2576.51 1163.27 M2566.48 1141.24 Q2574.12 1141.24 2578.48 1147.99 Q2582.84 1154.71 2582.84 1166.61 Q2582.84 1178.48 2578.48 1185.23 Q2574.12 1192.01 2566.48 1192.01 Q2558.81 1192.01 2554.48 1185.23 Q2550.12 1178.48 2550.12 1166.61 Q2550.12 1154.71 2554.48 1147.99 Q2558.81 1141.24 2566.48 1141.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2594.49 1185.87 L2605 1185.87 L2605 1149.61 L2593.57 1151.9 L2593.57 1146.05 L2604.93 1143.76 L2611.36 1143.76 L2611.36 1185.87 L2621.86 1185.87 L2621.86 1191.28 L2594.49 1191.28 L2594.49 1185.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,938.875 3152.95,938.875 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,759.801 3152.95,759.801 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,580.726 3152.95,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,401.651 3152.95,401.651 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2019.04,222.577 3152.95,222.577 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,1028.41 2019.04,133.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,938.875 2033.38,938.875 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,759.801 2033.38,759.801 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,580.726 2033.38,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,401.651 2033.38,401.651 \n", " \"/>\n", "<polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2019.04,222.577 2033.38,222.577 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M1904.92 939.326 L1934.6 939.326 L1934.6 943.262 L1904.92 943.262 L1904.92 939.326 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1948.72 952.22 L1965.04 952.22 L1965.04 956.155 L1943.1 956.155 L1943.1 952.22 Q1945.76 949.465 1950.34 944.836 Q1954.95 940.183 1956.13 938.84 Q1958.37 936.317 1959.25 934.581 Q1960.16 932.822 1960.16 931.132 Q1960.16 928.377 1958.21 926.641 Q1956.29 924.905 1953.19 924.905 Q1950.99 924.905 1948.53 925.669 Q1946.1 926.433 1943.33 927.984 L1943.33 923.262 Q1946.15 922.127 1948.6 921.549 Q1951.06 920.97 1953.1 920.97 Q1958.47 920.97 1961.66 923.655 Q1964.85 926.34 1964.85 930.831 Q1964.85 932.961 1964.04 934.882 Q1963.26 936.78 1961.15 939.373 Q1960.57 940.044 1957.47 943.262 Q1954.37 946.456 1948.72 952.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1904.55 760.252 L1934.23 760.252 L1934.23 764.187 L1904.55 764.187 L1904.55 760.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1945.13 773.145 L1952.77 773.145 L1952.77 746.78 L1944.46 748.446 L1944.46 744.187 L1952.72 742.521 L1957.4 742.521 L1957.4 773.145 L1965.04 773.145 L1965.04 777.081 L1945.13 777.081 L1945.13 773.145 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1953.1 566.525 Q1949.48 566.525 1947.66 570.089 Q1945.85 573.631 1945.85 580.761 Q1945.85 587.867 1947.66 591.432 Q1949.48 594.974 1953.1 594.974 Q1956.73 594.974 1958.53 591.432 Q1960.36 587.867 1960.36 580.761 Q1960.36 573.631 1958.53 570.089 Q1956.73 566.525 1953.1 566.525 M1953.1 562.821 Q1958.91 562.821 1961.96 567.427 Q1965.04 572.011 1965.04 580.761 Q1965.04 589.488 1961.96 594.094 Q1958.91 598.677 1953.1 598.677 Q1947.28 598.677 1944.21 594.094 Q1941.15 589.488 1941.15 580.761 Q1941.15 572.011 1944.21 567.427 Q1947.28 562.821 1953.1 562.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1945.13 414.996 L1952.77 414.996 L1952.77 388.631 L1944.46 390.297 L1944.46 386.038 L1952.72 384.371 L1957.4 384.371 L1957.4 414.996 L1965.04 414.996 L1965.04 418.931 L1945.13 418.931 L1945.13 414.996 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M1948.72 235.922 L1965.04 235.922 L1965.04 239.857 L1943.1 239.857 L1943.1 235.922 Q1945.76 233.167 1950.34 228.538 Q1954.95 223.885 1956.13 222.542 Q1958.37 220.019 1959.25 218.283 Q1960.16 216.524 1960.16 214.834 Q1960.16 212.079 1958.21 210.343 Q1956.29 208.607 1953.19 208.607 Q1950.99 208.607 1948.53 209.371 Q1946.1 210.135 1943.33 211.686 L1943.33 206.964 Q1946.15 205.829 1948.6 205.251 Q1951.06 204.672 1953.1 204.672 Q1958.47 204.672 1961.66 207.357 Q1964.85 210.042 1964.85 214.533 Q1964.85 216.663 1964.04 218.584 Q1963.26 220.482 1961.15 223.075 Q1960.57 223.746 1957.47 226.963 Q1954.37 230.158 1948.72 235.922 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2411.14 65.7705 L2411.14 89.8329 L2403.64 89.8329 L2403.64 27.2059 L2411.14 27.2059 L2411.14 34.0924 Q2413.49 30.0415 2417.05 28.0971 Q2420.66 26.1121 2425.64 26.1121 Q2433.9 26.1121 2439.05 32.6746 Q2444.23 39.2371 2444.23 49.9314 Q2444.23 60.6258 2439.05 67.1883 Q2433.9 73.7508 2425.64 73.7508 Q2420.66 73.7508 2417.05 71.8063 Q2413.49 69.8214 2411.14 65.7705 M2436.5 49.9314 Q2436.5 41.7081 2433.09 37.0496 Q2429.73 32.3505 2423.82 32.3505 Q2417.9 32.3505 2414.5 37.0496 Q2411.14 41.7081 2411.14 49.9314 Q2411.14 58.1548 2414.5 62.8538 Q2417.9 67.5124 2423.82 67.5124 Q2429.73 67.5124 2433.09 62.8538 Q2436.5 58.1548 2436.5 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2474.17 32.4315 Q2468.17 32.4315 2464.69 37.1306 Q2461.21 41.7891 2461.21 49.9314 Q2461.21 58.0738 2464.65 62.7728 Q2468.13 67.4314 2474.17 67.4314 Q2480.12 67.4314 2483.61 62.7323 Q2487.09 58.0333 2487.09 49.9314 Q2487.09 41.8701 2483.61 37.1711 Q2480.12 32.4315 2474.17 32.4315 M2474.17 26.1121 Q2483.89 26.1121 2489.44 32.4315 Q2494.99 38.7509 2494.99 49.9314 Q2494.99 61.0714 2489.44 67.4314 Q2483.89 73.7508 2474.17 73.7508 Q2464.41 73.7508 2458.86 67.4314 Q2453.35 61.0714 2453.35 49.9314 Q2453.35 38.7509 2458.86 32.4315 Q2464.41 26.1121 2474.17 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2536.27 28.5427 L2536.27 35.5912 Q2533.11 33.9709 2529.71 33.1607 Q2526.3 32.3505 2522.66 32.3505 Q2517.11 32.3505 2514.31 34.0519 Q2511.56 35.7533 2511.56 39.156 Q2511.56 41.7486 2513.54 43.2475 Q2515.53 44.7058 2521.52 46.0426 L2524.08 46.6097 Q2532.02 48.3111 2535.34 51.4303 Q2538.7 54.509 2538.7 60.0587 Q2538.7 66.3781 2533.68 70.0644 Q2528.69 73.7508 2519.94 73.7508 Q2516.3 73.7508 2512.33 73.0216 Q2508.4 72.3329 2504.02 70.9151 L2504.02 63.2184 Q2508.16 65.3654 2512.17 66.4591 Q2516.18 67.5124 2520.11 67.5124 Q2525.37 67.5124 2528.21 65.73 Q2531.04 63.9071 2531.04 60.6258 Q2531.04 57.5877 2528.98 55.9673 Q2526.95 54.3469 2520.02 52.8481 L2517.43 52.2405 Q2510.51 50.7821 2507.43 47.7845 Q2504.35 44.7463 2504.35 39.4801 Q2504.35 33.0797 2508.88 29.5959 Q2513.42 26.1121 2521.77 26.1121 Q2525.9 26.1121 2529.54 26.7198 Q2533.19 27.3274 2536.27 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2557.94 14.324 L2557.94 27.2059 L2573.29 27.2059 L2573.29 32.9987 L2557.94 32.9987 L2557.94 57.6282 Q2557.94 63.1779 2559.44 64.7578 Q2560.98 66.3376 2565.64 66.3376 L2573.29 66.3376 L2573.29 72.576 L2565.64 72.576 Q2557.01 72.576 2553.73 69.3758 Q2550.45 66.1351 2550.45 57.6282 L2550.45 32.9987 L2544.98 32.9987 L2544.98 27.2059 L2550.45 27.2059 L2550.45 14.324 L2557.94 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2621.91 48.0275 L2621.91 51.6733 L2587.63 51.6733 Q2588.12 59.3701 2592.25 63.421 Q2596.42 67.4314 2603.84 67.4314 Q2608.13 67.4314 2612.14 66.3781 Q2616.19 65.3249 2620.16 63.2184 L2620.16 70.267 Q2616.15 71.9684 2611.94 72.8596 Q2607.73 73.7508 2603.39 73.7508 Q2592.54 73.7508 2586.18 67.4314 Q2579.86 61.1119 2579.86 50.3365 Q2579.86 39.1965 2585.85 32.6746 Q2591.89 26.1121 2602.1 26.1121 Q2611.25 26.1121 2616.56 32.0264 Q2621.91 37.9003 2621.91 48.0275 M2614.45 45.84 Q2614.37 39.7232 2611.01 36.0774 Q2607.69 32.4315 2602.18 32.4315 Q2595.94 32.4315 2592.17 35.9558 Q2588.44 39.4801 2587.88 45.8805 L2614.45 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2660.43 34.1734 Q2659.17 33.4443 2657.67 33.1202 Q2656.22 32.7556 2654.43 32.7556 Q2648.11 32.7556 2644.71 36.8875 Q2641.35 40.9789 2641.35 48.6757 L2641.35 72.576 L2633.86 72.576 L2633.86 27.2059 L2641.35 27.2059 L2641.35 34.2544 Q2643.7 30.1225 2647.47 28.1376 Q2651.23 26.1121 2656.62 26.1121 Q2657.39 26.1121 2658.32 26.2337 Q2659.25 26.3147 2660.39 26.5172 L2660.43 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2668.25 27.2059 L2675.7 27.2059 L2675.7 72.576 L2668.25 72.576 L2668.25 27.2059 M2668.25 9.54393 L2675.7 9.54393 L2675.7 18.9825 L2668.25 18.9825 L2668.25 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2708.88 32.4315 Q2702.88 32.4315 2699.4 37.1306 Q2695.92 41.7891 2695.92 49.9314 Q2695.92 58.0738 2699.36 62.7728 Q2702.84 67.4314 2708.88 67.4314 Q2714.83 67.4314 2718.32 62.7323 Q2721.8 58.0333 2721.8 49.9314 Q2721.8 41.8701 2718.32 37.1711 Q2714.83 32.4315 2708.88 32.4315 M2708.88 26.1121 Q2718.6 26.1121 2724.15 32.4315 Q2729.7 38.7509 2729.7 49.9314 Q2729.7 61.0714 2724.15 67.4314 Q2718.6 73.7508 2708.88 73.7508 Q2699.12 73.7508 2693.57 67.4314 Q2688.06 61.0714 2688.06 49.9314 Q2688.06 38.7509 2693.57 32.4315 Q2699.12 26.1121 2708.88 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M2768.35 34.1734 Q2767.09 33.4443 2765.59 33.1202 Q2764.13 32.7556 2762.35 32.7556 Q2756.03 32.7556 2752.63 36.8875 Q2749.27 40.9789 2749.27 48.6757 L2749.27 72.576 L2741.77 72.576 L2741.77 27.2059 L2749.27 27.2059 L2749.27 34.2544 Q2751.62 30.1225 2755.38 28.1376 Q2759.15 26.1121 2764.54 26.1121 Q2765.31 26.1121 2766.24 26.2337 Q2767.17 26.3147 2768.3 26.5172 L2768.35 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip074)\" style=\"stroke:#090621; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2582.73,554.708 2582.73,556.502 2582.73,558.297 2582.74,560.091 2582.74,561.885 2582.75,563.68 2582.76,565.474 2582.78,567.268 2582.79,569.063 2582.81,570.857 \n", " 2582.84,572.651 2582.87,574.446 2582.91,576.24 2582.95,578.034 2583.01,579.829 2583.08,581.623 2583.17,583.417 2583.29,585.212 2583.43,587.006 2583.61,588.8 \n", " 2583.85,590.595 2584.15,592.389 2584.55,594.183 2584.86,595.329 2584.88,595.978 2584.91,597.772 2584.93,599.566 2584.95,601.361 2584.96,603.155 2584.97,604.949 \n", " 2584.98,606.744 2584.99,608.538 2584.99,610.332 2585,612.127 2585,613.921 2585.01,615.715 2585.02,617.51 2585.03,619.304 2585.05,621.098 2585.06,622.893 \n", " 2585.08,624.687 2585.11,626.482 2585.14,628.276 2585.17,630.07 2585.22,631.865 2585.27,633.659 2585.34,635.453 2585.43,637.248 2585.54,639.042 2585.67,640.836 \n", " 2585.85,642.631 2586.07,644.425 2586.36,646.219 2586.74,648.014 2587.13,649.508 2587.76,648.014 2588.19,646.219 2588.46,644.425 2588.64,642.631 2588.76,640.836 \n", " 2588.86,639.042 2588.94,637.248 2589,635.453 2589.05,633.659 2589.09,631.865 2589.12,630.07 2589.15,628.276 2589.17,626.482 2589.19,624.687 2589.2,622.893 \n", " 2589.22,621.098 2589.23,619.304 2589.24,617.51 2589.25,615.715 2589.25,613.921 2589.25,612.127 2589.26,610.332 2589.26,608.538 2589.26,606.744 2589.26,604.949 \n", " 2589.25,603.155 2589.25,601.361 2589.24,599.566 2589.23,597.772 2589.22,595.978 2589.21,594.183 2589.19,592.389 2589.17,590.595 2589.14,588.8 2589.11,587.006 \n", " 2589.07,585.212 2589.03,583.417 2588.97,581.623 2588.89,579.829 2588.8,578.034 2588.69,576.24 2588.54,574.446 2588.35,572.651 2588.11,570.857 2587.8,569.063 \n", " 2587.4,567.268 2587.13,566.271 2587.11,565.474 2587.08,563.68 2587.05,561.885 2587.04,560.091 2587.03,558.297 2587.02,556.502 2587.01,554.708 2587.01,552.914 \n", " 2587,551.119 2586.99,549.325 2586.99,547.531 2586.98,545.736 2586.97,543.942 2586.96,542.148 2586.94,540.353 2586.93,538.559 2586.91,536.765 2586.89,534.97 \n", " 2586.86,533.176 2586.82,531.382 2586.78,529.587 2586.72,527.793 2586.66,525.999 2586.57,524.204 2586.47,522.41 2586.34,520.616 2586.17,518.821 2585.95,517.027 \n", " 2585.67,515.233 2585.3,513.438 2584.86,511.761 2584.13,513.438 2583.72,515.233 2583.48,517.027 2583.31,518.821 2583.19,520.616 2583.1,522.41 2583.03,524.204 \n", " 2582.98,525.999 2582.93,527.793 2582.89,529.587 2582.86,531.382 2582.83,533.176 2582.81,534.97 2582.79,536.765 2582.78,538.559 2582.76,540.353 2582.75,542.148 \n", " 2582.75,543.942 2582.74,545.736 2582.73,547.531 2582.73,549.325 2582.73,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#1f0c47; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2582.87,551.119 2582.88,549.325 2582.88,547.531 2582.9,545.736 2582.91,543.942 2582.93,542.148 2582.95,540.353 2582.98,538.559 2583.02,536.765 2583.06,534.97 \n", " 2583.11,533.176 2583.18,531.382 2583.25,529.587 2583.35,527.793 2583.47,525.999 2583.63,524.204 2583.82,522.41 2584.09,520.616 2584.45,518.821 2584.86,517.345 \n", " 2585.2,518.821 2585.54,520.616 2585.81,522.41 2586.02,524.204 2586.18,525.999 2586.32,527.793 2586.42,529.587 2586.51,531.382 2586.58,533.176 2586.64,534.97 \n", " 2586.69,536.765 2586.73,538.559 2586.76,540.353 2586.78,542.148 2586.8,543.942 2586.82,545.736 2586.84,547.531 2586.85,549.325 2586.86,551.119 2586.86,552.914 \n", " 2586.87,554.708 2586.87,556.502 2586.88,558.297 2586.88,560.091 2586.89,561.885 2586.9,563.68 2586.92,565.474 2586.95,567.268 2586.99,569.063 2587.06,570.857 \n", " 2587.13,571.9 2587.31,572.651 2587.68,574.446 2587.97,576.24 2588.2,578.034 2588.39,579.829 2588.53,581.623 2588.65,583.417 2588.74,585.212 2588.82,587.006 \n", " 2588.88,588.8 2588.93,590.595 2588.98,592.389 2589.01,594.183 2589.04,595.978 2589.06,597.772 2589.08,599.566 2589.09,601.361 2589.1,603.155 2589.11,604.949 \n", " 2589.11,606.744 2589.11,608.538 2589.11,610.332 2589.11,612.127 2589.1,613.921 2589.09,615.715 2589.07,617.51 2589.05,619.304 2589.03,621.098 2589,622.893 \n", " 2588.96,624.687 2588.92,626.482 2588.86,628.276 2588.8,630.07 2588.71,631.865 2588.61,633.659 2588.49,635.453 2588.33,637.248 2588.12,639.042 2587.85,640.836 \n", " 2587.48,642.631 2587.13,643.893 2586.84,642.631 2586.49,640.836 2586.22,639.042 2586,637.248 2585.83,635.453 2585.69,633.659 2585.58,631.865 2585.49,630.07 \n", " 2585.42,628.276 2585.36,626.482 2585.31,624.687 2585.27,622.893 2585.24,621.098 2585.21,619.304 2585.19,617.51 2585.17,615.715 2585.16,613.921 2585.15,612.127 \n", " 2585.14,610.332 2585.13,608.538 2585.13,606.744 2585.12,604.949 2585.12,603.155 2585.11,601.361 2585.1,599.566 2585.09,597.772 2585.07,595.978 2585.04,594.183 \n", " 2584.99,592.389 2584.91,590.595 2584.86,589.73 2584.64,588.8 2584.27,587.006 2583.99,585.212 2583.76,583.417 2583.58,581.623 2583.44,579.829 2583.32,578.034 \n", " 2583.23,576.24 2583.15,574.446 2583.09,572.651 2583.04,570.857 2583,569.063 2582.97,567.268 2582.94,565.474 2582.92,563.68 2582.9,561.885 2582.89,560.091 \n", " 2582.88,558.297 2582.87,556.502 2582.87,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#3b0964; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.01,554.708 2583.02,556.502 2583.03,558.297 2583.04,560.091 2583.06,561.885 2583.09,563.68 2583.12,565.474 2583.16,567.268 2583.21,569.063 2583.27,570.857 \n", " 2583.35,572.651 2583.44,574.446 2583.55,576.24 2583.69,578.034 2583.86,579.829 2584.08,581.623 2584.35,583.417 2584.69,585.212 2584.86,586.008 2584.99,587.006 \n", " 2585.13,588.8 2585.2,590.595 2585.24,592.389 2585.26,594.183 2585.27,595.978 2585.27,597.772 2585.27,599.566 2585.27,601.361 2585.27,603.155 2585.27,604.949 \n", " 2585.27,606.744 2585.28,608.538 2585.29,610.332 2585.3,612.127 2585.31,613.921 2585.33,615.715 2585.36,617.51 2585.39,619.304 2585.43,621.098 2585.48,622.893 \n", " 2585.54,624.687 2585.61,626.482 2585.7,628.276 2585.81,630.07 2585.94,631.865 2586.11,633.659 2586.32,635.453 2586.57,637.248 2586.9,639.042 2587.13,640.152 \n", " 2587.39,639.042 2587.72,637.248 2587.98,635.453 2588.18,633.659 2588.34,631.865 2588.47,630.07 2588.58,628.276 2588.66,626.482 2588.73,624.687 2588.79,622.893 \n", " 2588.83,621.098 2588.87,619.304 2588.9,617.51 2588.92,615.715 2588.94,613.921 2588.96,612.127 2588.96,610.332 2588.97,608.538 2588.97,606.744 2588.96,604.949 \n", " 2588.95,603.155 2588.94,601.361 2588.92,599.566 2588.89,597.772 2588.86,595.978 2588.81,594.183 2588.76,592.389 2588.7,590.595 2588.62,588.8 2588.53,587.006 \n", " 2588.41,585.212 2588.27,583.417 2588.1,581.623 2587.88,579.829 2587.6,578.034 2587.26,576.24 2587.13,575.648 2586.98,574.446 2586.85,572.651 2586.79,570.857 \n", " 2586.75,569.063 2586.73,567.268 2586.73,565.474 2586.72,563.68 2586.72,561.885 2586.73,560.091 2586.73,558.297 2586.73,556.502 2586.72,554.708 2586.72,552.914 \n", " 2586.71,551.119 2586.7,549.325 2586.68,547.531 2586.67,545.736 2586.64,543.942 2586.61,542.148 2586.57,540.353 2586.52,538.559 2586.47,536.765 2586.39,534.97 \n", " 2586.31,533.176 2586.2,531.382 2586.07,529.587 2585.91,527.793 2585.71,525.999 2585.46,524.204 2585.14,522.41 2584.86,521.06 2584.55,522.41 2584.22,524.204 \n", " 2583.97,525.999 2583.77,527.793 2583.62,529.587 2583.49,531.382 2583.39,533.176 2583.31,534.97 2583.24,536.765 2583.19,538.559 2583.14,540.353 2583.1,542.148 \n", " 2583.07,543.942 2583.05,545.736 2583.03,547.531 2583.02,549.325 2583.01,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#550f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.16,551.119 2583.17,549.325 2583.18,547.531 2583.21,545.736 2583.24,543.942 2583.28,542.148 2583.33,540.353 2583.39,538.559 2583.46,536.765 2583.56,534.97 \n", " 2583.67,533.176 2583.81,531.382 2583.98,529.587 2584.19,527.793 2584.46,525.999 2584.81,524.204 2584.86,523.99 2584.9,524.204 2585.23,525.999 2585.5,527.793 \n", " 2585.72,529.587 2585.89,531.382 2586.03,533.176 2586.15,534.97 2586.24,536.765 2586.32,538.559 2586.38,540.353 2586.43,542.148 2586.48,543.942 2586.51,545.736 \n", " 2586.53,547.531 2586.55,549.325 2586.57,551.119 2586.58,552.914 2586.58,554.708 2586.58,556.502 2586.58,558.297 2586.57,560.091 2586.56,561.885 2586.55,563.68 \n", " 2586.54,565.474 2586.52,567.268 2586.51,569.063 2586.51,570.857 2586.52,572.651 2586.55,574.446 2586.65,576.24 2586.93,578.034 2587.13,578.593 2587.37,579.829 \n", " 2587.66,581.623 2587.9,583.417 2588.09,585.212 2588.24,587.006 2588.36,588.8 2588.47,590.595 2588.55,592.389 2588.62,594.183 2588.67,595.978 2588.72,597.772 \n", " 2588.75,599.566 2588.78,601.361 2588.8,603.155 2588.81,604.949 2588.82,606.744 2588.82,608.538 2588.82,610.332 2588.81,612.127 2588.79,613.921 2588.76,615.715 \n", " 2588.73,617.51 2588.69,619.304 2588.64,621.098 2588.58,622.893 2588.5,624.687 2588.41,626.482 2588.29,628.276 2588.15,630.07 2587.97,631.865 2587.75,633.659 \n", " 2587.47,635.453 2587.13,637.187 2586.8,635.453 2586.53,633.659 2586.31,631.865 2586.13,630.07 2585.98,628.276 2585.86,626.482 2585.77,624.687 2585.69,622.893 \n", " 2585.62,621.098 2585.57,619.304 2585.53,617.51 2585.49,615.715 2585.47,613.921 2585.45,612.127 2585.43,610.332 2585.42,608.538 2585.42,606.744 2585.42,604.949 \n", " 2585.42,603.155 2585.43,601.361 2585.44,599.566 2585.45,597.772 2585.46,595.978 2585.48,594.183 2585.49,592.389 2585.49,590.595 2585.48,588.8 2585.44,587.006 \n", " 2585.33,585.212 2585,583.417 2584.86,583.076 2584.58,581.623 2584.29,579.829 2584.06,578.034 2583.87,576.24 2583.72,574.446 2583.6,572.651 2583.5,570.857 \n", " 2583.42,569.063 2583.35,567.268 2583.3,565.474 2583.25,563.68 2583.22,561.885 2583.19,560.091 2583.17,558.297 2583.16,556.502 2583.15,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#6e186e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.3,554.708 2583.3,556.502 2583.32,558.297 2583.35,560.091 2583.38,561.885 2583.42,563.68 2583.48,565.474 2583.54,567.268 2583.63,569.063 2583.73,570.857 \n", " 2583.85,572.651 2584.01,574.446 2584.2,576.24 2584.43,578.034 2584.72,579.829 2584.86,580.601 2585.73,579.829 2585.97,578.034 2586.06,576.24 2586.13,574.446 \n", " 2586.18,572.651 2586.23,570.857 2586.27,569.063 2586.31,567.268 2586.34,565.474 2586.37,563.68 2586.39,561.885 2586.41,560.091 2586.43,558.297 2586.43,556.502 \n", " 2586.44,554.708 2586.43,552.914 2586.42,551.119 2586.41,549.325 2586.38,547.531 2586.35,545.736 2586.31,543.942 2586.26,542.148 2586.2,540.353 2586.12,538.559 \n", " 2586.02,536.765 2585.9,534.97 2585.76,533.176 2585.58,531.382 2585.36,529.587 2585.1,527.793 2584.86,526.465 2584.61,527.793 2584.34,529.587 2584.12,531.382 \n", " 2583.95,533.176 2583.8,534.97 2583.69,536.765 2583.59,538.559 2583.52,540.353 2583.45,542.148 2583.4,543.942 2583.36,545.736 2583.34,547.531 2583.31,549.325 \n", " 2583.3,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#88216a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.44,551.119 2583.46,549.325 2583.49,547.531 2583.52,545.736 2583.57,543.942 2583.63,542.148 2583.7,540.353 2583.8,538.559 2583.91,536.765 2584.05,534.97 \n", " 2584.22,533.176 2584.44,531.382 2584.7,529.587 2584.86,528.673 2585.01,529.587 2585.27,531.382 2585.48,533.176 2585.66,534.97 2585.8,536.765 2585.91,538.559 \n", " 2586.01,540.353 2586.09,542.148 2586.15,543.942 2586.2,545.736 2586.23,547.531 2586.26,549.325 2586.28,551.119 2586.29,552.914 2586.29,554.708 2586.29,556.502 \n", " 2586.28,558.297 2586.26,560.091 2586.23,561.885 2586.2,563.68 2586.15,565.474 2586.1,567.268 2586.03,569.063 2585.95,570.857 2585.85,572.651 2585.7,574.446 \n", " 2585.47,576.24 2585.01,578.034 2584.86,578.382 2584.8,578.034 2584.52,576.24 2584.29,574.446 2584.11,572.651 2583.96,570.857 2583.84,569.063 2583.74,567.268 \n", " 2583.65,565.474 2583.59,563.68 2583.54,561.885 2583.5,560.091 2583.47,558.297 2583.45,556.502 2583.44,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#a12b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.58,554.708 2583.59,556.502 2583.62,558.297 2583.65,560.091 2583.7,561.885 2583.76,563.68 2583.83,565.474 2583.93,567.268 2584.04,569.063 2584.19,570.857 \n", " 2584.36,572.651 2584.58,574.446 2584.84,576.24 2584.86,576.34 2584.89,576.24 2585.28,574.446 2585.51,572.651 2585.67,570.857 2585.79,569.063 2585.89,567.268 \n", " 2585.96,565.474 2586.02,563.68 2586.07,561.885 2586.1,560.091 2586.13,558.297 2586.14,556.502 2586.15,554.708 2586.15,552.914 2586.13,551.119 2586.11,549.325 \n", " 2586.08,547.531 2586.04,545.736 2585.98,543.942 2585.91,542.148 2585.82,540.353 2585.71,538.559 2585.58,536.765 2585.41,534.97 2585.21,533.176 2584.96,531.382 \n", " 2584.86,530.712 2584.75,531.382 2584.5,533.176 2584.3,534.97 2584.13,536.765 2584,538.559 2583.89,540.353 2583.8,542.148 2583.73,543.942 2583.68,545.736 \n", " 2583.64,547.531 2583.61,549.325 2583.59,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#ba3655; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.73,551.119 2583.75,549.325 2583.79,547.531 2583.83,545.736 2583.9,543.942 2583.98,542.148 2584.08,540.353 2584.2,538.559 2584.36,536.765 2584.55,534.97 \n", " 2584.78,533.176 2584.86,532.638 2584.94,533.176 2585.17,534.97 2585.35,536.765 2585.51,538.559 2585.63,540.353 2585.74,542.148 2585.82,543.942 2585.88,545.736 \n", " 2585.93,547.531 2585.97,549.325 2585.99,551.119 2586,552.914 2586,554.708 2586,556.502 2585.98,558.297 2585.94,560.091 2585.9,561.885 2585.84,563.68 \n", " 2585.77,565.474 2585.68,567.268 2585.55,569.063 2585.4,570.857 2585.18,572.651 2584.86,574.417 2584.62,572.651 2584.42,570.857 2584.25,569.063 2584.12,567.268 \n", " 2584.01,565.474 2583.92,563.68 2583.85,561.885 2583.8,560.091 2583.76,558.297 2583.74,556.502 2583.72,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.87,554.708 2583.88,556.502 2583.91,558.297 2583.95,560.091 2584.01,561.885 2584.09,563.68 2584.19,565.474 2584.31,567.268 2584.46,569.063 2584.64,570.857 \n", " 2584.86,572.561 2585.12,570.857 2585.31,569.063 2585.46,567.268 2585.58,565.474 2585.67,563.68 2585.74,561.885 2585.79,560.091 2585.83,558.297 2585.85,556.502 \n", " 2585.86,554.708 2585.86,552.914 2585.85,551.119 2585.82,549.325 2585.78,547.531 2585.73,545.736 2585.65,543.942 2585.56,542.148 2585.45,540.353 2585.31,538.559 \n", " 2585.13,536.765 2584.92,534.97 2584.86,534.497 2584.79,534.97 2584.58,536.765 2584.41,538.559 2584.27,540.353 2584.15,542.148 2584.06,543.942 2583.99,545.736 \n", " 2583.94,547.531 2583.9,549.325 2583.87,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.02,551.119 2584.04,549.325 2584.09,547.531 2584.15,545.736 2584.23,543.942 2584.33,542.148 2584.45,540.353 2584.61,538.559 2584.8,536.765 2584.86,536.329 \n", " 2584.91,536.765 2585.1,538.559 2585.26,540.353 2585.39,542.148 2585.49,543.942 2585.57,545.736 2585.63,547.531 2585.67,549.325 2585.7,551.119 2585.72,552.914 \n", " 2585.72,554.708 2585.7,556.502 2585.68,558.297 2585.63,560.091 2585.57,561.885 2585.49,563.68 2585.39,565.474 2585.25,567.268 2585.08,569.063 2584.86,570.732 \n", " 2584.67,569.063 2584.5,567.268 2584.37,565.474 2584.26,563.68 2584.17,561.885 2584.11,560.091 2584.06,558.297 2584.02,556.502 2584.01,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.15,554.708 2584.17,556.502 2584.2,558.297 2584.26,560.091 2584.33,561.885 2584.42,563.68 2584.54,565.474 2584.69,567.268 2584.86,568.889 2585.04,567.268 \n", " 2585.19,565.474 2585.31,563.68 2585.41,561.885 2585.48,560.091 2585.52,558.297 2585.56,556.502 2585.57,554.708 2585.57,552.914 2585.56,551.119 2585.53,549.325 \n", " 2585.48,547.531 2585.41,545.736 2585.32,543.942 2585.21,542.148 2585.07,540.353 2584.9,538.559 2584.86,538.173 2584.82,538.559 2584.64,540.353 2584.5,542.148 \n", " 2584.39,543.942 2584.3,545.736 2584.24,547.531 2584.19,549.325 2584.16,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.3,551.119 2584.34,549.325 2584.39,547.531 2584.46,545.736 2584.56,543.942 2584.68,542.148 2584.83,540.353 2584.86,540.073 2584.89,540.353 2585.04,542.148 \n", " 2585.16,543.942 2585.26,545.736 2585.33,547.531 2585.38,549.325 2585.41,551.119 2585.43,552.914 2585.43,554.708 2585.41,556.502 2585.37,558.297 2585.32,560.091 \n", " 2585.24,561.885 2585.14,563.68 2585,565.474 2584.86,566.987 2584.72,565.474 2584.59,563.68 2584.49,561.885 2584.41,560.091 2584.35,558.297 2584.31,556.502 \n", " 2584.29,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.43,554.708 2584.46,556.502 2584.5,558.297 2584.56,560.091 2584.65,561.885 2584.76,563.68 2584.86,564.956 2584.96,563.68 2585.08,561.885 2585.16,560.091 \n", " 2585.22,558.297 2585.26,556.502 2585.29,554.708 2585.29,552.914 2585.27,551.119 2585.23,549.325 2585.18,547.531 2585.1,545.736 2584.99,543.942 2584.86,542.148 \n", " 2584.86,542.09 2584.85,542.148 2584.72,543.942 2584.62,545.736 2584.54,547.531 2584.48,549.325 2584.45,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.59,551.119 2584.63,549.325 2584.69,547.531 2584.77,545.736 2584.86,544.371 2584.94,545.736 2585.03,547.531 2585.09,549.325 2585.13,551.119 2585.14,552.914 \n", " 2585.14,554.708 2585.12,556.502 2585.07,558.297 2585.01,560.091 2584.91,561.885 2584.86,562.683 2584.81,561.885 2584.71,560.091 2584.65,558.297 2584.6,556.502 \n", " 2584.58,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.72,554.708 2584.74,556.502 2584.79,558.297 2584.86,559.91 2584.92,558.297 2584.97,556.502 2585,554.708 2585,552.914 2584.98,551.119 2584.94,549.325 \n", " 2584.88,547.531 2584.86,547.165 2584.84,547.531 2584.78,549.325 2584.73,551.119 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#090621; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2582.73,552.914 2582.73,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#1f0c47; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2582.87,552.914 2582.87,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#3b0964; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.01,552.914 2583.01,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#550f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.15,552.914 2583.15,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#6e186e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.29,552.914 2583.3,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#88216a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.44,552.914 2583.44,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#a12b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.58,552.914 2583.58,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#ba3655; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.72,552.914 2583.72,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2583.86,552.914 2583.87,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.01,552.914 2584.01,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.15,552.914 2584.15,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.29,552.914 2584.29,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.43,552.914 2584.43,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.57,552.914 2584.58,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2584.72,552.914 2584.72,554.708 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#6e186e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2586.37,581.623 2586.05,583.417 2585.95,585.212 2585.88,587.006 2585.82,588.8 2585.78,590.595 2585.73,592.389 2585.69,594.183 2585.66,595.978 2585.63,597.772 \n", " 2585.61,599.566 2585.59,601.361 2585.58,603.155 2585.57,604.949 2585.57,606.744 2585.57,608.538 2585.58,610.332 2585.6,612.127 2585.62,613.921 2585.65,615.715 \n", " 2585.7,617.51 2585.75,619.304 2585.81,621.098 2585.9,622.893 2585.99,624.687 2586.11,626.482 2586.26,628.276 2586.44,630.07 2586.67,631.865 2586.94,633.659 \n", " 2587.13,634.7 2587.32,633.659 2587.6,631.865 2587.83,630.07 2588.01,628.276 2588.15,626.482 2588.27,624.687 2588.37,622.893 2588.45,621.098 2588.51,619.304 \n", " 2588.56,617.51 2588.6,615.715 2588.63,613.921 2588.66,612.127 2588.67,610.332 2588.68,608.538 2588.68,606.744 2588.67,604.949 2588.65,603.155 2588.63,601.361 \n", " 2588.59,599.566 2588.55,597.772 2588.49,595.978 2588.42,594.183 2588.34,592.389 2588.23,590.595 2588.11,588.8 2587.95,587.006 2587.76,585.212 2587.52,583.417 \n", " 2587.23,581.623 2587.13,581.1 2586.37,581.623 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#88216a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587.1,583.417 2586.57,585.212 2586.32,587.006 2586.17,588.8 2586.06,590.595 2585.98,592.389 2585.91,594.183 2585.86,595.978 2585.81,597.772 2585.78,599.566 \n", " 2585.75,601.361 2585.73,603.155 2585.72,604.949 2585.71,606.744 2585.72,608.538 2585.73,610.332 2585.75,612.127 2585.78,613.921 2585.81,615.715 2585.86,617.51 \n", " 2585.93,619.304 2586.01,621.098 2586.1,622.893 2586.22,624.687 2586.37,626.482 2586.54,628.276 2586.76,630.07 2587.03,631.865 2587.13,632.462 2587.23,631.865 \n", " 2587.5,630.07 2587.72,628.276 2587.9,626.482 2588.04,624.687 2588.16,622.893 2588.26,621.098 2588.33,619.304 2588.4,617.51 2588.44,615.715 2588.48,613.921 \n", " 2588.51,612.127 2588.52,610.332 2588.53,608.538 2588.53,606.744 2588.52,604.949 2588.5,603.155 2588.47,601.361 2588.43,599.566 2588.38,597.772 2588.31,595.978 \n", " 2588.23,594.183 2588.12,592.389 2588,590.595 2587.85,588.8 2587.66,587.006 2587.43,585.212 2587.14,583.417 2587.13,583.347 2587.1,583.417 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#a12b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2586.77,587.006 2586.52,588.8 2586.35,590.595 2586.23,592.389 2586.13,594.183 2586.05,595.978 2585.99,597.772 2585.95,599.566 2585.91,601.361 2585.89,603.155 \n", " 2585.87,604.949 2585.86,606.744 2585.86,608.538 2585.88,610.332 2585.9,612.127 2585.93,613.921 2585.98,615.715 2586.03,617.51 2586.11,619.304 2586.2,621.098 \n", " 2586.31,622.893 2586.45,624.687 2586.62,626.482 2586.83,628.276 2587.08,630.07 2587.13,630.394 2587.18,630.07 2587.44,628.276 2587.65,626.482 2587.82,624.687 \n", " 2587.95,622.893 2588.06,621.098 2588.15,619.304 2588.23,617.51 2588.28,615.715 2588.33,613.921 2588.36,612.127 2588.38,610.332 2588.39,608.538 2588.38,606.744 \n", " 2588.37,604.949 2588.35,603.155 2588.31,601.361 2588.27,599.566 2588.21,597.772 2588.13,595.978 2588.03,594.183 2587.91,592.389 2587.77,590.595 2587.59,588.8 \n", " 2587.37,587.006 2587.13,585.406 2586.77,587.006 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#ba3655; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2586.87,588.8 2586.64,590.595 2586.47,592.389 2586.35,594.183 2586.25,595.978 2586.17,597.772 2586.12,599.566 2586.07,601.361 2586.04,603.155 2586.02,604.949 \n", " 2586.01,606.744 2586.01,608.538 2586.02,610.332 2586.05,612.127 2586.09,613.921 2586.14,615.715 2586.2,617.51 2586.29,619.304 2586.39,621.098 2586.52,622.893 \n", " 2586.68,624.687 2586.87,626.482 2587.11,628.276 2587.13,628.438 2587.15,628.276 2587.39,626.482 2587.59,624.687 2587.74,622.893 2587.87,621.098 2587.98,619.304 \n", " 2588.06,617.51 2588.12,615.715 2588.17,613.921 2588.21,612.127 2588.23,610.332 2588.24,608.538 2588.24,606.744 2588.22,604.949 2588.2,603.155 2588.16,601.361 \n", " 2588.11,599.566 2588.03,597.772 2587.95,595.978 2587.84,594.183 2587.7,592.389 2587.53,590.595 2587.33,588.8 2587.13,587.358 2586.87,588.8 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2586.92,590.595 2586.72,592.389 2586.56,594.183 2586.45,595.978 2586.35,597.772 2586.28,599.566 2586.23,601.361 2586.19,603.155 2586.17,604.949 2586.16,606.744 \n", " 2586.16,608.538 2586.17,610.332 2586.2,612.127 2586.24,613.921 2586.3,615.715 2586.37,617.51 2586.46,619.304 2586.58,621.098 2586.73,622.893 2586.9,624.687 \n", " 2587.12,626.482 2587.13,626.546 2587.14,626.482 2587.36,624.687 2587.54,622.893 2587.68,621.098 2587.8,619.304 2587.89,617.51 2587.96,615.715 2588.02,613.921 \n", " 2588.06,612.127 2588.08,610.332 2588.09,608.538 2588.09,606.744 2588.08,604.949 2588.05,603.155 2588,601.361 2587.94,599.566 2587.86,597.772 2587.76,595.978 \n", " 2587.64,594.183 2587.49,592.389 2587.3,590.595 2587.13,589.251 2586.92,590.595 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2586.96,592.389 2586.78,594.183 2586.64,595.978 2586.54,597.772 2586.45,599.566 2586.39,601.361 2586.35,603.155 2586.32,604.949 2586.3,606.744 2586.3,608.538 \n", " 2586.32,610.332 2586.35,612.127 2586.39,613.921 2586.46,615.715 2586.54,617.51 2586.64,619.304 2586.77,621.098 2586.93,622.893 2587.13,624.676 2587.33,622.893 \n", " 2587.49,621.098 2587.62,619.304 2587.72,617.51 2587.8,615.715 2587.86,613.921 2587.91,612.127 2587.94,610.332 2587.95,608.538 2587.95,606.744 2587.93,604.949 \n", " 2587.9,603.155 2587.85,601.361 2587.78,599.566 2587.69,597.772 2587.58,595.978 2587.44,594.183 2587.27,592.389 2587.13,591.124 2586.96,592.389 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587,594.183 2586.84,595.978 2586.72,597.772 2586.62,599.566 2586.55,601.361 2586.5,603.155 2586.47,604.949 2586.45,606.744 2586.45,608.538 2586.47,610.332 \n", " 2586.5,612.127 2586.55,613.921 2586.62,615.715 2586.71,617.51 2586.82,619.304 2586.97,621.098 2587.13,622.781 2587.3,621.098 2587.44,619.304 2587.55,617.51 \n", " 2587.64,615.715 2587.71,613.921 2587.76,612.127 2587.79,610.332 2587.8,608.538 2587.8,606.744 2587.78,604.949 2587.75,603.155 2587.69,601.361 2587.62,599.566 \n", " 2587.52,597.772 2587.4,595.978 2587.25,594.183 2587.13,593.022 2587,594.183 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587.04,595.978 2586.9,597.772 2586.79,599.566 2586.71,601.361 2586.65,603.155 2586.62,604.949 2586.6,606.744 2586.6,608.538 2586.61,610.332 2586.65,612.127 \n", " 2586.7,613.921 2586.78,615.715 2586.88,617.51 2587,619.304 2587.13,620.806 2587.26,619.304 2587.38,617.51 2587.48,615.715 2587.56,613.921 2587.61,612.127 \n", " 2587.64,610.332 2587.66,608.538 2587.66,606.744 2587.64,604.949 2587.6,603.155 2587.54,601.361 2587.46,599.566 2587.35,597.772 2587.22,595.978 2587.13,594.997 \n", " 2587.04,595.978 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587.08,597.772 2586.96,599.566 2586.87,601.361 2586.81,603.155 2586.77,604.949 2586.75,606.744 2586.74,608.538 2586.76,610.332 2586.8,612.127 2586.86,613.921 \n", " 2586.94,615.715 2587.04,617.51 2587.13,618.67 2587.22,617.51 2587.32,615.715 2587.4,613.921 2587.46,612.127 2587.5,610.332 2587.51,608.538 2587.51,606.744 \n", " 2587.49,604.949 2587.45,603.155 2587.38,601.361 2587.29,599.566 2587.18,597.772 2587.13,597.127 2587.08,597.772 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587.13,599.566 2587.03,601.361 2586.96,603.155 2586.92,604.949 2586.89,606.744 2586.89,608.538 2586.91,610.332 2586.95,612.127 2587.01,613.921 2587.1,615.715 \n", " 2587.13,616.229 2587.16,615.715 2587.25,613.921 2587.31,612.127 2587.35,610.332 2587.37,608.538 2587.36,606.744 2587.34,604.949 2587.3,603.155 2587.23,601.361 \n", " 2587.13,599.566 2587.13,599.54 2587.13,599.566 \n", " \"/>\n", "<polyline clip-path=\"url(#clip074)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2587.12,603.155 2587.07,604.949 2587.04,606.744 2587.04,608.538 2587.06,610.332 2587.1,612.127 2587.13,612.976 2587.16,612.127 2587.2,610.332 2587.22,608.538 \n", " 2587.22,606.744 2587.19,604.949 2587.14,603.155 2587.13,602.795 2587.12,603.155 \n", " \"/>\n", "<defs>\n", " <clipPath id=\"clip075\">\n", " <rect x=\"3224\" y=\"133\" width=\"109\" height=\"896\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#0a0723; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,972.452 3332.95,972.452 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#200c4a; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,916.491 3332.95,916.491 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#3c0965; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,860.53 3332.95,860.53 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#570f6d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,804.569 3332.95,804.569 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#70196e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,748.608 3332.95,748.608 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#892269; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,692.648 3332.95,692.648 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#a32b61; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,636.687 3332.95,636.687 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#bb3754; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,580.726 3332.95,580.726 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#d04544; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,524.765 3332.95,524.765 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#e35832; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,468.804 3332.95,468.804 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#f0701e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,412.844 3332.95,412.844 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#f98c09; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,356.883 3332.95,356.883 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#fbaa0e; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,300.922 3332.95,300.922 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#f8c931; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,244.961 3332.95,244.961 \n", " \"/>\n", "<polyline clip-path=\"url(#clip075)\" style=\"stroke:#f1e864; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3224.95,189 3332.95,189 \n", " \"/>\n", "<path clip-path=\"url(#clip070)\" d=\"M3398.89 1010.58 Q3395.28 1010.58 3393.45 1014.15 Q3391.65 1017.69 3391.65 1024.82 Q3391.65 1031.92 3393.45 1035.49 Q3395.28 1039.03 3398.89 1039.03 Q3402.53 1039.03 3404.33 1035.49 Q3406.16 1031.92 3406.16 1024.82 Q3406.16 1017.69 3404.33 1014.15 Q3402.53 1010.58 3398.89 1010.58 M3398.89 1006.88 Q3404.7 1006.88 3407.76 1011.48 Q3410.84 1016.07 3410.84 1024.82 Q3410.84 1033.55 3407.76 1038.15 Q3404.7 1042.73 3398.89 1042.73 Q3393.08 1042.73 3390 1038.15 Q3386.95 1033.55 3386.95 1024.82 Q3386.95 1016.07 3390 1011.48 Q3393.08 1006.88 3398.89 1006.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3388.41 869.344 L3406.76 869.344 L3406.76 873.279 L3392.69 873.279 L3392.69 881.751 Q3393.71 881.404 3394.73 881.242 Q3395.74 881.057 3396.76 881.057 Q3402.55 881.057 3405.93 884.228 Q3409.31 887.399 3409.31 892.816 Q3409.31 898.395 3405.84 901.497 Q3402.36 904.575 3396.05 904.575 Q3393.87 904.575 3391.6 904.205 Q3389.36 903.835 3386.95 903.094 L3386.95 898.395 Q3389.03 899.529 3391.25 900.085 Q3393.48 900.64 3395.95 900.64 Q3399.96 900.64 3402.3 898.534 Q3404.63 896.427 3404.63 892.816 Q3404.63 889.205 3402.3 887.099 Q3399.96 884.992 3395.95 884.992 Q3394.08 884.992 3392.2 885.409 Q3390.35 885.825 3388.41 886.705 L3388.41 869.344 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3428.52 872.423 Q3424.91 872.423 3423.08 875.987 Q3421.28 879.529 3421.28 886.659 Q3421.28 893.765 3423.08 897.33 Q3424.91 900.872 3428.52 900.872 Q3432.16 900.872 3433.96 897.33 Q3435.79 893.765 3435.79 886.659 Q3435.79 879.529 3433.96 875.987 Q3432.16 872.423 3428.52 872.423 M3428.52 868.719 Q3434.33 868.719 3437.39 873.325 Q3440.47 877.909 3440.47 886.659 Q3440.47 895.386 3437.39 899.992 Q3434.33 904.575 3428.52 904.575 Q3422.71 904.575 3419.63 899.992 Q3416.58 895.386 3416.58 886.659 Q3416.58 877.909 3419.63 873.325 Q3422.71 868.719 3428.52 868.719 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3387.62 761.809 L3395.26 761.809 L3395.26 735.444 L3386.95 737.11 L3386.95 732.851 L3395.21 731.184 L3399.89 731.184 L3399.89 761.809 L3407.53 761.809 L3407.53 765.744 L3387.62 765.744 L3387.62 761.809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3426.97 734.263 Q3423.36 734.263 3421.53 737.828 Q3419.73 741.37 3419.73 748.499 Q3419.73 755.606 3421.53 759.17 Q3423.36 762.712 3426.97 762.712 Q3430.61 762.712 3432.41 759.17 Q3434.24 755.606 3434.24 748.499 Q3434.24 741.37 3432.41 737.828 Q3430.61 734.263 3426.97 734.263 M3426.97 730.559 Q3432.78 730.559 3435.84 735.166 Q3438.92 739.749 3438.92 748.499 Q3438.92 757.226 3435.84 761.832 Q3432.78 766.416 3426.97 766.416 Q3421.16 766.416 3418.08 761.832 Q3415.03 757.226 3415.03 748.499 Q3415.03 739.749 3418.08 735.166 Q3421.16 730.559 3426.97 730.559 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3457.13 734.263 Q3453.52 734.263 3451.69 737.828 Q3449.89 741.37 3449.89 748.499 Q3449.89 755.606 3451.69 759.17 Q3453.52 762.712 3457.13 762.712 Q3460.77 762.712 3462.57 759.17 Q3464.4 755.606 3464.4 748.499 Q3464.4 741.37 3462.57 737.828 Q3460.77 734.263 3457.13 734.263 M3457.13 730.559 Q3462.94 730.559 3466 735.166 Q3469.08 739.749 3469.08 748.499 Q3469.08 757.226 3466 761.832 Q3462.94 766.416 3457.13 766.416 Q3451.32 766.416 3448.24 761.832 Q3445.19 757.226 3445.19 748.499 Q3445.19 739.749 3448.24 735.166 Q3451.32 730.559 3457.13 730.559 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3387.62 623.65 L3395.26 623.65 L3395.26 597.284 L3386.95 598.951 L3386.95 594.692 L3395.21 593.025 L3399.89 593.025 L3399.89 623.65 L3407.53 623.65 L3407.53 627.585 L3387.62 627.585 L3387.62 623.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3417.02 593.025 L3435.37 593.025 L3435.37 596.96 L3421.3 596.96 L3421.3 605.432 Q3422.32 605.085 3423.34 604.923 Q3424.36 604.738 3425.37 604.738 Q3431.16 604.738 3434.54 607.909 Q3437.92 611.08 3437.92 616.497 Q3437.92 622.076 3434.45 625.178 Q3430.98 628.256 3424.66 628.256 Q3422.48 628.256 3420.21 627.886 Q3417.97 627.516 3415.56 626.775 L3415.56 622.076 Q3417.64 623.21 3419.86 623.766 Q3422.09 624.321 3424.56 624.321 Q3428.57 624.321 3430.91 622.215 Q3433.24 620.108 3433.24 616.497 Q3433.24 612.886 3430.91 610.78 Q3428.57 608.673 3424.56 608.673 Q3422.69 608.673 3420.81 609.09 Q3418.96 609.506 3417.02 610.386 L3417.02 593.025 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3457.13 596.104 Q3453.52 596.104 3451.69 599.668 Q3449.89 603.21 3449.89 610.34 Q3449.89 617.446 3451.69 621.011 Q3453.52 624.553 3457.13 624.553 Q3460.77 624.553 3462.57 621.011 Q3464.4 617.446 3464.4 610.34 Q3464.4 603.21 3462.57 599.668 Q3460.77 596.104 3457.13 596.104 M3457.13 592.4 Q3462.94 592.4 3466 597.006 Q3469.08 601.59 3469.08 610.34 Q3469.08 619.067 3466 623.673 Q3462.94 628.256 3457.13 628.256 Q3451.32 628.256 3448.24 623.673 Q3445.19 619.067 3445.19 610.34 Q3445.19 601.59 3448.24 597.006 Q3451.32 592.4 3457.13 592.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3392.57 485.49 L3408.89 485.49 L3408.89 489.425 L3386.95 489.425 L3386.95 485.49 Q3389.61 482.736 3394.19 478.106 Q3398.8 473.453 3399.98 472.111 Q3402.23 469.588 3403.11 467.852 Q3404.01 466.092 3404.01 464.402 Q3404.01 461.648 3402.06 459.912 Q3400.14 458.176 3397.04 458.176 Q3394.84 458.176 3392.39 458.94 Q3389.96 459.703 3387.18 461.254 L3387.18 456.532 Q3390 455.398 3392.46 454.819 Q3394.91 454.24 3396.95 454.24 Q3402.32 454.24 3405.51 456.926 Q3408.71 459.611 3408.71 464.102 Q3408.71 466.231 3407.9 468.152 Q3407.11 470.051 3405 472.643 Q3404.43 473.314 3401.32 476.532 Q3398.22 479.726 3392.57 485.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3428.71 457.944 Q3425.1 457.944 3423.27 461.509 Q3421.46 465.051 3421.46 472.18 Q3421.46 479.287 3423.27 482.851 Q3425.1 486.393 3428.71 486.393 Q3432.34 486.393 3434.15 482.851 Q3435.98 479.287 3435.98 472.18 Q3435.98 465.051 3434.15 461.509 Q3432.34 457.944 3428.71 457.944 M3428.71 454.24 Q3434.52 454.24 3437.57 458.847 Q3440.65 463.43 3440.65 472.18 Q3440.65 480.907 3437.57 485.513 Q3434.52 490.097 3428.71 490.097 Q3422.9 490.097 3419.82 485.513 Q3416.76 480.907 3416.76 472.18 Q3416.76 463.43 3419.82 458.847 Q3422.9 454.24 3428.71 454.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3458.87 457.944 Q3455.26 457.944 3453.43 461.509 Q3451.62 465.051 3451.62 472.18 Q3451.62 479.287 3453.43 482.851 Q3455.26 486.393 3458.87 486.393 Q3462.5 486.393 3464.31 482.851 Q3466.14 479.287 3466.14 472.18 Q3466.14 465.051 3464.31 461.509 Q3462.5 457.944 3458.87 457.944 M3458.87 454.24 Q3464.68 454.24 3467.73 458.847 Q3470.81 463.43 3470.81 472.18 Q3470.81 480.907 3467.73 485.513 Q3464.68 490.097 3458.87 490.097 Q3453.06 490.097 3449.98 485.513 Q3446.92 480.907 3446.92 472.18 Q3446.92 463.43 3449.98 458.847 Q3453.06 454.24 3458.87 454.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3392.57 347.331 L3408.89 347.331 L3408.89 351.266 L3386.95 351.266 L3386.95 347.331 Q3389.61 344.576 3394.19 339.947 Q3398.8 335.294 3399.98 333.951 Q3402.23 331.428 3403.11 329.692 Q3404.01 327.933 3404.01 326.243 Q3404.01 323.488 3402.06 321.752 Q3400.14 320.016 3397.04 320.016 Q3394.84 320.016 3392.39 320.78 Q3389.96 321.544 3387.18 323.095 L3387.18 318.373 Q3390 317.238 3392.46 316.66 Q3394.91 316.081 3396.95 316.081 Q3402.32 316.081 3405.51 318.766 Q3408.71 321.451 3408.71 325.942 Q3408.71 328.072 3407.9 329.993 Q3407.11 331.891 3405 334.484 Q3404.43 335.155 3401.32 338.373 Q3398.22 341.567 3392.57 347.331 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3418.75 316.706 L3437.11 316.706 L3437.11 320.641 L3423.04 320.641 L3423.04 329.113 Q3424.05 328.766 3425.07 328.604 Q3426.09 328.419 3427.11 328.419 Q3432.9 328.419 3436.28 331.59 Q3439.66 334.761 3439.66 340.178 Q3439.66 345.757 3436.18 348.859 Q3432.71 351.937 3426.39 351.937 Q3424.22 351.937 3421.95 351.567 Q3419.7 351.197 3417.3 350.456 L3417.3 345.757 Q3419.38 346.891 3421.6 347.447 Q3423.82 348.002 3426.3 348.002 Q3430.3 348.002 3432.64 345.896 Q3434.98 343.789 3434.98 340.178 Q3434.98 336.567 3432.64 334.46 Q3430.3 332.354 3426.3 332.354 Q3424.43 332.354 3422.55 332.771 Q3420.7 333.187 3418.75 334.067 L3418.75 316.706 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3458.87 319.785 Q3455.26 319.785 3453.43 323.349 Q3451.62 326.891 3451.62 334.021 Q3451.62 341.127 3453.43 344.692 Q3455.26 348.234 3458.87 348.234 Q3462.5 348.234 3464.31 344.692 Q3466.14 341.127 3466.14 334.021 Q3466.14 326.891 3464.31 323.349 Q3462.5 319.785 3458.87 319.785 M3458.87 316.081 Q3464.68 316.081 3467.73 320.687 Q3470.81 325.271 3470.81 334.021 Q3470.81 342.747 3467.73 347.354 Q3464.68 351.937 3458.87 351.937 Q3453.06 351.937 3449.98 347.354 Q3446.92 342.747 3446.92 334.021 Q3446.92 325.271 3449.98 320.687 Q3453.06 316.081 3458.87 316.081 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3402.57 194.472 Q3405.93 195.19 3407.8 197.458 Q3409.7 199.727 3409.7 203.06 Q3409.7 208.176 3406.18 210.977 Q3402.67 213.778 3396.18 213.778 Q3394.01 213.778 3391.69 213.338 Q3389.4 212.921 3386.95 212.065 L3386.95 207.551 Q3388.89 208.685 3391.21 209.264 Q3393.52 209.843 3396.05 209.843 Q3400.44 209.843 3402.74 208.106 Q3405.05 206.37 3405.05 203.06 Q3405.05 200.005 3402.9 198.292 Q3400.77 196.556 3396.95 196.556 L3392.92 196.556 L3392.92 192.713 L3397.13 192.713 Q3400.58 192.713 3402.41 191.347 Q3404.24 189.958 3404.24 187.366 Q3404.24 184.704 3402.34 183.292 Q3400.47 181.857 3396.95 181.857 Q3395.03 181.857 3392.83 182.273 Q3390.63 182.69 3387.99 183.57 L3387.99 179.403 Q3390.65 178.662 3392.97 178.292 Q3395.3 177.921 3397.36 177.921 Q3402.69 177.921 3405.79 180.352 Q3408.89 182.759 3408.89 186.88 Q3408.89 189.75 3407.25 191.741 Q3405.61 193.708 3402.57 194.472 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3428.57 181.625 Q3424.96 181.625 3423.13 185.19 Q3421.32 188.732 3421.32 195.861 Q3421.32 202.968 3423.13 206.532 Q3424.96 210.074 3428.57 210.074 Q3432.2 210.074 3434.01 206.532 Q3435.84 202.968 3435.84 195.861 Q3435.84 188.732 3434.01 185.19 Q3432.2 181.625 3428.57 181.625 M3428.57 177.921 Q3434.38 177.921 3437.43 182.528 Q3440.51 187.111 3440.51 195.861 Q3440.51 204.588 3437.43 209.194 Q3434.38 213.778 3428.57 213.778 Q3422.76 213.778 3419.68 209.194 Q3416.62 204.588 3416.62 195.861 Q3416.62 187.111 3419.68 182.528 Q3422.76 177.921 3428.57 177.921 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip070)\" d=\"M3458.73 181.625 Q3455.12 181.625 3453.29 185.19 Q3451.49 188.732 3451.49 195.861 Q3451.49 202.968 3453.29 206.532 Q3455.12 210.074 3458.73 210.074 Q3462.36 210.074 3464.17 206.532 Q3466 202.968 3466 195.861 Q3466 188.732 3464.17 185.19 Q3462.36 181.625 3458.73 181.625 M3458.73 177.921 Q3464.54 177.921 3467.6 182.528 Q3470.67 187.111 3470.67 195.861 Q3470.67 204.588 3467.6 209.194 Q3464.54 213.778 3458.73 213.778 Q3452.92 213.778 3449.84 209.194 Q3446.79 204.588 3446.79 195.861 Q3446.79 187.111 3449.84 182.528 Q3452.92 177.921 3458.73 177.921 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip070)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3332.95,1028.41 3332.95,1028.41 3368.95,1028.41 3332.95,1028.41 3332.95,890.253 3368.95,890.253 3332.95,890.253 3332.95,752.093 3368.95,752.093 3332.95,752.093 \n", " 3332.95,613.934 3368.95,613.934 3332.95,613.934 3332.95,475.774 3368.95,475.774 3332.95,475.774 3332.95,337.615 3368.95,337.615 3332.95,337.615 3332.95,199.455 \n", " 3368.95,199.455 3332.95,199.455 3332.95,133.04 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Extract posterior weights \n", "post_θ = results.posteriors[:θ]\n", "\n", "# Define ranges for plot\n", "x1 = range(-1.5, length=500, stop=1.5)\n", "x2 = range(-2.5, length=500, stop=2.5)\n", "\n", "# Draw contour plots of distributions\n", "prior_θ = MvNormal(μ_θ, Σ_θ)\n", "p1a = contour(x1, x2, (x1,x2) -> pdf(prior_θ, [x1,x2]), xlabel=\"θ1\", ylabel=\"θ2\", title=\"prior\", label=\"\")\n", "p1b = contour(x1, x2, (x1,x2) -> pdf(post_θ, [x1,x2]), xlabel=\"θ1\", title=\"posterior\", label=\"\")\n", "plot(p1a, p1b, size=(900,300))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "It has become quite sharply peaked in a small area of parameter space.\n", "\n", "We can extract the MAP point estimate to compute and visualize the most probable regression function $f_\\theta$." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Slope coefficient = -4.320468927288264e-5\n", "Intercept coefficient = 0.0022453122200430586\n" ] } ], "source": [ "# Extract estimated weights\n", "θ_MAP = mode(post_θ)\n", "\n", "# Report results\n", "println(\"Slope coefficient = \"*string(θ_MAP[1]))\n", "println(\"Intercept coefficient = \"*string(θ_MAP[2]))\n", "\n", "# Make predictions\n", "regression_estimated = dates_num * θ_MAP[1] .+ θ_MAP[2];" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ " Let's visualize it." ] }, { "cell_type": "code", "execution_count": 10, "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=\"300\" viewBox=\"0 0 3200 1200\">\n", "<defs>\n", " <clipPath id=\"clip110\">\n", " <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip110)\" d=\"\n", "M0 1200 L3200 1200 L3200 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip111\">\n", " <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip110)\" d=\"\n", "M271.257 1065.76 L3112.95 1065.76 L3112.95 87.0516 L271.257 87.0516 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip112\">\n", " <rect x=\"271\" y=\"87\" width=\"2843\" height=\"980\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 351.682,1065.76 351.682,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1021.89,1065.76 1021.89,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1692.1,1065.76 1692.1,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2362.31,1065.76 2362.31,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 3032.52,1065.76 3032.52,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,1065.76 3112.95,1065.76 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 351.682,1065.76 351.682,1046.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1021.89,1065.76 1021.89,1046.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1692.1,1065.76 1692.1,1046.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2362.31,1065.76 2362.31,1046.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3032.52,1065.76 3032.52,1046.86 \n", " \"/>\n", "<path clip-path=\"url(#clip110)\" d=\"M238.512 1130.63 L254.831 1130.63 L254.831 1134.56 L232.887 1134.56 L232.887 1130.63 Q235.549 1127.87 240.132 1123.24 Q244.739 1118.59 245.919 1117.25 Q248.165 1114.72 249.044 1112.99 Q249.947 1111.23 249.947 1109.54 Q249.947 1106.78 248.002 1105.05 Q246.081 1103.31 242.979 1103.31 Q240.78 1103.31 238.327 1104.07 Q235.896 1104.84 233.118 1106.39 L233.118 1101.67 Q235.942 1100.53 238.396 1099.95 Q240.85 1099.38 242.887 1099.38 Q248.257 1099.38 251.452 1102.06 Q254.646 1104.75 254.646 1109.24 Q254.646 1111.37 253.836 1113.29 Q253.049 1115.19 250.942 1117.78 Q250.364 1118.45 247.262 1121.67 Q244.16 1124.86 238.512 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M263.465 1100 L285.687 1100 L285.687 1101.99 L273.141 1134.56 L268.257 1134.56 L280.062 1103.94 L263.465 1103.94 L263.465 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M292.053 1119.68 L304.53 1119.68 L304.53 1123.47 L292.053 1123.47 L292.053 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M332.215 1101.13 L332.215 1105.69 Q329.553 1104.42 327.192 1103.8 Q324.831 1103.17 322.632 1103.17 Q318.812 1103.17 316.729 1104.65 Q314.669 1106.13 314.669 1108.87 Q314.669 1111.16 316.035 1112.34 Q317.423 1113.5 321.266 1114.21 L324.09 1114.79 Q329.321 1115.79 331.798 1118.31 Q334.298 1120.81 334.298 1125.02 Q334.298 1130.05 330.919 1132.64 Q327.562 1135.23 321.058 1135.23 Q318.604 1135.23 315.826 1134.68 Q313.072 1134.12 310.109 1133.03 L310.109 1128.22 Q312.956 1129.82 315.687 1130.63 Q318.419 1131.44 321.058 1131.44 Q325.062 1131.44 327.238 1129.86 Q329.414 1128.29 329.414 1125.37 Q329.414 1122.82 327.84 1121.39 Q326.289 1119.95 322.724 1119.24 L319.877 1118.68 Q314.646 1117.64 312.308 1115.42 Q309.97 1113.19 309.97 1109.24 Q309.97 1104.65 313.187 1102.01 Q316.428 1099.38 322.099 1099.38 Q324.53 1099.38 327.053 1099.82 Q329.576 1100.25 332.215 1101.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M363.581 1120.53 L363.581 1122.62 L343.997 1122.62 Q344.275 1127.01 346.636 1129.33 Q349.02 1131.62 353.257 1131.62 Q355.71 1131.62 358.002 1131.02 Q360.317 1130.42 362.585 1129.21 L362.585 1133.24 Q360.294 1134.21 357.886 1134.72 Q355.479 1135.23 353.002 1135.23 Q346.798 1135.23 343.164 1131.62 Q339.553 1128.01 339.553 1121.85 Q339.553 1115.49 342.979 1111.76 Q346.428 1108.01 352.261 1108.01 Q357.493 1108.01 360.525 1111.39 Q363.581 1114.75 363.581 1120.53 M359.321 1119.28 Q359.275 1115.79 357.354 1113.7 Q355.456 1111.62 352.307 1111.62 Q348.743 1111.62 346.59 1113.63 Q344.46 1115.65 344.136 1119.31 L359.321 1119.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M374.692 1130.67 L374.692 1144.42 L370.409 1144.42 L370.409 1108.63 L374.692 1108.63 L374.692 1112.57 Q376.034 1110.25 378.071 1109.14 Q380.131 1108.01 382.979 1108.01 Q387.701 1108.01 390.641 1111.76 Q393.604 1115.51 393.604 1121.62 Q393.604 1127.73 390.641 1131.48 Q387.701 1135.23 382.979 1135.23 Q380.131 1135.23 378.071 1134.12 Q376.034 1132.99 374.692 1130.67 M389.182 1121.62 Q389.182 1116.92 387.238 1114.26 Q385.317 1111.57 381.937 1111.57 Q378.557 1111.57 376.613 1114.26 Q374.692 1116.92 374.692 1121.62 Q374.692 1126.32 376.613 1129 Q378.557 1131.67 381.937 1131.67 Q385.317 1131.67 387.238 1129 Q389.182 1126.32 389.182 1121.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M398.511 1119.68 L410.988 1119.68 L410.988 1123.47 L398.511 1123.47 L398.511 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M419.182 1130.63 L426.821 1130.63 L426.821 1104.26 L418.511 1105.93 L418.511 1101.67 L426.775 1100 L431.451 1100 L431.451 1130.63 L439.089 1130.63 L439.089 1134.56 L419.182 1134.56 L419.182 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M458.534 1103.08 Q454.923 1103.08 453.094 1106.64 Q451.288 1110.19 451.288 1117.32 Q451.288 1124.42 453.094 1127.99 Q454.923 1131.53 458.534 1131.53 Q462.168 1131.53 463.974 1127.99 Q465.802 1124.42 465.802 1117.32 Q465.802 1110.19 463.974 1106.64 Q462.168 1103.08 458.534 1103.08 M458.534 1099.38 Q464.344 1099.38 467.399 1103.98 Q470.478 1108.57 470.478 1117.32 Q470.478 1126.04 467.399 1130.65 Q464.344 1135.23 458.534 1135.23 Q452.724 1135.23 449.645 1130.65 Q446.589 1126.04 446.589 1117.32 Q446.589 1108.57 449.645 1103.98 Q452.724 1099.38 458.534 1099.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M932.923 1115.93 Q936.28 1116.64 938.155 1118.91 Q940.053 1121.18 940.053 1124.51 Q940.053 1129.63 936.534 1132.43 Q933.016 1135.23 926.534 1135.23 Q924.358 1135.23 922.044 1134.79 Q919.752 1134.38 917.298 1133.52 L917.298 1129 Q919.243 1130.14 921.558 1130.72 Q923.872 1131.3 926.395 1131.3 Q930.794 1131.3 933.085 1129.56 Q935.4 1127.82 935.4 1124.51 Q935.4 1121.46 933.247 1119.75 Q931.118 1118.01 927.298 1118.01 L923.27 1118.01 L923.27 1114.17 L927.483 1114.17 Q930.932 1114.17 932.761 1112.8 Q934.59 1111.41 934.59 1108.82 Q934.59 1106.16 932.692 1104.75 Q930.817 1103.31 927.298 1103.31 Q925.377 1103.31 923.178 1103.73 Q920.979 1104.14 918.34 1105.02 L918.34 1100.86 Q921.002 1100.12 923.317 1099.75 Q925.655 1099.38 927.715 1099.38 Q933.039 1099.38 936.141 1101.81 Q939.243 1104.21 939.243 1108.33 Q939.243 1111.2 937.599 1113.19 Q935.956 1115.16 932.923 1115.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M946.164 1119.68 L958.641 1119.68 L958.641 1123.47 L946.164 1123.47 L946.164 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M965.608 1100 L971.904 1100 L987.228 1128.91 L987.228 1100 L991.765 1100 L991.765 1134.56 L985.469 1134.56 L970.145 1105.65 L970.145 1134.56 L965.608 1134.56 L965.608 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1010.93 1111.62 Q1007.51 1111.62 1005.52 1114.31 Q1003.52 1116.97 1003.52 1121.62 Q1003.52 1126.27 1005.49 1128.96 Q1007.48 1131.62 1010.93 1131.62 Q1014.33 1131.62 1016.33 1128.94 Q1018.32 1126.25 1018.32 1121.62 Q1018.32 1117.01 1016.33 1114.33 Q1014.33 1111.62 1010.93 1111.62 M1010.93 1108.01 Q1016.49 1108.01 1019.66 1111.62 Q1022.83 1115.23 1022.83 1121.62 Q1022.83 1127.99 1019.66 1131.62 Q1016.49 1135.23 1010.93 1135.23 Q1005.35 1135.23 1002.18 1131.62 Q999.034 1127.99 999.034 1121.62 Q999.034 1115.23 1002.18 1111.62 Q1005.35 1108.01 1010.93 1108.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1026.83 1108.63 L1031.35 1108.63 L1039.45 1130.39 L1047.55 1108.63 L1052.07 1108.63 L1042.34 1134.56 L1036.56 1134.56 L1026.83 1108.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1054.52 1119.68 L1067 1119.68 L1067 1123.47 L1054.52 1123.47 L1054.52 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1075.19 1130.63 L1082.83 1130.63 L1082.83 1104.26 L1074.52 1105.93 L1074.52 1101.67 L1082.78 1100 L1087.46 1100 L1087.46 1130.63 L1095.1 1130.63 L1095.1 1134.56 L1075.19 1134.56 L1075.19 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1114.54 1103.08 Q1110.93 1103.08 1109.1 1106.64 Q1107.3 1110.19 1107.3 1117.32 Q1107.3 1124.42 1109.1 1127.99 Q1110.93 1131.53 1114.54 1131.53 Q1118.18 1131.53 1119.98 1127.99 Q1121.81 1124.42 1121.81 1117.32 Q1121.81 1110.19 1119.98 1106.64 Q1118.18 1103.08 1114.54 1103.08 M1114.54 1099.38 Q1120.35 1099.38 1123.41 1103.98 Q1126.49 1108.57 1126.49 1117.32 Q1126.49 1126.04 1123.41 1130.65 Q1120.35 1135.23 1114.54 1135.23 Q1108.73 1135.23 1105.65 1130.65 Q1102.6 1126.04 1102.6 1117.32 Q1102.6 1108.57 1105.65 1103.98 Q1108.73 1099.38 1114.54 1099.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1573.65 1130.63 L1581.29 1130.63 L1581.29 1104.26 L1572.98 1105.93 L1572.98 1101.67 L1581.25 1100 L1585.92 1100 L1585.92 1130.63 L1593.56 1130.63 L1593.56 1134.56 L1573.65 1134.56 L1573.65 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1615.85 1104.07 L1604.05 1122.52 L1615.85 1122.52 L1615.85 1104.07 M1614.63 1100 L1620.51 1100 L1620.51 1122.52 L1625.44 1122.52 L1625.44 1126.41 L1620.51 1126.41 L1620.51 1134.56 L1615.85 1134.56 L1615.85 1126.41 L1600.25 1126.41 L1600.25 1121.9 L1614.63 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1630.41 1119.68 L1642.89 1119.68 L1642.89 1123.47 L1630.41 1123.47 L1630.41 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1654.53 1103.84 L1654.53 1130.72 L1660.18 1130.72 Q1667.33 1130.72 1670.64 1127.48 Q1673.98 1124.24 1673.98 1117.25 Q1673.98 1110.3 1670.64 1107.08 Q1667.33 1103.84 1660.18 1103.84 L1654.53 1103.84 M1649.86 1100 L1659.46 1100 Q1669.51 1100 1674.21 1104.19 Q1678.91 1108.36 1678.91 1117.25 Q1678.91 1126.18 1674.19 1130.37 Q1669.46 1134.56 1659.46 1134.56 L1649.86 1134.56 L1649.86 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1708.35 1120.53 L1708.35 1122.62 L1688.77 1122.62 Q1689.05 1127.01 1691.41 1129.33 Q1693.79 1131.62 1698.03 1131.62 Q1700.48 1131.62 1702.77 1131.02 Q1705.09 1130.42 1707.36 1129.21 L1707.36 1133.24 Q1705.07 1134.21 1702.66 1134.72 Q1700.25 1135.23 1697.77 1135.23 Q1691.57 1135.23 1687.94 1131.62 Q1684.33 1128.01 1684.33 1121.85 Q1684.33 1115.49 1687.75 1111.76 Q1691.2 1108.01 1697.03 1108.01 Q1702.26 1108.01 1705.3 1111.39 Q1708.35 1114.75 1708.35 1120.53 M1704.09 1119.28 Q1704.05 1115.79 1702.13 1113.7 Q1700.23 1111.62 1697.08 1111.62 Q1693.51 1111.62 1691.36 1113.63 Q1689.23 1115.65 1688.91 1119.31 L1704.09 1119.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1734 1109.63 L1734 1113.61 Q1732.2 1112.62 1730.37 1112.13 Q1728.56 1111.62 1726.71 1111.62 Q1722.57 1111.62 1720.27 1114.26 Q1717.98 1116.88 1717.98 1121.62 Q1717.98 1126.37 1720.27 1129 Q1722.57 1131.62 1726.71 1131.62 Q1728.56 1131.62 1730.37 1131.13 Q1732.2 1130.63 1734 1129.63 L1734 1133.56 Q1732.22 1134.4 1730.3 1134.81 Q1728.4 1135.23 1726.25 1135.23 Q1720.39 1135.23 1716.94 1131.55 Q1713.49 1127.87 1713.49 1121.62 Q1713.49 1115.28 1716.96 1111.64 Q1720.46 1108.01 1726.52 1108.01 Q1728.49 1108.01 1730.37 1108.43 Q1732.24 1108.82 1734 1109.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1739.26 1119.68 L1751.73 1119.68 L1751.73 1123.47 L1739.26 1123.47 L1739.26 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1759.93 1130.63 L1767.57 1130.63 L1767.57 1104.26 L1759.26 1105.93 L1759.26 1101.67 L1767.52 1100 L1772.19 1100 L1772.19 1130.63 L1779.83 1130.63 L1779.83 1134.56 L1759.93 1134.56 L1759.93 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M1799.28 1103.08 Q1795.67 1103.08 1793.84 1106.64 Q1792.03 1110.19 1792.03 1117.32 Q1792.03 1124.42 1793.84 1127.99 Q1795.67 1131.53 1799.28 1131.53 Q1802.91 1131.53 1804.72 1127.99 Q1806.55 1124.42 1806.55 1117.32 Q1806.55 1110.19 1804.72 1106.64 Q1802.91 1103.08 1799.28 1103.08 M1799.28 1099.38 Q1805.09 1099.38 1808.14 1103.98 Q1811.22 1108.57 1811.22 1117.32 Q1811.22 1126.04 1808.14 1130.65 Q1805.09 1135.23 1799.28 1135.23 Q1793.47 1135.23 1790.39 1130.65 Q1787.33 1126.04 1787.33 1117.32 Q1787.33 1108.57 1790.39 1103.98 Q1793.47 1099.38 1799.28 1099.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2252.49 1130.63 L2260.13 1130.63 L2260.13 1104.26 L2251.82 1105.93 L2251.82 1101.67 L2260.08 1100 L2264.76 1100 L2264.76 1130.63 L2272.39 1130.63 L2272.39 1134.56 L2252.49 1134.56 L2252.49 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2291.84 1118.15 Q2288.51 1118.15 2286.58 1119.93 Q2284.69 1121.71 2284.69 1124.84 Q2284.69 1127.96 2286.58 1129.75 Q2288.51 1131.53 2291.84 1131.53 Q2295.17 1131.53 2297.09 1129.75 Q2299.01 1127.94 2299.01 1124.84 Q2299.01 1121.71 2297.09 1119.93 Q2295.2 1118.15 2291.84 1118.15 M2287.16 1116.16 Q2284.15 1115.42 2282.46 1113.36 Q2280.8 1111.3 2280.8 1108.33 Q2280.8 1104.19 2283.74 1101.78 Q2286.7 1099.38 2291.84 1099.38 Q2297 1099.38 2299.94 1101.78 Q2302.88 1104.19 2302.88 1108.33 Q2302.88 1111.3 2301.19 1113.36 Q2299.52 1115.42 2296.54 1116.16 Q2299.92 1116.94 2301.79 1119.24 Q2303.69 1121.53 2303.69 1124.84 Q2303.69 1129.86 2300.61 1132.55 Q2297.56 1135.23 2291.84 1135.23 Q2286.12 1135.23 2283.04 1132.55 Q2279.99 1129.86 2279.99 1124.84 Q2279.99 1121.53 2281.89 1119.24 Q2283.78 1116.94 2287.16 1116.16 M2285.45 1108.77 Q2285.45 1111.46 2287.12 1112.96 Q2288.81 1114.47 2291.84 1114.47 Q2294.85 1114.47 2296.54 1112.96 Q2298.25 1111.46 2298.25 1108.77 Q2298.25 1106.09 2296.54 1104.58 Q2294.85 1103.08 2291.84 1103.08 Q2288.81 1103.08 2287.12 1104.58 Q2285.45 1106.09 2285.45 1108.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2309.25 1119.68 L2321.72 1119.68 L2321.72 1123.47 L2309.25 1123.47 L2309.25 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2331.33 1100 L2336.01 1100 L2336.01 1132.15 Q2336.01 1138.4 2333.62 1141.23 Q2331.26 1144.05 2326.01 1144.05 L2324.22 1144.05 L2324.22 1140.12 L2325.68 1140.12 Q2328.78 1140.12 2330.06 1138.38 Q2331.33 1136.64 2331.33 1132.15 L2331.33 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2356.91 1121.53 Q2351.75 1121.53 2349.76 1122.71 Q2347.76 1123.89 2347.76 1126.74 Q2347.76 1129 2349.25 1130.35 Q2350.75 1131.67 2353.32 1131.67 Q2356.86 1131.67 2358.99 1129.17 Q2361.14 1126.64 2361.14 1122.48 L2361.14 1121.53 L2356.91 1121.53 M2365.4 1119.77 L2365.4 1134.56 L2361.14 1134.56 L2361.14 1130.63 Q2359.69 1132.99 2357.51 1134.12 Q2355.33 1135.23 2352.19 1135.23 Q2348.2 1135.23 2345.84 1133.01 Q2343.51 1130.76 2343.51 1127.01 Q2343.51 1122.64 2346.42 1120.42 Q2349.36 1118.19 2355.17 1118.19 L2361.14 1118.19 L2361.14 1117.78 Q2361.14 1114.84 2359.2 1113.24 Q2357.28 1111.62 2353.78 1111.62 Q2351.56 1111.62 2349.45 1112.15 Q2347.35 1112.69 2345.4 1113.75 L2345.4 1109.82 Q2347.74 1108.91 2349.94 1108.47 Q2352.14 1108.01 2354.22 1108.01 Q2359.85 1108.01 2362.63 1110.93 Q2365.4 1113.84 2365.4 1119.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2395.73 1118.91 L2395.73 1134.56 L2391.47 1134.56 L2391.47 1119.05 Q2391.47 1115.37 2390.03 1113.54 Q2388.6 1111.71 2385.73 1111.71 Q2382.28 1111.71 2380.29 1113.91 Q2378.3 1116.11 2378.3 1119.91 L2378.3 1134.56 L2374.01 1134.56 L2374.01 1108.63 L2378.3 1108.63 L2378.3 1112.66 Q2379.82 1110.32 2381.88 1109.17 Q2383.97 1108.01 2386.68 1108.01 Q2391.14 1108.01 2393.44 1110.79 Q2395.73 1113.54 2395.73 1118.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2402.07 1119.68 L2414.55 1119.68 L2414.55 1123.47 L2402.07 1123.47 L2402.07 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2422.74 1130.63 L2430.38 1130.63 L2430.38 1104.26 L2422.07 1105.93 L2422.07 1101.67 L2430.33 1100 L2435.01 1100 L2435.01 1130.63 L2442.65 1130.63 L2442.65 1134.56 L2422.74 1134.56 L2422.74 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2452.9 1130.63 L2460.54 1130.63 L2460.54 1104.26 L2452.23 1105.93 L2452.23 1101.67 L2460.5 1100 L2465.17 1100 L2465.17 1130.63 L2472.81 1130.63 L2472.81 1134.56 L2452.9 1134.56 L2452.9 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2922.67 1130.63 L2938.99 1130.63 L2938.99 1134.56 L2917.05 1134.56 L2917.05 1130.63 Q2919.71 1127.87 2924.29 1123.24 Q2928.9 1118.59 2930.08 1117.25 Q2932.33 1114.72 2933.21 1112.99 Q2934.11 1111.23 2934.11 1109.54 Q2934.11 1106.78 2932.16 1105.05 Q2930.24 1103.31 2927.14 1103.31 Q2924.94 1103.31 2922.49 1104.07 Q2920.06 1104.84 2917.28 1106.39 L2917.28 1101.67 Q2920.1 1100.53 2922.56 1099.95 Q2925.01 1099.38 2927.05 1099.38 Q2932.42 1099.38 2935.61 1102.06 Q2938.81 1104.75 2938.81 1109.24 Q2938.81 1111.37 2938 1113.29 Q2937.21 1115.19 2935.1 1117.78 Q2934.53 1118.45 2931.42 1121.67 Q2928.32 1124.86 2922.67 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2952.84 1130.63 L2969.16 1130.63 L2969.16 1134.56 L2947.21 1134.56 L2947.21 1130.63 Q2949.87 1127.87 2954.46 1123.24 Q2959.06 1118.59 2960.24 1117.25 Q2962.49 1114.72 2963.37 1112.99 Q2964.27 1111.23 2964.27 1109.54 Q2964.27 1106.78 2962.33 1105.05 Q2960.41 1103.31 2957.3 1103.31 Q2955.1 1103.31 2952.65 1104.07 Q2950.22 1104.84 2947.44 1106.39 L2947.44 1101.67 Q2950.27 1100.53 2952.72 1099.95 Q2955.17 1099.38 2957.21 1099.38 Q2962.58 1099.38 2965.78 1102.06 Q2968.97 1104.75 2968.97 1109.24 Q2968.97 1111.37 2968.16 1113.29 Q2967.37 1115.19 2965.27 1117.78 Q2964.69 1118.45 2961.59 1121.67 Q2958.48 1124.86 2952.84 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2976.22 1119.68 L2988.69 1119.68 L2988.69 1123.47 L2976.22 1123.47 L2976.22 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M2995.66 1100 L3015.52 1100 L3015.52 1103.94 L3000.34 1103.94 L3000.34 1114.12 L3014.04 1114.12 L3014.04 1118.06 L3000.34 1118.06 L3000.34 1134.56 L2995.66 1134.56 L2995.66 1100 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M3042.33 1120.53 L3042.33 1122.62 L3022.74 1122.62 Q3023.02 1127.01 3025.38 1129.33 Q3027.77 1131.62 3032 1131.62 Q3034.46 1131.62 3036.75 1131.02 Q3039.06 1130.42 3041.33 1129.21 L3041.33 1133.24 Q3039.04 1134.21 3036.63 1134.72 Q3034.22 1135.23 3031.75 1135.23 Q3025.54 1135.23 3021.91 1131.62 Q3018.3 1128.01 3018.3 1121.85 Q3018.3 1115.49 3021.72 1111.76 Q3025.17 1108.01 3031.01 1108.01 Q3036.24 1108.01 3039.27 1111.39 Q3042.33 1114.75 3042.33 1120.53 M3038.07 1119.28 Q3038.02 1115.79 3036.1 1113.7 Q3034.2 1111.62 3031.05 1111.62 Q3027.49 1111.62 3025.34 1113.63 Q3023.21 1115.65 3022.88 1119.31 L3038.07 1119.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M3067.93 1121.62 Q3067.93 1116.92 3065.98 1114.26 Q3064.06 1111.57 3060.68 1111.57 Q3057.3 1111.57 3055.36 1114.26 Q3053.44 1116.92 3053.44 1121.62 Q3053.44 1126.32 3055.36 1129 Q3057.3 1131.67 3060.68 1131.67 Q3064.06 1131.67 3065.98 1129 Q3067.93 1126.32 3067.93 1121.62 M3053.44 1112.57 Q3054.78 1110.25 3056.82 1109.14 Q3058.88 1108.01 3061.72 1108.01 Q3066.45 1108.01 3069.39 1111.76 Q3072.35 1115.51 3072.35 1121.62 Q3072.35 1127.73 3069.39 1131.48 Q3066.45 1135.23 3061.72 1135.23 Q3058.88 1135.23 3056.82 1134.12 Q3054.78 1132.99 3053.44 1130.67 L3053.44 1134.56 L3049.16 1134.56 L3049.16 1098.54 L3053.44 1098.54 L3053.44 1112.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M3077.26 1119.68 L3089.73 1119.68 L3089.73 1123.47 L3077.26 1123.47 L3077.26 1119.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M3097.93 1130.63 L3105.57 1130.63 L3105.57 1104.26 L3097.26 1105.93 L3097.26 1101.67 L3105.52 1100 L3110.2 1100 L3110.2 1130.63 L3117.84 1130.63 L3117.84 1134.56 L3097.93 1134.56 L3097.93 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M3128.09 1130.63 L3135.73 1130.63 L3135.73 1104.26 L3127.42 1105.93 L3127.42 1101.67 L3135.68 1100 L3140.36 1100 L3140.36 1130.63 L3148 1130.63 L3148 1134.56 L3128.09 1134.56 L3128.09 1130.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,1011.29 3112.95,1011.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,868.952 3112.95,868.952 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,726.613 3112.95,726.613 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,584.275 3112.95,584.275 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,441.936 3112.95,441.936 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,299.598 3112.95,299.598 \n", " \"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 271.257,157.259 3112.95,157.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,1065.76 271.257,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,1011.29 290.155,1011.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,868.952 290.155,868.952 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,726.613 290.155,726.613 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,584.275 290.155,584.275 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,441.936 290.155,441.936 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,299.598 290.155,299.598 \n", " \"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 271.257,157.259 290.155,157.259 \n", " \"/>\n", "<path clip-path=\"url(#clip110)\" d=\"M86.7997 1011.74 L116.475 1011.74 L116.475 1015.68 L86.7997 1015.68 L86.7997 1011.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M136.568 997.089 Q132.957 997.089 131.128 1000.65 Q129.323 1004.2 129.323 1011.33 Q129.323 1018.43 131.128 1022 Q132.957 1025.54 136.568 1025.54 Q140.202 1025.54 142.008 1022 Q143.836 1018.43 143.836 1011.33 Q143.836 1004.2 142.008 1000.65 Q140.202 997.089 136.568 997.089 M136.568 993.385 Q142.378 993.385 145.434 997.992 Q148.512 1002.58 148.512 1011.33 Q148.512 1020.05 145.434 1024.66 Q142.378 1029.24 136.568 1029.24 Q130.758 1029.24 127.679 1024.66 Q124.624 1020.05 124.624 1011.33 Q124.624 1002.58 127.679 997.992 Q130.758 993.385 136.568 993.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M156.73 1022.69 L161.614 1022.69 L161.614 1028.57 L156.73 1028.57 L156.73 1022.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M181.799 997.089 Q178.188 997.089 176.359 1000.65 Q174.554 1004.2 174.554 1011.33 Q174.554 1018.43 176.359 1022 Q178.188 1025.54 181.799 1025.54 Q185.433 1025.54 187.239 1022 Q189.068 1018.43 189.068 1011.33 Q189.068 1004.2 187.239 1000.65 Q185.433 997.089 181.799 997.089 M181.799 993.385 Q187.609 993.385 190.665 997.992 Q193.744 1002.58 193.744 1011.33 Q193.744 1020.05 190.665 1024.66 Q187.609 1029.24 181.799 1029.24 Q175.989 1029.24 172.91 1024.66 Q169.855 1020.05 169.855 1011.33 Q169.855 1002.58 172.91 997.992 Q175.989 993.385 181.799 993.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M216.128 1009.94 Q219.484 1010.65 221.359 1012.92 Q223.257 1015.19 223.257 1018.52 Q223.257 1023.64 219.739 1026.44 Q216.22 1029.24 209.739 1029.24 Q207.563 1029.24 205.248 1028.8 Q202.956 1028.39 200.503 1027.53 L200.503 1023.01 Q202.447 1024.15 204.762 1024.73 Q207.077 1025.31 209.6 1025.31 Q213.998 1025.31 216.29 1023.57 Q218.604 1021.83 218.604 1018.52 Q218.604 1015.47 216.452 1013.76 Q214.322 1012.02 210.503 1012.02 L206.475 1012.02 L206.475 1008.18 L210.688 1008.18 Q214.137 1008.18 215.966 1006.81 Q217.794 1005.42 217.794 1002.83 Q217.794 1000.17 215.896 998.756 Q214.021 997.321 210.503 997.321 Q208.581 997.321 206.382 997.737 Q204.183 998.154 201.544 999.033 L201.544 994.867 Q204.206 994.126 206.521 993.756 Q208.859 993.385 210.919 993.385 Q216.243 993.385 219.345 995.816 Q222.447 998.223 222.447 1002.34 Q222.447 1005.21 220.804 1007.2 Q219.16 1009.17 216.128 1009.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M87.7487 869.403 L117.424 869.403 L117.424 873.338 L87.7487 873.338 L87.7487 869.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M137.517 854.751 Q133.906 854.751 132.077 858.315 Q130.272 861.857 130.272 868.987 Q130.272 876.093 132.077 879.658 Q133.906 883.199 137.517 883.199 Q141.151 883.199 142.957 879.658 Q144.785 876.093 144.785 868.987 Q144.785 861.857 142.957 858.315 Q141.151 854.751 137.517 854.751 M137.517 851.047 Q143.327 851.047 146.383 855.653 Q149.461 860.237 149.461 868.987 Q149.461 877.713 146.383 882.32 Q143.327 886.903 137.517 886.903 Q131.707 886.903 128.628 882.32 Q125.573 877.713 125.573 868.987 Q125.573 860.237 128.628 855.653 Q131.707 851.047 137.517 851.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M157.679 880.352 L162.563 880.352 L162.563 886.232 L157.679 886.232 L157.679 880.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M182.748 854.751 Q179.137 854.751 177.308 858.315 Q175.503 861.857 175.503 868.987 Q175.503 876.093 177.308 879.658 Q179.137 883.199 182.748 883.199 Q186.382 883.199 188.188 879.658 Q190.017 876.093 190.017 868.987 Q190.017 861.857 188.188 858.315 Q186.382 854.751 182.748 854.751 M182.748 851.047 Q188.558 851.047 191.614 855.653 Q194.693 860.237 194.693 868.987 Q194.693 877.713 191.614 882.32 Q188.558 886.903 182.748 886.903 Q176.938 886.903 173.859 882.32 Q170.804 877.713 170.804 868.987 Q170.804 860.237 173.859 855.653 Q176.938 851.047 182.748 851.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M206.938 882.297 L223.257 882.297 L223.257 886.232 L201.313 886.232 L201.313 882.297 Q203.975 879.542 208.558 874.912 Q213.165 870.26 214.345 868.917 Q216.591 866.394 217.47 864.658 Q218.373 862.899 218.373 861.209 Q218.373 858.454 216.429 856.718 Q214.507 854.982 211.405 854.982 Q209.206 854.982 206.753 855.746 Q204.322 856.51 201.544 858.061 L201.544 853.338 Q204.368 852.204 206.822 851.626 Q209.276 851.047 211.313 851.047 Q216.683 851.047 219.878 853.732 Q223.072 856.417 223.072 860.908 Q223.072 863.038 222.262 864.959 Q221.475 866.857 219.368 869.45 Q218.79 870.121 215.688 873.338 Q212.586 876.533 206.938 882.297 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M87.3784 727.065 L117.054 727.065 L117.054 731 L87.3784 731 L87.3784 727.065 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M137.147 712.412 Q133.536 712.412 131.707 715.977 Q129.901 719.518 129.901 726.648 Q129.901 733.754 131.707 737.319 Q133.536 740.861 137.147 740.861 Q140.781 740.861 142.586 737.319 Q144.415 733.754 144.415 726.648 Q144.415 719.518 142.586 715.977 Q140.781 712.412 137.147 712.412 M137.147 708.708 Q142.957 708.708 146.012 713.315 Q149.091 717.898 149.091 726.648 Q149.091 735.375 146.012 739.981 Q142.957 744.565 137.147 744.565 Q131.336 744.565 128.258 739.981 Q125.202 735.375 125.202 726.648 Q125.202 717.898 128.258 713.315 Q131.336 708.708 137.147 708.708 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M157.309 738.014 L162.193 738.014 L162.193 743.893 L157.309 743.893 L157.309 738.014 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M182.378 712.412 Q178.767 712.412 176.938 715.977 Q175.133 719.518 175.133 726.648 Q175.133 733.754 176.938 737.319 Q178.767 740.861 182.378 740.861 Q186.012 740.861 187.818 737.319 Q189.646 733.754 189.646 726.648 Q189.646 719.518 187.818 715.977 Q186.012 712.412 182.378 712.412 M182.378 708.708 Q188.188 708.708 191.244 713.315 Q194.322 717.898 194.322 726.648 Q194.322 735.375 191.244 739.981 Q188.188 744.565 182.378 744.565 Q176.568 744.565 173.489 739.981 Q170.433 735.375 170.433 726.648 Q170.433 717.898 173.489 713.315 Q176.568 708.708 182.378 708.708 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M203.35 739.958 L210.989 739.958 L210.989 713.593 L202.679 715.259 L202.679 711 L210.943 709.333 L215.618 709.333 L215.618 739.958 L223.257 739.958 L223.257 743.893 L203.35 743.893 L203.35 739.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M135.92 570.074 Q132.309 570.074 130.48 573.638 Q128.674 577.18 128.674 584.31 Q128.674 591.416 130.48 594.981 Q132.309 598.522 135.92 598.522 Q139.554 598.522 141.36 594.981 Q143.188 591.416 143.188 584.31 Q143.188 577.18 141.36 573.638 Q139.554 570.074 135.92 570.074 M135.92 566.37 Q141.73 566.37 144.785 570.976 Q147.864 575.56 147.864 584.31 Q147.864 593.036 144.785 597.643 Q141.73 602.226 135.92 602.226 Q130.11 602.226 127.031 597.643 Q123.975 593.036 123.975 584.31 Q123.975 575.56 127.031 570.976 Q130.11 566.37 135.92 566.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M156.082 595.675 L160.966 595.675 L160.966 601.555 L156.082 601.555 L156.082 595.675 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M181.151 570.074 Q177.54 570.074 175.711 573.638 Q173.906 577.18 173.906 584.31 Q173.906 591.416 175.711 594.981 Q177.54 598.522 181.151 598.522 Q184.785 598.522 186.591 594.981 Q188.419 591.416 188.419 584.31 Q188.419 577.18 186.591 573.638 Q184.785 570.074 181.151 570.074 M181.151 566.37 Q186.961 566.37 190.017 570.976 Q193.095 575.56 193.095 584.31 Q193.095 593.036 190.017 597.643 Q186.961 602.226 181.151 602.226 Q175.341 602.226 172.262 597.643 Q169.207 593.036 169.207 584.31 Q169.207 575.56 172.262 570.976 Q175.341 566.37 181.151 566.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M211.313 570.074 Q207.702 570.074 205.873 573.638 Q204.068 577.18 204.068 584.31 Q204.068 591.416 205.873 594.981 Q207.702 598.522 211.313 598.522 Q214.947 598.522 216.753 594.981 Q218.581 591.416 218.581 584.31 Q218.581 577.18 216.753 573.638 Q214.947 570.074 211.313 570.074 M211.313 566.37 Q217.123 566.37 220.179 570.976 Q223.257 575.56 223.257 584.31 Q223.257 593.036 220.179 597.643 Q217.123 602.226 211.313 602.226 Q205.503 602.226 202.424 597.643 Q199.368 593.036 199.368 584.31 Q199.368 575.56 202.424 570.976 Q205.503 566.37 211.313 566.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M137.147 427.735 Q133.536 427.735 131.707 431.3 Q129.901 434.841 129.901 441.971 Q129.901 449.077 131.707 452.642 Q133.536 456.184 137.147 456.184 Q140.781 456.184 142.586 452.642 Q144.415 449.077 144.415 441.971 Q144.415 434.841 142.586 431.3 Q140.781 427.735 137.147 427.735 M137.147 424.031 Q142.957 424.031 146.012 428.638 Q149.091 433.221 149.091 441.971 Q149.091 450.698 146.012 455.304 Q142.957 459.888 137.147 459.888 Q131.336 459.888 128.258 455.304 Q125.202 450.698 125.202 441.971 Q125.202 433.221 128.258 428.638 Q131.336 424.031 137.147 424.031 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M157.309 453.337 L162.193 453.337 L162.193 459.216 L157.309 459.216 L157.309 453.337 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M182.378 427.735 Q178.767 427.735 176.938 431.3 Q175.133 434.841 175.133 441.971 Q175.133 449.077 176.938 452.642 Q178.767 456.184 182.378 456.184 Q186.012 456.184 187.818 452.642 Q189.646 449.077 189.646 441.971 Q189.646 434.841 187.818 431.3 Q186.012 427.735 182.378 427.735 M182.378 424.031 Q188.188 424.031 191.244 428.638 Q194.322 433.221 194.322 441.971 Q194.322 450.698 191.244 455.304 Q188.188 459.888 182.378 459.888 Q176.568 459.888 173.489 455.304 Q170.433 450.698 170.433 441.971 Q170.433 433.221 173.489 428.638 Q176.568 424.031 182.378 424.031 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M203.35 455.281 L210.989 455.281 L210.989 428.916 L202.679 430.582 L202.679 426.323 L210.943 424.656 L215.618 424.656 L215.618 455.281 L223.257 455.281 L223.257 459.216 L203.35 459.216 L203.35 455.281 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M137.517 285.396 Q133.906 285.396 132.077 288.961 Q130.272 292.503 130.272 299.633 Q130.272 306.739 132.077 310.304 Q133.906 313.845 137.517 313.845 Q141.151 313.845 142.957 310.304 Q144.785 306.739 144.785 299.633 Q144.785 292.503 142.957 288.961 Q141.151 285.396 137.517 285.396 M137.517 281.693 Q143.327 281.693 146.383 286.299 Q149.461 290.883 149.461 299.633 Q149.461 308.359 146.383 312.966 Q143.327 317.549 137.517 317.549 Q131.707 317.549 128.628 312.966 Q125.573 308.359 125.573 299.633 Q125.573 290.883 128.628 286.299 Q131.707 281.693 137.517 281.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M157.679 310.998 L162.563 310.998 L162.563 316.878 L157.679 316.878 L157.679 310.998 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M182.748 285.396 Q179.137 285.396 177.308 288.961 Q175.503 292.503 175.503 299.633 Q175.503 306.739 177.308 310.304 Q179.137 313.845 182.748 313.845 Q186.382 313.845 188.188 310.304 Q190.017 306.739 190.017 299.633 Q190.017 292.503 188.188 288.961 Q186.382 285.396 182.748 285.396 M182.748 281.693 Q188.558 281.693 191.614 286.299 Q194.693 290.883 194.693 299.633 Q194.693 308.359 191.614 312.966 Q188.558 317.549 182.748 317.549 Q176.938 317.549 173.859 312.966 Q170.804 308.359 170.804 299.633 Q170.804 290.883 173.859 286.299 Q176.938 281.693 182.748 281.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M206.938 312.943 L223.257 312.943 L223.257 316.878 L201.313 316.878 L201.313 312.943 Q203.975 310.188 208.558 305.558 Q213.165 300.906 214.345 299.563 Q216.591 297.04 217.47 295.304 Q218.373 293.545 218.373 291.855 Q218.373 289.1 216.429 287.364 Q214.507 285.628 211.405 285.628 Q209.206 285.628 206.753 286.392 Q204.322 287.156 201.544 288.707 L201.544 283.984 Q204.368 282.85 206.822 282.272 Q209.276 281.693 211.313 281.693 Q216.683 281.693 219.878 284.378 Q223.072 287.063 223.072 291.554 Q223.072 293.683 222.262 295.605 Q221.475 297.503 219.368 300.095 Q218.79 300.767 215.688 303.984 Q212.586 307.179 206.938 312.943 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M136.568 143.058 Q132.957 143.058 131.128 146.623 Q129.323 150.164 129.323 157.294 Q129.323 164.4 131.128 167.965 Q132.957 171.507 136.568 171.507 Q140.202 171.507 142.008 167.965 Q143.836 164.4 143.836 157.294 Q143.836 150.164 142.008 146.623 Q140.202 143.058 136.568 143.058 M136.568 139.354 Q142.378 139.354 145.434 143.961 Q148.512 148.544 148.512 157.294 Q148.512 166.021 145.434 170.627 Q142.378 175.211 136.568 175.211 Q130.758 175.211 127.679 170.627 Q124.624 166.021 124.624 157.294 Q124.624 148.544 127.679 143.961 Q130.758 139.354 136.568 139.354 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M156.73 168.66 L161.614 168.66 L161.614 174.539 L156.73 174.539 L156.73 168.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M181.799 143.058 Q178.188 143.058 176.359 146.623 Q174.554 150.164 174.554 157.294 Q174.554 164.4 176.359 167.965 Q178.188 171.507 181.799 171.507 Q185.433 171.507 187.239 167.965 Q189.068 164.4 189.068 157.294 Q189.068 150.164 187.239 146.623 Q185.433 143.058 181.799 143.058 M181.799 139.354 Q187.609 139.354 190.665 143.961 Q193.744 148.544 193.744 157.294 Q193.744 166.021 190.665 170.627 Q187.609 175.211 181.799 175.211 Q175.989 175.211 172.91 170.627 Q169.855 166.021 169.855 157.294 Q169.855 148.544 172.91 143.961 Q175.989 139.354 181.799 139.354 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M216.128 155.905 Q219.484 156.623 221.359 158.891 Q223.257 161.16 223.257 164.493 Q223.257 169.609 219.739 172.41 Q216.22 175.211 209.739 175.211 Q207.563 175.211 205.248 174.771 Q202.956 174.354 200.503 173.498 L200.503 168.984 Q202.447 170.118 204.762 170.697 Q207.077 171.275 209.6 171.275 Q213.998 171.275 216.29 169.539 Q218.604 167.803 218.604 164.493 Q218.604 161.438 216.452 159.725 Q214.322 157.988 210.503 157.988 L206.475 157.988 L206.475 154.146 L210.688 154.146 Q214.137 154.146 215.966 152.78 Q217.794 151.391 217.794 148.799 Q217.794 146.137 215.896 144.725 Q214.021 143.289 210.503 143.289 Q208.581 143.289 206.382 143.706 Q204.183 144.123 201.544 145.002 L201.544 140.836 Q204.206 140.095 206.521 139.725 Q208.859 139.354 210.919 139.354 Q216.243 139.354 219.345 141.785 Q222.447 144.192 222.447 148.313 Q222.447 151.183 220.804 153.174 Q219.16 155.141 216.128 155.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip112)\" cx=\"351.682\" cy=\"499.047\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"378.491\" cy=\"373.835\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"405.299\" cy=\"592.63\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"432.108\" cy=\"535.937\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"458.916\" cy=\"778.551\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"485.725\" cy=\"467.991\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"512.533\" cy=\"396.586\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"539.341\" cy=\"456.752\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"566.15\" cy=\"610.001\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"592.958\" cy=\"486.9\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"619.767\" cy=\"211.687\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"646.575\" cy=\"445.683\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"673.383\" cy=\"484.156\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"700.192\" cy=\"776.49\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"727\" cy=\"405.388\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"753.809\" cy=\"512.017\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"780.617\" cy=\"709.926\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"807.425\" cy=\"681.253\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"834.234\" cy=\"363.197\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"861.042\" cy=\"472.279\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"887.851\" cy=\"600.919\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"914.659\" cy=\"619.864\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"941.467\" cy=\"1025.26\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"968.276\" cy=\"483.81\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"995.084\" cy=\"698.505\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1021.89\" cy=\"567.164\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1048.7\" cy=\"114.751\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1075.51\" cy=\"609.639\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1102.32\" cy=\"551.752\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1129.13\" cy=\"463.957\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1155.93\" cy=\"781.048\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1182.74\" cy=\"680.637\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1209.55\" cy=\"692.707\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1236.36\" cy=\"493.499\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1263.17\" cy=\"1011.89\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1289.98\" cy=\"921.643\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1316.79\" cy=\"393.452\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1343.59\" cy=\"601.614\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1370.4\" cy=\"798.087\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1397.21\" cy=\"1038.06\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1424.02\" cy=\"303.007\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1450.83\" cy=\"409.938\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1477.64\" cy=\"416.821\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1504.44\" cy=\"601.06\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1531.25\" cy=\"404.058\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1558.06\" cy=\"550.393\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1584.87\" cy=\"619.731\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1611.68\" cy=\"965.814\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1638.49\" cy=\"835.875\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1665.29\" cy=\"232.28\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1692.1\" cy=\"556.583\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1718.91\" cy=\"802.195\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1745.72\" cy=\"818.658\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1772.53\" cy=\"785.693\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1799.34\" cy=\"589.34\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1826.14\" cy=\"291.857\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1852.95\" cy=\"448.649\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1879.76\" cy=\"415.887\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1906.57\" cy=\"573.884\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1933.38\" cy=\"565.119\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1960.19\" cy=\"565.979\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"1987\" cy=\"524.899\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2013.8\" cy=\"562.431\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2040.61\" cy=\"759.52\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2067.42\" cy=\"242.631\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2094.23\" cy=\"455.598\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2121.04\" cy=\"458.169\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2147.85\" cy=\"484.889\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2174.65\" cy=\"695.799\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2201.46\" cy=\"770.863\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2228.27\" cy=\"627.481\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2255.08\" cy=\"530.748\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2281.89\" cy=\"448.387\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2308.7\" cy=\"729.447\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2335.5\" cy=\"805.802\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2362.31\" cy=\"670.381\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2389.12\" cy=\"576.863\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2415.93\" cy=\"838.136\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2442.74\" cy=\"445.579\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2469.55\" cy=\"741.802\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2496.36\" cy=\"594.934\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2523.16\" cy=\"408.827\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2549.97\" cy=\"784.718\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2576.78\" cy=\"989.914\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2603.59\" cy=\"569.241\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2630.4\" cy=\"241.014\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2657.21\" cy=\"478.279\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2684.01\" cy=\"932.693\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2710.82\" cy=\"235.451\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2737.63\" cy=\"672.469\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2764.44\" cy=\"508.044\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2791.25\" cy=\"515.625\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2818.06\" cy=\"835.708\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2844.86\" cy=\"516.204\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2871.67\" cy=\"619.83\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2898.48\" cy=\"532.942\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2925.29\" cy=\"461.877\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2952.1\" cy=\"451.753\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"2978.91\" cy=\"581.557\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"3005.71\" cy=\"770.298\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<circle clip-path=\"url(#clip112)\" cx=\"3032.52\" cy=\"687.418\" r=\"14.4\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<polyline clip-path=\"url(#clip112)\" style=\"stroke:#0000ff; stroke-linecap:round; stroke-linejoin:round; stroke-width:8; stroke-opacity:1; fill:none\" points=\"\n", " 351.682,552.93 378.491,553.545 405.299,554.16 432.108,554.775 458.916,555.39 485.725,556.005 512.533,556.62 539.341,557.235 566.15,557.85 592.958,558.465 \n", " 619.767,559.08 646.575,559.695 673.383,560.31 700.192,560.925 727,561.54 753.809,562.155 780.617,562.77 807.425,563.385 834.234,564 861.042,564.615 \n", " 887.851,565.23 914.659,565.845 941.467,566.46 968.276,567.075 995.084,567.69 1021.89,568.305 1048.7,568.92 1075.51,569.535 1102.32,570.149 1129.13,570.764 \n", " 1155.93,571.379 1182.74,571.994 1209.55,572.609 1236.36,573.224 1263.17,573.839 1289.98,574.454 1316.79,575.069 1343.59,575.684 1370.4,576.299 1397.21,576.914 \n", " 1424.02,577.529 1450.83,578.144 1477.64,578.759 1504.44,579.374 1531.25,579.989 1558.06,580.604 1584.87,581.219 1611.68,581.834 1638.49,582.449 1665.29,583.064 \n", " 1692.1,583.679 1718.91,584.294 1745.72,584.909 1772.53,585.524 1799.34,586.139 1826.14,586.754 1852.95,587.369 1879.76,587.984 1906.57,588.599 1933.38,589.214 \n", " 1960.19,589.828 1987,590.443 2013.8,591.058 2040.61,591.673 2067.42,592.288 2094.23,592.903 2121.04,593.518 2147.85,594.133 2174.65,594.748 2201.46,595.363 \n", " 2228.27,595.978 2255.08,596.593 2281.89,597.208 2308.7,597.823 2335.5,598.438 2362.31,599.053 2389.12,599.668 2415.93,600.283 2442.74,600.898 2469.55,601.513 \n", " 2496.36,602.128 2523.16,602.743 2549.97,603.358 2576.78,603.973 2603.59,604.588 2630.4,605.203 2657.21,605.818 2684.01,606.433 2710.82,607.048 2737.63,607.663 \n", " 2764.44,608.278 2791.25,608.893 2818.06,609.508 2844.86,610.122 2871.67,610.737 2898.48,611.352 2925.29,611.967 2952.1,612.582 2978.91,613.197 3005.71,613.812 \n", " 3032.52,614.427 \n", " \"/>\n", "<path clip-path=\"url(#clip110)\" d=\"\n", "M365.98 275.195 L950.287 275.195 L950.287 119.675 L365.98 119.675 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip110)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 365.98,275.195 950.287,275.195 950.287,119.675 365.98,119.675 365.98,275.195 \n", " \"/>\n", "<circle clip-path=\"url(#clip110)\" cx=\"492.278\" cy=\"171.515\" r=\"23.04\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"none\"/>\n", "<path clip-path=\"url(#clip110)\" d=\"M630.473 165.856 Q627.047 165.856 625.057 168.541 Q623.066 171.203 623.066 175.855 Q623.066 180.508 625.033 183.193 Q627.024 185.855 630.473 185.855 Q633.876 185.855 635.867 183.17 Q637.857 180.485 637.857 175.855 Q637.857 171.249 635.867 168.564 Q633.876 165.856 630.473 165.856 M630.473 162.244 Q636.029 162.244 639.2 165.856 Q642.371 169.467 642.371 175.855 Q642.371 182.221 639.2 185.855 Q636.029 189.467 630.473 189.467 Q624.894 189.467 621.723 185.855 Q618.575 182.221 618.575 175.855 Q618.575 169.467 621.723 165.856 Q624.894 162.244 630.473 162.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M668.042 175.855 Q668.042 171.156 666.098 168.494 Q664.177 165.809 660.797 165.809 Q657.417 165.809 655.473 168.494 Q653.552 171.156 653.552 175.855 Q653.552 180.555 655.473 183.24 Q657.417 185.902 660.797 185.902 Q664.177 185.902 666.098 183.24 Q668.042 180.555 668.042 175.855 M653.552 166.805 Q654.894 164.49 656.931 163.379 Q658.992 162.244 661.839 162.244 Q666.561 162.244 669.501 165.994 Q672.464 169.744 672.464 175.855 Q672.464 181.967 669.501 185.717 Q666.561 189.467 661.839 189.467 Q658.992 189.467 656.931 188.355 Q654.894 187.221 653.552 184.906 L653.552 188.795 L649.269 188.795 L649.269 152.777 L653.552 152.777 L653.552 166.805 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M696.051 163.633 L696.051 167.661 Q694.246 166.735 692.302 166.272 Q690.357 165.809 688.274 165.809 Q685.102 165.809 683.505 166.781 Q681.931 167.754 681.931 169.698 Q681.931 171.18 683.065 172.036 Q684.2 172.869 687.626 173.633 L689.084 173.957 Q693.621 174.93 695.519 176.712 Q697.44 178.471 697.44 181.643 Q697.44 185.254 694.57 187.36 Q691.723 189.467 686.723 189.467 Q684.64 189.467 682.371 189.05 Q680.126 188.656 677.626 187.846 L677.626 183.448 Q679.987 184.675 682.278 185.3 Q684.57 185.902 686.815 185.902 Q689.825 185.902 691.445 184.883 Q693.065 183.842 693.065 181.967 Q693.065 180.23 691.885 179.305 Q690.727 178.379 686.769 177.522 L685.288 177.175 Q681.329 176.342 679.57 174.629 Q677.811 172.893 677.811 169.883 Q677.811 166.226 680.403 164.235 Q682.996 162.244 687.765 162.244 Q690.126 162.244 692.209 162.592 Q694.292 162.939 696.051 163.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M726.399 174.768 L726.399 176.851 L706.815 176.851 Q707.093 181.249 709.454 183.564 Q711.838 185.855 716.075 185.855 Q718.528 185.855 720.82 185.254 Q723.135 184.652 725.403 183.448 L725.403 187.476 Q723.112 188.448 720.704 188.957 Q718.297 189.467 715.82 189.467 Q709.616 189.467 705.982 185.855 Q702.371 182.244 702.371 176.087 Q702.371 169.721 705.797 165.994 Q709.246 162.244 715.079 162.244 Q720.311 162.244 723.343 165.624 Q726.399 168.981 726.399 174.768 M722.139 173.518 Q722.093 170.022 720.172 167.939 Q718.274 165.856 715.125 165.856 Q711.561 165.856 709.408 167.869 Q707.278 169.883 706.954 173.541 L722.139 173.518 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M748.412 166.851 Q747.695 166.434 746.838 166.249 Q746.005 166.041 744.986 166.041 Q741.375 166.041 739.431 168.402 Q737.51 170.74 737.51 175.138 L737.51 188.795 L733.227 188.795 L733.227 162.869 L737.51 162.869 L737.51 166.897 Q738.852 164.536 741.005 163.402 Q743.158 162.244 746.236 162.244 Q746.676 162.244 747.209 162.314 Q747.741 162.36 748.389 162.476 L748.412 166.851 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M749.824 162.869 L754.338 162.869 L762.44 184.629 L770.542 162.869 L775.056 162.869 L765.334 188.795 L759.547 188.795 L749.824 162.869 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M792.718 175.763 Q787.556 175.763 785.565 176.943 Q783.574 178.124 783.574 180.971 Q783.574 183.24 785.056 184.582 Q786.56 185.902 789.13 185.902 Q792.671 185.902 794.801 183.402 Q796.954 180.879 796.954 176.712 L796.954 175.763 L792.718 175.763 M801.213 174.004 L801.213 188.795 L796.954 188.795 L796.954 184.86 Q795.495 187.221 793.319 188.355 Q791.144 189.467 787.995 189.467 Q784.014 189.467 781.653 187.244 Q779.315 184.999 779.315 181.249 Q779.315 176.874 782.232 174.652 Q785.171 172.43 790.982 172.43 L796.954 172.43 L796.954 172.013 Q796.954 169.073 795.009 167.476 Q793.088 165.856 789.593 165.856 Q787.37 165.856 785.264 166.388 Q783.158 166.92 781.213 167.985 L781.213 164.05 Q783.551 163.147 785.75 162.707 Q787.949 162.244 790.032 162.244 Q795.657 162.244 798.435 165.161 Q801.213 168.078 801.213 174.004 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M814.199 155.508 L814.199 162.869 L822.972 162.869 L822.972 166.18 L814.199 166.18 L814.199 180.254 Q814.199 183.425 815.055 184.328 Q815.935 185.23 818.597 185.23 L822.972 185.23 L822.972 188.795 L818.597 188.795 Q813.667 188.795 811.792 186.967 Q809.917 185.115 809.917 180.254 L809.917 166.18 L806.792 166.18 L806.792 162.869 L809.917 162.869 L809.917 155.508 L814.199 155.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M828.574 162.869 L832.833 162.869 L832.833 188.795 L828.574 188.795 L828.574 162.869 M828.574 152.777 L832.833 152.777 L832.833 158.17 L828.574 158.17 L828.574 152.777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M851.791 165.856 Q848.365 165.856 846.375 168.541 Q844.384 171.203 844.384 175.855 Q844.384 180.508 846.352 183.193 Q848.342 185.855 851.791 185.855 Q855.194 185.855 857.185 183.17 Q859.176 180.485 859.176 175.855 Q859.176 171.249 857.185 168.564 Q855.194 165.856 851.791 165.856 M851.791 162.244 Q857.347 162.244 860.518 165.856 Q863.689 169.467 863.689 175.855 Q863.689 182.221 860.518 185.855 Q857.347 189.467 851.791 189.467 Q846.213 189.467 843.041 185.855 Q839.893 182.221 839.893 175.855 Q839.893 169.467 843.041 165.856 Q846.213 162.244 851.791 162.244 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M892.3 173.147 L892.3 188.795 L888.041 188.795 L888.041 173.286 Q888.041 169.606 886.606 167.777 Q885.171 165.948 882.3 165.948 Q878.851 165.948 876.861 168.147 Q874.87 170.346 874.87 174.143 L874.87 188.795 L870.588 188.795 L870.588 162.869 L874.87 162.869 L874.87 166.897 Q876.398 164.559 878.458 163.402 Q880.541 162.244 883.25 162.244 Q887.717 162.244 890.009 165.022 Q892.3 167.777 892.3 173.147 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M917.323 163.633 L917.323 167.661 Q915.518 166.735 913.573 166.272 Q911.629 165.809 909.546 165.809 Q906.374 165.809 904.777 166.781 Q903.203 167.754 903.203 169.698 Q903.203 171.18 904.337 172.036 Q905.472 172.869 908.898 173.633 L910.356 173.957 Q914.893 174.93 916.791 176.712 Q918.712 178.471 918.712 181.643 Q918.712 185.254 915.842 187.36 Q912.995 189.467 907.995 189.467 Q905.911 189.467 903.643 189.05 Q901.398 188.656 898.898 187.846 L898.898 183.448 Q901.259 184.675 903.55 185.3 Q905.842 185.902 908.087 185.902 Q911.097 185.902 912.717 184.883 Q914.337 183.842 914.337 181.967 Q914.337 180.23 913.157 179.305 Q911.999 178.379 908.041 177.522 L906.56 177.175 Q902.601 176.342 900.842 174.629 Q899.083 172.893 899.083 169.883 Q899.083 166.226 901.675 164.235 Q904.268 162.244 909.036 162.244 Q911.398 162.244 913.481 162.592 Q915.564 162.939 917.323 163.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip110)\" style=\"stroke:#0000ff; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 397.555,223.355 587.001,223.355 \n", " \"/>\n", "<path clip-path=\"url(#clip110)\" d=\"M633.76 218.691 Q633.043 218.274 632.186 218.089 Q631.353 217.881 630.334 217.881 Q626.723 217.881 624.779 220.242 Q622.857 222.58 622.857 226.978 L622.857 240.635 L618.575 240.635 L618.575 214.709 L622.857 214.709 L622.857 218.737 Q624.2 216.376 626.353 215.242 Q628.506 214.084 631.584 214.084 Q632.024 214.084 632.556 214.154 Q633.089 214.2 633.737 214.316 L633.76 218.691 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M659.362 226.608 L659.362 228.691 L639.779 228.691 Q640.056 233.089 642.418 235.404 Q644.802 237.695 649.038 237.695 Q651.492 237.695 653.783 237.094 Q656.098 236.492 658.367 235.288 L658.367 239.316 Q656.075 240.288 653.667 240.797 Q651.26 241.307 648.783 241.307 Q642.58 241.307 638.945 237.695 Q635.334 234.084 635.334 227.927 Q635.334 221.561 638.76 217.834 Q642.209 214.084 648.042 214.084 Q653.274 214.084 656.306 217.464 Q659.362 220.821 659.362 226.608 M655.103 225.358 Q655.056 221.862 653.135 219.779 Q651.237 217.696 648.089 217.696 Q644.524 217.696 642.371 219.709 Q640.242 221.723 639.918 225.381 L655.103 225.358 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M683.413 227.371 Q683.413 222.742 681.491 220.196 Q679.593 217.649 676.144 217.649 Q672.718 217.649 670.797 220.196 Q668.899 222.742 668.899 227.371 Q668.899 231.978 670.797 234.524 Q672.718 237.07 676.144 237.07 Q679.593 237.07 681.491 234.524 Q683.413 231.978 683.413 227.371 M687.672 237.418 Q687.672 244.038 684.732 247.256 Q681.792 250.496 675.728 250.496 Q673.482 250.496 671.491 250.149 Q669.501 249.825 667.626 249.131 L667.626 244.987 Q669.501 246.006 671.329 246.492 Q673.158 246.978 675.056 246.978 Q679.246 246.978 681.329 244.779 Q683.413 242.603 683.413 238.182 L683.413 236.075 Q682.093 238.367 680.033 239.501 Q677.973 240.635 675.103 240.635 Q670.334 240.635 667.417 237.001 Q664.501 233.367 664.501 227.371 Q664.501 221.353 667.417 217.719 Q670.334 214.084 675.103 214.084 Q677.973 214.084 680.033 215.219 Q682.093 216.353 683.413 218.645 L683.413 214.709 L687.672 214.709 L687.672 237.418 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M711.468 218.691 Q710.75 218.274 709.894 218.089 Q709.061 217.881 708.042 217.881 Q704.431 217.881 702.487 220.242 Q700.565 222.58 700.565 226.978 L700.565 240.635 L696.283 240.635 L696.283 214.709 L700.565 214.709 L700.565 218.737 Q701.908 216.376 704.061 215.242 Q706.213 214.084 709.292 214.084 Q709.732 214.084 710.264 214.154 Q710.797 214.2 711.445 214.316 L711.468 218.691 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M737.07 226.608 L737.07 228.691 L717.487 228.691 Q717.764 233.089 720.125 235.404 Q722.51 237.695 726.746 237.695 Q729.199 237.695 731.491 237.094 Q733.806 236.492 736.074 235.288 L736.074 239.316 Q733.783 240.288 731.375 240.797 Q728.968 241.307 726.491 241.307 Q720.287 241.307 716.653 237.695 Q713.042 234.084 713.042 227.927 Q713.042 221.561 716.468 217.834 Q719.917 214.084 725.75 214.084 Q730.982 214.084 734.014 217.464 Q737.07 220.821 737.07 226.608 M732.811 225.358 Q732.764 221.862 730.843 219.779 Q728.945 217.696 725.797 217.696 Q722.232 217.696 720.079 219.709 Q717.95 221.723 717.625 225.381 L732.811 225.358 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M760.588 215.473 L760.588 219.501 Q758.783 218.575 756.838 218.112 Q754.894 217.649 752.81 217.649 Q749.639 217.649 748.042 218.621 Q746.468 219.594 746.468 221.538 Q746.468 223.02 747.602 223.876 Q748.736 224.709 752.162 225.473 L753.621 225.797 Q758.158 226.77 760.056 228.552 Q761.977 230.311 761.977 233.483 Q761.977 237.094 759.107 239.2 Q756.26 241.307 751.26 241.307 Q749.176 241.307 746.908 240.89 Q744.662 240.496 742.162 239.686 L742.162 235.288 Q744.523 236.515 746.815 237.14 Q749.107 237.742 751.352 237.742 Q754.361 237.742 755.982 236.723 Q757.602 235.682 757.602 233.807 Q757.602 232.07 756.422 231.145 Q755.264 230.219 751.306 229.362 L749.824 229.015 Q745.866 228.182 744.107 226.469 Q742.348 224.733 742.348 221.723 Q742.348 218.066 744.94 216.075 Q747.533 214.084 752.301 214.084 Q754.662 214.084 756.746 214.432 Q758.829 214.779 760.588 215.473 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M785.287 215.473 L785.287 219.501 Q783.482 218.575 781.537 218.112 Q779.593 217.649 777.509 217.649 Q774.338 217.649 772.741 218.621 Q771.167 219.594 771.167 221.538 Q771.167 223.02 772.301 223.876 Q773.435 224.709 776.861 225.473 L778.32 225.797 Q782.857 226.77 784.755 228.552 Q786.676 230.311 786.676 233.483 Q786.676 237.094 783.806 239.2 Q780.958 241.307 775.958 241.307 Q773.875 241.307 771.607 240.89 Q769.361 240.496 766.861 239.686 L766.861 235.288 Q769.222 236.515 771.514 237.14 Q773.806 237.742 776.051 237.742 Q779.06 237.742 780.681 236.723 Q782.301 235.682 782.301 233.807 Q782.301 232.07 781.12 231.145 Q779.963 230.219 776.005 229.362 L774.523 229.015 Q770.565 228.182 768.806 226.469 Q767.046 224.733 767.046 221.723 Q767.046 218.066 769.639 216.075 Q772.232 214.084 777 214.084 Q779.361 214.084 781.445 214.432 Q783.528 214.779 785.287 215.473 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M793.458 214.709 L797.718 214.709 L797.718 240.635 L793.458 240.635 L793.458 214.709 M793.458 204.617 L797.718 204.617 L797.718 210.01 L793.458 210.01 L793.458 204.617 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M816.676 217.696 Q813.25 217.696 811.259 220.381 Q809.268 223.043 809.268 227.695 Q809.268 232.348 811.236 235.033 Q813.227 237.695 816.676 237.695 Q820.079 237.695 822.069 235.01 Q824.06 232.325 824.06 227.695 Q824.06 223.089 822.069 220.404 Q820.079 217.696 816.676 217.696 M816.676 214.084 Q822.231 214.084 825.403 217.696 Q828.574 221.307 828.574 227.695 Q828.574 234.061 825.403 237.695 Q822.231 241.307 816.676 241.307 Q811.097 241.307 807.926 237.695 Q804.778 234.061 804.778 227.695 Q804.778 221.307 807.926 217.696 Q811.097 214.084 816.676 214.084 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip110)\" d=\"M857.185 224.987 L857.185 240.635 L852.926 240.635 L852.926 225.126 Q852.926 221.446 851.49 219.617 Q850.055 217.788 847.185 217.788 Q843.736 217.788 841.745 219.987 Q839.754 222.186 839.754 225.983 L839.754 240.635 L835.472 240.635 L835.472 214.709 L839.754 214.709 L839.754 218.737 Q841.282 216.399 843.342 215.242 Q845.426 214.084 848.134 214.084 Q852.602 214.084 854.893 216.862 Q857.185 219.617 857.185 224.987 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Visualize observations\n", "scatter(dates_num, stock_val, color=\"black\", xticks=(xtick_points, [dates_str[i] for i in xtick_points]), label=\"observations\", legend=:topleft)\n", "\n", "# Overlay regression function\n", "plot!(dates_num, regression_estimated, color=\"blue\", label=\"regression\", linewidth=2, size=(800,300))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The slope coefficient $\\theta_1$ is negative and the plot shows a decreasing line. The ISE experienced a negative linear trend from October 2010 up to March 2011. Assuming the stock market is an indicator of economic growth, then we may conclude that in March 2011 the Turkish economy is still in recession." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---\n", "\n", "#### Exercise\n", "\n", "Change the `time period` variable. Re-run the regression and see how the results change.\n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Problem: Credit Assignment\n", "\n", "We will now look at a classification problem. Suppose you are a bank and that you have to decide whether you will grant credit, e.g. a mortgage or a small business loan, to a customer. You have a historic data set where your experts have assigned credit to hundreds of people. You have asked them to report on what aspects of the problem are important. You hope to automate this decision process by training a classifier on the data set." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Data\n", "\n", "The data set we are going to use actually comes from the [UCI ML Repository](https://archive.ics.uci.edu/ml/datasets/Credit+Approval). It consists of past credit assignments, labeled as successful (=1) or unsuccessful (=0). Many of the features have been anonymized for privacy concerns." ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "# Read CSV file\n", "df = DataFrame(CSV.File(\"../datasets/credit_train.csv\"))\n", "\n", "# Split dataframe into features and labels\n", "features_train = Matrix(df[:,1:7])\n", "labels_train = Vector(df[:,8])\n", "\n", "# Store number of features\n", "num_features = size(features_train,2)\n", "\n", "# Number of training samples\n", "num_train = size(features_train,1);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's visualize the data and see if we can make sense of it." ] }, { "cell_type": "code", "execution_count": 12, "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=\"300\" viewBox=\"0 0 3200 1200\">\n", "<defs>\n", " <clipPath id=\"clip150\">\n", " <rect x=\"0\" y=\"0\" width=\"3200\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip150)\" d=\"\n", "M0 1200 L3200 1200 L3200 0 L0 0 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip151\">\n", " <rect x=\"640\" y=\"0\" width=\"2241\" height=\"1200\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip150)\" d=\"\n", "M230.981 1023.28 L3112.95 1023.28 L3112.95 87.0516 L230.981 87.0516 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip152\">\n", " <rect x=\"230\" y=\"87\" width=\"2883\" height=\"937\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 530.896,1023.28 530.896,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1044.66,1023.28 1044.66,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1558.42,1023.28 1558.42,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2072.19,1023.28 2072.19,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2585.95,1023.28 2585.95,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 3099.71,1023.28 3099.71,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,1023.28 3112.95,1023.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.896,1023.28 530.896,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1044.66,1023.28 1044.66,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1558.42,1023.28 1558.42,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2072.19,1023.28 2072.19,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2585.95,1023.28 2585.95,1004.38 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 3099.71,1023.28 3099.71,1004.38 \n", " \"/>\n", "<path clip-path=\"url(#clip150)\" d=\"M509.669 1088.15 L525.988 1088.15 L525.988 1092.08 L504.044 1092.08 L504.044 1088.15 Q506.706 1085.39 511.289 1080.76 Q515.896 1076.11 517.076 1074.77 Q519.322 1072.24 520.201 1070.51 Q521.104 1068.75 521.104 1067.06 Q521.104 1064.3 519.16 1062.57 Q517.238 1060.83 514.137 1060.83 Q511.938 1060.83 509.484 1061.6 Q507.053 1062.36 504.276 1063.91 L504.276 1059.19 Q507.1 1058.05 509.553 1057.48 Q512.007 1056.9 514.044 1056.9 Q519.414 1056.9 522.609 1059.58 Q525.803 1062.27 525.803 1066.76 Q525.803 1068.89 524.993 1070.81 Q524.206 1072.71 522.099 1075.3 Q521.521 1075.97 518.419 1079.19 Q515.317 1082.38 509.669 1088.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M545.803 1060.6 Q542.192 1060.6 540.363 1064.17 Q538.558 1067.71 538.558 1074.84 Q538.558 1081.94 540.363 1085.51 Q542.192 1089.05 545.803 1089.05 Q549.437 1089.05 551.243 1085.51 Q553.072 1081.94 553.072 1074.84 Q553.072 1067.71 551.243 1064.17 Q549.437 1060.6 545.803 1060.6 M545.803 1056.9 Q551.613 1056.9 554.669 1061.5 Q557.747 1066.09 557.747 1074.84 Q557.747 1083.56 554.669 1088.17 Q551.613 1092.75 545.803 1092.75 Q539.993 1092.75 536.914 1088.17 Q533.859 1083.56 533.859 1074.84 Q533.859 1066.09 536.914 1061.5 Q539.993 1056.9 545.803 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1033.5 1073.45 Q1036.86 1074.17 1038.73 1076.43 Q1040.63 1078.7 1040.63 1082.04 Q1040.63 1087.15 1037.11 1089.95 Q1033.59 1092.75 1027.11 1092.75 Q1024.94 1092.75 1022.62 1092.31 Q1020.33 1091.9 1017.88 1091.04 L1017.88 1086.53 Q1019.82 1087.66 1022.14 1088.24 Q1024.45 1088.82 1026.97 1088.82 Q1031.37 1088.82 1033.66 1087.08 Q1035.98 1085.35 1035.98 1082.04 Q1035.98 1078.98 1033.83 1077.27 Q1031.7 1075.53 1027.88 1075.53 L1023.85 1075.53 L1023.85 1071.69 L1028.06 1071.69 Q1031.51 1071.69 1033.34 1070.32 Q1035.17 1068.93 1035.17 1066.34 Q1035.17 1063.68 1033.27 1062.27 Q1031.4 1060.83 1027.88 1060.83 Q1025.96 1060.83 1023.76 1061.25 Q1021.56 1061.67 1018.92 1062.55 L1018.92 1058.38 Q1021.58 1057.64 1023.9 1057.27 Q1026.23 1056.9 1028.29 1056.9 Q1033.62 1056.9 1036.72 1059.33 Q1039.82 1061.74 1039.82 1065.86 Q1039.82 1068.73 1038.18 1070.72 Q1036.53 1072.68 1033.5 1073.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1059.5 1060.6 Q1055.89 1060.6 1054.06 1064.17 Q1052.25 1067.71 1052.25 1074.84 Q1052.25 1081.94 1054.06 1085.51 Q1055.89 1089.05 1059.5 1089.05 Q1063.13 1089.05 1064.94 1085.51 Q1066.77 1081.94 1066.77 1074.84 Q1066.77 1067.71 1064.94 1064.17 Q1063.13 1060.6 1059.5 1060.6 M1059.5 1056.9 Q1065.31 1056.9 1068.36 1061.5 Q1071.44 1066.09 1071.44 1074.84 Q1071.44 1083.56 1068.36 1088.17 Q1065.31 1092.75 1059.5 1092.75 Q1053.69 1092.75 1050.61 1088.17 Q1047.55 1083.56 1047.55 1074.84 Q1047.55 1066.09 1050.61 1061.5 Q1053.69 1056.9 1059.5 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1546.59 1061.6 L1534.79 1080.05 L1546.59 1080.05 L1546.59 1061.6 M1545.37 1057.52 L1551.25 1057.52 L1551.25 1080.05 L1556.18 1080.05 L1556.18 1083.93 L1551.25 1083.93 L1551.25 1092.08 L1546.59 1092.08 L1546.59 1083.93 L1530.99 1083.93 L1530.99 1079.42 L1545.37 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1573.91 1060.6 Q1570.3 1060.6 1568.47 1064.17 Q1566.66 1067.71 1566.66 1074.84 Q1566.66 1081.94 1568.47 1085.51 Q1570.3 1089.05 1573.91 1089.05 Q1577.54 1089.05 1579.35 1085.51 Q1581.18 1081.94 1581.18 1074.84 Q1581.18 1067.71 1579.35 1064.17 Q1577.54 1060.6 1573.91 1060.6 M1573.91 1056.9 Q1579.72 1056.9 1582.77 1061.5 Q1585.85 1066.09 1585.85 1074.84 Q1585.85 1083.56 1582.77 1088.17 Q1579.72 1092.75 1573.91 1092.75 Q1568.1 1092.75 1565.02 1088.17 Q1561.96 1083.56 1561.96 1074.84 Q1561.96 1066.09 1565.02 1061.5 Q1568.1 1056.9 1573.91 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2046.89 1057.52 L2065.24 1057.52 L2065.24 1061.46 L2051.17 1061.46 L2051.17 1069.93 Q2052.19 1069.58 2053.21 1069.42 Q2054.22 1069.24 2055.24 1069.24 Q2061.03 1069.24 2064.41 1072.41 Q2067.79 1075.58 2067.79 1080.99 Q2067.79 1086.57 2064.32 1089.67 Q2060.84 1092.75 2054.52 1092.75 Q2052.35 1092.75 2050.08 1092.38 Q2047.83 1092.01 2045.43 1091.27 L2045.43 1086.57 Q2047.51 1087.71 2049.73 1088.26 Q2051.96 1088.82 2054.43 1088.82 Q2058.44 1088.82 2060.77 1086.71 Q2063.11 1084.61 2063.11 1080.99 Q2063.11 1077.38 2060.77 1075.28 Q2058.44 1073.17 2054.43 1073.17 Q2052.56 1073.17 2050.68 1073.59 Q2048.83 1074 2046.89 1074.88 L2046.89 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2087 1060.6 Q2083.39 1060.6 2081.56 1064.17 Q2079.76 1067.71 2079.76 1074.84 Q2079.76 1081.94 2081.56 1085.51 Q2083.39 1089.05 2087 1089.05 Q2090.64 1089.05 2092.44 1085.51 Q2094.27 1081.94 2094.27 1074.84 Q2094.27 1067.71 2092.44 1064.17 Q2090.64 1060.6 2087 1060.6 M2087 1056.9 Q2092.81 1056.9 2095.87 1061.5 Q2098.95 1066.09 2098.95 1074.84 Q2098.95 1083.56 2095.87 1088.17 Q2092.81 1092.75 2087 1092.75 Q2081.19 1092.75 2078.11 1088.17 Q2075.06 1083.56 2075.06 1074.84 Q2075.06 1066.09 2078.11 1061.5 Q2081.19 1056.9 2087 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2571.36 1072.94 Q2568.21 1072.94 2566.36 1075.09 Q2564.53 1077.24 2564.53 1080.99 Q2564.53 1084.72 2566.36 1086.9 Q2568.21 1089.05 2571.36 1089.05 Q2574.5 1089.05 2576.33 1086.9 Q2578.18 1084.72 2578.18 1080.99 Q2578.18 1077.24 2576.33 1075.09 Q2574.5 1072.94 2571.36 1072.94 M2580.64 1058.29 L2580.64 1062.55 Q2578.88 1061.71 2577.07 1061.27 Q2575.29 1060.83 2573.53 1060.83 Q2568.9 1060.83 2566.45 1063.96 Q2564.02 1067.08 2563.67 1073.4 Q2565.04 1071.39 2567.1 1070.32 Q2569.16 1069.24 2571.63 1069.24 Q2576.84 1069.24 2579.85 1072.41 Q2582.88 1075.55 2582.88 1080.99 Q2582.88 1086.32 2579.73 1089.54 Q2576.59 1092.75 2571.36 1092.75 Q2565.36 1092.75 2562.19 1088.17 Q2559.02 1083.56 2559.02 1074.84 Q2559.02 1066.64 2562.91 1061.78 Q2566.8 1056.9 2573.35 1056.9 Q2575.11 1056.9 2576.89 1057.24 Q2578.69 1057.59 2580.64 1058.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2600.94 1060.6 Q2597.33 1060.6 2595.5 1064.17 Q2593.69 1067.71 2593.69 1074.84 Q2593.69 1081.94 2595.5 1085.51 Q2597.33 1089.05 2600.94 1089.05 Q2604.57 1089.05 2606.38 1085.51 Q2608.21 1081.94 2608.21 1074.84 Q2608.21 1067.71 2606.38 1064.17 Q2604.57 1060.6 2600.94 1060.6 M2600.94 1056.9 Q2606.75 1056.9 2609.8 1061.5 Q2612.88 1066.09 2612.88 1074.84 Q2612.88 1083.56 2609.8 1088.17 Q2606.75 1092.75 2600.94 1092.75 Q2595.13 1092.75 2592.05 1088.17 Q2588.99 1083.56 2588.99 1074.84 Q2588.99 1066.09 2592.05 1061.5 Q2595.13 1056.9 2600.94 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M3073.07 1057.52 L3095.29 1057.52 L3095.29 1059.51 L3082.75 1092.08 L3077.86 1092.08 L3089.67 1061.46 L3073.07 1061.46 L3073.07 1057.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M3114.41 1060.6 Q3110.8 1060.6 3108.97 1064.17 Q3107.17 1067.71 3107.17 1074.84 Q3107.17 1081.94 3108.97 1085.51 Q3110.8 1089.05 3114.41 1089.05 Q3118.05 1089.05 3119.85 1085.51 Q3121.68 1081.94 3121.68 1074.84 Q3121.68 1067.71 3119.85 1064.17 Q3118.05 1060.6 3114.41 1060.6 M3114.41 1056.9 Q3120.22 1056.9 3123.28 1061.5 Q3126.36 1066.09 3126.36 1074.84 Q3126.36 1083.56 3123.28 1088.17 Q3120.22 1092.75 3114.41 1092.75 Q3108.6 1092.75 3105.52 1088.17 Q3102.47 1083.56 3102.47 1074.84 Q3102.47 1066.09 3105.52 1061.5 Q3108.6 1056.9 3114.41 1056.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1560.01 1130.62 L1560.01 1135.49 L1554.41 1135.49 Q1551.26 1135.49 1550.01 1136.76 Q1548.8 1138.04 1548.8 1141.35 L1548.8 1144.5 L1558.45 1144.5 L1558.45 1149.05 L1548.8 1149.05 L1548.8 1180.15 L1542.92 1180.15 L1542.92 1149.05 L1537.31 1149.05 L1537.31 1144.5 L1542.92 1144.5 L1542.92 1142.02 Q1542.92 1136.06 1545.69 1133.36 Q1548.45 1130.62 1554.47 1130.62 L1560.01 1130.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1595.4 1160.86 L1595.4 1163.72 L1568.47 1163.72 Q1568.86 1169.77 1572.1 1172.95 Q1575.38 1176.1 1581.21 1176.1 Q1584.58 1176.1 1587.73 1175.28 Q1590.91 1174.45 1594.03 1172.79 L1594.03 1178.33 Q1590.88 1179.67 1587.57 1180.37 Q1584.26 1181.07 1580.86 1181.07 Q1572.33 1181.07 1567.33 1176.1 Q1562.36 1171.14 1562.36 1162.67 Q1562.36 1153.92 1567.07 1148.8 Q1571.82 1143.64 1579.84 1143.64 Q1587.03 1143.64 1591.2 1148.29 Q1595.4 1152.9 1595.4 1160.86 M1589.54 1159.14 Q1589.48 1154.33 1586.84 1151.47 Q1584.23 1148.6 1579.9 1148.6 Q1575 1148.6 1572.04 1151.37 Q1569.11 1154.14 1568.67 1159.17 L1589.54 1159.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1621.21 1162.23 Q1614.12 1162.23 1611.38 1163.85 Q1608.64 1165.47 1608.64 1169.39 Q1608.64 1172.51 1610.68 1174.35 Q1612.75 1176.17 1616.28 1176.17 Q1621.15 1176.17 1624.08 1172.73 Q1627.04 1169.26 1627.04 1163.53 L1627.04 1162.23 L1621.21 1162.23 M1632.9 1159.81 L1632.9 1180.15 L1627.04 1180.15 L1627.04 1174.74 Q1625.03 1177.98 1622.04 1179.54 Q1619.05 1181.07 1614.72 1181.07 Q1609.25 1181.07 1606 1178.01 Q1602.79 1174.93 1602.79 1169.77 Q1602.79 1163.75 1606.8 1160.7 Q1610.84 1157.64 1618.83 1157.64 L1627.04 1157.64 L1627.04 1157.07 Q1627.04 1153.03 1624.37 1150.83 Q1621.72 1148.6 1616.92 1148.6 Q1613.86 1148.6 1610.97 1149.34 Q1608.07 1150.07 1605.4 1151.53 L1605.4 1146.12 Q1608.61 1144.88 1611.63 1144.28 Q1614.66 1143.64 1617.52 1143.64 Q1625.26 1143.64 1629.08 1147.65 Q1632.9 1151.66 1632.9 1159.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1650.75 1134.38 L1650.75 1144.5 L1662.81 1144.5 L1662.81 1149.05 L1650.75 1149.05 L1650.75 1168.4 Q1650.75 1172.76 1651.93 1174 Q1653.14 1175.24 1656.8 1175.24 L1662.81 1175.24 L1662.81 1180.15 L1656.8 1180.15 Q1650.02 1180.15 1647.44 1177.63 Q1644.86 1175.09 1644.86 1168.4 L1644.86 1149.05 L1640.57 1149.05 L1640.57 1144.5 L1644.86 1144.5 L1644.86 1134.38 L1650.75 1134.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1669.91 1166.08 L1669.91 1144.5 L1675.77 1144.5 L1675.77 1165.86 Q1675.77 1170.92 1677.74 1173.46 Q1679.71 1175.98 1683.66 1175.98 Q1688.4 1175.98 1691.14 1172.95 Q1693.91 1169.93 1693.91 1164.71 L1693.91 1144.5 L1699.77 1144.5 L1699.77 1180.15 L1693.91 1180.15 L1693.91 1174.67 Q1691.78 1177.92 1688.95 1179.51 Q1686.14 1181.07 1682.42 1181.07 Q1676.28 1181.07 1673.09 1177.25 Q1669.91 1173.43 1669.91 1166.08 M1684.65 1143.64 L1684.65 1143.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1732.49 1149.97 Q1731.5 1149.4 1730.32 1149.15 Q1729.18 1148.86 1727.78 1148.86 Q1722.81 1148.86 1720.14 1152.11 Q1717.5 1155.32 1717.5 1161.37 L1717.5 1180.15 L1711.61 1180.15 L1711.61 1144.5 L1717.5 1144.5 L1717.5 1150.04 Q1719.34 1146.79 1722.3 1145.23 Q1725.26 1143.64 1729.49 1143.64 Q1730.1 1143.64 1730.83 1143.73 Q1731.56 1143.8 1732.45 1143.96 L1732.49 1149.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1767.69 1160.86 L1767.69 1163.72 L1740.76 1163.72 Q1741.14 1169.77 1744.39 1172.95 Q1747.67 1176.1 1753.49 1176.1 Q1756.87 1176.1 1760.02 1175.28 Q1763.2 1174.45 1766.32 1172.79 L1766.32 1178.33 Q1763.17 1179.67 1759.86 1180.37 Q1756.55 1181.07 1753.14 1181.07 Q1744.61 1181.07 1739.62 1176.1 Q1734.65 1171.14 1734.65 1162.67 Q1734.65 1153.92 1739.36 1148.8 Q1744.1 1143.64 1752.12 1143.64 Q1759.32 1143.64 1763.49 1148.29 Q1767.69 1152.9 1767.69 1160.86 M1761.83 1159.14 Q1761.77 1154.33 1759.13 1151.47 Q1756.52 1148.6 1752.19 1148.6 Q1747.29 1148.6 1744.33 1151.37 Q1741.4 1154.14 1740.95 1159.17 L1761.83 1159.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M1779.24 1174.74 L1789.75 1174.74 L1789.75 1138.48 L1778.32 1140.77 L1778.32 1134.92 L1789.68 1132.63 L1796.11 1132.63 L1796.11 1174.74 L1806.62 1174.74 L1806.62 1180.15 L1779.24 1180.15 L1779.24 1174.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,998.049 3112.95,998.049 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,840.102 3112.95,840.102 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,682.156 3112.95,682.156 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,524.209 3112.95,524.209 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,366.263 3112.95,366.263 \n", " \"/>\n", "<polyline clip-path=\"url(#clip152)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 230.981,208.317 3112.95,208.317 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,1023.28 230.981,87.0516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,998.049 249.879,998.049 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,840.102 249.879,840.102 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,682.156 249.879,682.156 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,524.209 249.879,524.209 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,366.263 249.879,366.263 \n", " \"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.981,208.317 249.879,208.317 \n", " \"/>\n", "<path clip-path=\"url(#clip150)\" d=\"M171.037 983.847 Q167.426 983.847 165.597 987.412 Q163.791 990.954 163.791 998.084 Q163.791 1005.19 165.597 1008.75 Q167.426 1012.3 171.037 1012.3 Q174.671 1012.3 176.477 1008.75 Q178.305 1005.19 178.305 998.084 Q178.305 990.954 176.477 987.412 Q174.671 983.847 171.037 983.847 M171.037 980.144 Q176.847 980.144 179.902 984.75 Q182.981 989.334 182.981 998.084 Q182.981 1006.81 179.902 1011.42 Q176.847 1016 171.037 1016 Q165.227 1016 162.148 1011.42 Q159.092 1006.81 159.092 998.084 Q159.092 989.334 162.148 984.75 Q165.227 980.144 171.037 980.144 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M162.078 822.822 L180.435 822.822 L180.435 826.758 L166.361 826.758 L166.361 835.23 Q167.379 834.882 168.398 834.72 Q169.416 834.535 170.435 834.535 Q176.222 834.535 179.601 837.707 Q182.981 840.878 182.981 846.294 Q182.981 851.873 179.509 854.975 Q176.037 858.054 169.717 858.054 Q167.541 858.054 165.273 857.683 Q163.028 857.313 160.62 856.572 L160.62 851.873 Q162.703 853.007 164.926 853.563 Q167.148 854.118 169.625 854.118 Q173.629 854.118 175.967 852.012 Q178.305 849.906 178.305 846.294 Q178.305 842.683 175.967 840.577 Q173.629 838.47 169.625 838.47 Q167.75 838.47 165.875 838.887 Q164.023 839.304 162.078 840.183 L162.078 822.822 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M131.685 695.501 L139.324 695.501 L139.324 669.135 L131.014 670.802 L131.014 666.543 L139.278 664.876 L143.954 664.876 L143.954 695.501 L151.592 695.501 L151.592 699.436 L131.685 699.436 L131.685 695.501 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M171.037 667.955 Q167.426 667.955 165.597 671.519 Q163.791 675.061 163.791 682.191 Q163.791 689.297 165.597 692.862 Q167.426 696.404 171.037 696.404 Q174.671 696.404 176.477 692.862 Q178.305 689.297 178.305 682.191 Q178.305 675.061 176.477 671.519 Q174.671 667.955 171.037 667.955 M171.037 664.251 Q176.847 664.251 179.902 668.857 Q182.981 673.441 182.981 682.191 Q182.981 690.917 179.902 695.524 Q176.847 700.107 171.037 700.107 Q165.227 700.107 162.148 695.524 Q159.092 690.917 159.092 682.191 Q159.092 673.441 162.148 668.857 Q165.227 664.251 171.037 664.251 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M132.68 537.554 L140.319 537.554 L140.319 511.189 L132.009 512.855 L132.009 508.596 L140.273 506.929 L144.949 506.929 L144.949 537.554 L152.588 537.554 L152.588 541.489 L132.68 541.489 L132.68 537.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M162.078 506.929 L180.435 506.929 L180.435 510.865 L166.361 510.865 L166.361 519.337 Q167.379 518.99 168.398 518.828 Q169.416 518.642 170.435 518.642 Q176.222 518.642 179.601 521.814 Q182.981 524.985 182.981 530.402 Q182.981 535.98 179.509 539.082 Q176.037 542.161 169.717 542.161 Q167.541 542.161 165.273 541.79 Q163.028 541.42 160.62 540.679 L160.62 535.98 Q162.703 537.114 164.926 537.67 Q167.148 538.226 169.625 538.226 Q173.629 538.226 175.967 536.119 Q178.305 534.013 178.305 530.402 Q178.305 526.79 175.967 524.684 Q173.629 522.578 169.625 522.578 Q167.75 522.578 165.875 522.994 Q164.023 523.411 162.078 524.29 L162.078 506.929 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M134.903 379.608 L151.222 379.608 L151.222 383.543 L129.278 383.543 L129.278 379.608 Q131.94 376.853 136.523 372.224 Q141.129 367.571 142.31 366.228 Q144.555 363.705 145.435 361.969 Q146.338 360.21 146.338 358.52 Q146.338 355.765 144.393 354.029 Q142.472 352.293 139.37 352.293 Q137.171 352.293 134.717 353.057 Q132.287 353.821 129.509 355.372 L129.509 350.65 Q132.333 349.515 134.787 348.937 Q137.241 348.358 139.278 348.358 Q144.648 348.358 147.842 351.043 Q151.037 353.728 151.037 358.219 Q151.037 360.349 150.227 362.27 Q149.44 364.168 147.333 366.761 Q146.754 367.432 143.653 370.65 Q140.551 373.844 134.903 379.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M171.037 352.062 Q167.426 352.062 165.597 355.627 Q163.791 359.168 163.791 366.298 Q163.791 373.404 165.597 376.969 Q167.426 380.511 171.037 380.511 Q174.671 380.511 176.477 376.969 Q178.305 373.404 178.305 366.298 Q178.305 359.168 176.477 355.627 Q174.671 352.062 171.037 352.062 M171.037 348.358 Q176.847 348.358 179.902 352.964 Q182.981 357.548 182.981 366.298 Q182.981 375.025 179.902 379.631 Q176.847 384.214 171.037 384.214 Q165.227 384.214 162.148 379.631 Q159.092 375.025 159.092 366.298 Q159.092 357.548 162.148 352.964 Q165.227 348.358 171.037 348.358 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M135.898 221.661 L152.217 221.661 L152.217 225.597 L130.273 225.597 L130.273 221.661 Q132.935 218.907 137.518 214.277 Q142.125 209.624 143.305 208.282 Q145.551 205.759 146.43 204.023 Q147.333 202.263 147.333 200.574 Q147.333 197.819 145.389 196.083 Q143.467 194.347 140.366 194.347 Q138.167 194.347 135.713 195.111 Q133.282 195.875 130.505 197.425 L130.505 192.703 Q133.329 191.569 135.782 190.99 Q138.236 190.412 140.273 190.412 Q145.643 190.412 148.838 193.097 Q152.032 195.782 152.032 200.273 Q152.032 202.402 151.222 204.324 Q150.435 206.222 148.329 208.814 Q147.75 209.486 144.648 212.703 Q141.546 215.898 135.898 221.661 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M162.078 191.037 L180.435 191.037 L180.435 194.972 L166.361 194.972 L166.361 203.444 Q167.379 203.097 168.398 202.935 Q169.416 202.749 170.435 202.749 Q176.222 202.749 179.601 205.921 Q182.981 209.092 182.981 214.509 Q182.981 220.087 179.509 223.189 Q176.037 226.268 169.717 226.268 Q167.541 226.268 165.273 225.898 Q163.028 225.527 160.62 224.786 L160.62 220.087 Q162.703 221.222 164.926 221.777 Q167.148 222.333 169.625 222.333 Q173.629 222.333 175.967 220.226 Q178.305 218.12 178.305 214.509 Q178.305 210.898 175.967 208.791 Q173.629 206.685 169.625 206.685 Q167.75 206.685 165.875 207.101 Q164.023 207.518 162.078 208.398 L162.078 191.037 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M17.4965 666.869 L22.3662 666.869 L22.3662 672.471 Q22.3662 675.622 23.6394 676.863 Q24.9125 678.073 28.2227 678.073 L31.3737 678.073 L31.3737 668.429 L35.9252 668.429 L35.9252 678.073 L67.0217 678.073 L67.0217 683.961 L35.9252 683.961 L35.9252 689.563 L31.3737 689.563 L31.3737 683.961 L28.8911 683.961 Q22.9392 683.961 20.2337 681.192 Q17.4965 678.423 17.4965 672.407 L17.4965 666.869 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M47.7336 631.476 L50.5982 631.476 L50.5982 658.403 Q56.6456 658.021 59.8284 654.774 Q62.9795 651.496 62.9795 645.671 Q62.9795 642.298 62.1519 639.147 Q61.3244 635.964 59.6693 632.845 L65.2075 632.845 Q66.5443 635.996 67.2445 639.306 Q67.9447 642.616 67.9447 646.022 Q67.9447 654.552 62.9795 659.549 Q58.0142 664.514 49.5478 664.514 Q40.795 664.514 35.6706 659.803 Q30.5144 655.061 30.5144 647.04 Q30.5144 639.847 35.1613 635.677 Q39.7765 631.476 47.7336 631.476 M46.0148 637.332 Q41.2087 637.396 38.3442 640.038 Q35.4796 642.648 35.4796 646.976 Q35.4796 651.878 38.2487 654.838 Q41.0178 657.766 46.0467 658.212 L46.0148 637.332 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M49.1022 605.663 Q49.1022 612.761 50.7255 615.498 Q52.3487 618.235 56.2636 618.235 Q59.3828 618.235 61.2289 616.198 Q63.0431 614.129 63.0431 610.596 Q63.0431 605.727 59.6056 602.798 Q56.1363 599.838 50.4072 599.838 L49.1022 599.838 L49.1022 605.663 M46.6832 593.982 L67.0217 593.982 L67.0217 599.838 L61.6108 599.838 Q64.8573 601.844 66.4169 604.835 Q67.9447 607.827 67.9447 612.156 Q67.9447 617.63 64.8892 620.877 Q61.8018 624.092 56.6456 624.092 Q50.63 624.092 47.5744 620.081 Q44.5189 616.039 44.5189 608.05 L44.5189 599.838 L43.946 599.838 Q39.9038 599.838 37.7076 602.512 Q35.4796 605.154 35.4796 609.96 Q35.4796 613.015 36.2117 615.912 Q36.9437 618.808 38.4078 621.482 L32.997 621.482 Q31.7557 618.267 31.1509 615.243 Q30.5144 612.22 30.5144 609.355 Q30.5144 601.621 34.5247 597.801 Q38.5351 593.982 46.6832 593.982 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M21.2523 576.126 L31.3737 576.126 L31.3737 564.063 L35.9252 564.063 L35.9252 576.126 L55.277 576.126 Q59.6375 576.126 60.8788 574.948 Q62.1201 573.739 62.1201 570.079 L62.1201 564.063 L67.0217 564.063 L67.0217 570.079 Q67.0217 576.858 64.5072 579.436 Q61.9609 582.014 55.277 582.014 L35.9252 582.014 L35.9252 586.311 L31.3737 586.311 L31.3737 582.014 L21.2523 582.014 L21.2523 576.126 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M52.9535 556.965 L31.3737 556.965 L31.3737 551.109 L52.7307 551.109 Q57.7914 551.109 60.3377 549.135 Q62.8521 547.162 62.8521 543.215 Q62.8521 538.473 59.8284 535.736 Q56.8047 532.967 51.5848 532.967 L31.3737 532.967 L31.3737 527.11 L67.0217 527.11 L67.0217 532.967 L61.5472 532.967 Q64.7937 535.099 66.3851 537.932 Q67.9447 540.733 67.9447 544.457 Q67.9447 550.6 64.1253 553.782 Q60.3059 556.965 52.9535 556.965 M30.5144 542.229 L30.5144 542.229 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M36.8482 494.39 Q36.2753 495.377 36.0207 496.555 Q35.7342 497.701 35.7342 499.101 Q35.7342 504.066 38.9807 506.74 Q42.1954 509.382 48.2428 509.382 L67.0217 509.382 L67.0217 515.27 L31.3737 515.27 L31.3737 509.382 L36.9119 509.382 Q33.6654 507.536 32.1058 504.576 Q30.5144 501.615 30.5144 497.382 Q30.5144 496.778 30.6098 496.045 Q30.6735 495.313 30.8326 494.422 L36.8482 494.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M47.7336 459.188 L50.5982 459.188 L50.5982 486.115 Q56.6456 485.733 59.8284 482.487 Q62.9795 479.208 62.9795 473.384 Q62.9795 470.01 62.1519 466.859 Q61.3244 463.676 59.6693 460.557 L65.2075 460.557 Q66.5443 463.708 67.2445 467.018 Q67.9447 470.328 67.9447 473.734 Q67.9447 482.264 62.9795 487.261 Q58.0142 492.226 49.5478 492.226 Q40.795 492.226 35.6706 487.515 Q30.5144 482.773 30.5144 474.752 Q30.5144 467.559 35.1613 463.389 Q39.7765 459.188 47.7336 459.188 M46.0148 465.044 Q41.2087 465.108 38.3442 467.75 Q35.4796 470.36 35.4796 474.689 Q35.4796 479.59 38.2487 482.55 Q41.0178 485.478 46.0467 485.924 L46.0148 465.044 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M61.6108 443.21 L61.6108 420.771 L67.0217 420.771 L67.0217 450.944 L61.6108 450.944 Q57.8232 447.284 51.4575 440.982 Q45.06 434.648 43.2139 433.025 Q39.7446 429.938 37.3575 428.728 Q34.9385 427.487 32.615 427.487 Q28.8274 427.487 26.4403 430.16 Q24.0532 432.802 24.0532 437.067 Q24.0532 440.091 25.1035 443.465 Q26.1538 446.807 28.2864 450.626 L21.7933 450.626 Q20.2337 446.743 19.438 443.369 Q18.6423 439.995 18.6423 437.195 Q18.6423 429.81 22.3344 425.418 Q26.0265 421.026 32.2013 421.026 Q35.1295 421.026 37.7713 422.14 Q40.3812 423.222 43.946 426.118 Q44.869 426.914 49.2932 431.179 Q53.6855 435.444 61.6108 443.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip152)\" cx=\"663.447\" cy=\"950.665\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1776.77\" cy=\"982.254\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"607.96\" cy=\"634.772\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"886.42\" cy=\"926.973\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1387.34\" cy=\"934.87\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1502.94\" cy=\"945.453\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"774.933\" cy=\"980.991\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1618.53\" cy=\"958.562\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"312.546\" cy=\"986.203\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"989.173\" cy=\"986.203\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"881.796\" cy=\"980.991\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"603.85\" cy=\"974.357\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1618.53\" cy=\"955.877\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1018.97\" cy=\"979.727\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"565.318\" cy=\"971.672\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"565.318\" cy=\"958.562\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1117.61\" cy=\"508.415\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1233.21\" cy=\"929.658\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1605.69\" cy=\"982.254\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"659.337\" cy=\"994.1\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1237.32\" cy=\"974.357\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1605.69\" cy=\"971.672\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1549.69\" cy=\"982.254\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2166.21\" cy=\"903.281\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2050.61\" cy=\"397.852\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1066.24\" cy=\"954.614\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1639.6\" cy=\"942.768\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2513\" cy=\"912.442\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1429.98\" cy=\"971.672\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"449.721\" cy=\"669.046\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2007.97\" cy=\"166.145\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1554.31\" cy=\"840.102\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"552.474\" cy=\"666.361\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1271.74\" cy=\"955.877\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"573.538\" cy=\"982.254\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1160.26\" cy=\"555.799\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1361.65\" cy=\"984.781\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"501.097\" cy=\"950.665\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"440.987\" cy=\"992.837\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"685.025\" cy=\"974.357\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"569.428\" cy=\"837.417\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1528.62\" cy=\"944.031\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"847.888\" cy=\"971.672\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1018.97\" cy=\"963.774\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"659.337\" cy=\"984.939\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"398.345\" cy=\"792.718\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1134.57\" cy=\"903.281\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"436.877\" cy=\"920.339\" r=\"14.4\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"334.124\" cy=\"996.785\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2046.5\" cy=\"758.444\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"954.751\" cy=\"836.154\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"607.96\" cy=\"808.513\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"676.291\" cy=\"903.281\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"843.264\" cy=\"724.328\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"329.5\" cy=\"974.357\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"693.759\" cy=\"646.618\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1952.48\" cy=\"988.888\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"552.474\" cy=\"940.082\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1151.52\" cy=\"871.692\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1930.9\" cy=\"974.357\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"796.512\" cy=\"887.486\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"839.154\" cy=\"966.46\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2410.24\" cy=\"413.647\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"787.778\" cy=\"642.669\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"659.337\" cy=\"730.803\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2273.58\" cy=\"694.002\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"787.778\" cy=\"608.553\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2615.75\" cy=\"476.826\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"470.785\" cy=\"697.951\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"3031.38\" cy=\"524.209\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"933.173\" cy=\"950.665\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1112.99\" cy=\"382.058\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"668.071\" cy=\"666.361\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1006.13\" cy=\"530.843\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"774.933\" cy=\"903.281\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"890.53\" cy=\"974.357\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"757.979\" cy=\"608.395\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1982.28\" cy=\"205.631\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1156.15\" cy=\"951.928\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"616.694\" cy=\"634.772\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1635.49\" cy=\"949.401\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"689.135\" cy=\"919.076\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"655.227\" cy=\"819.095\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"432.253\" cy=\"986.203\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1425.87\" cy=\"933.607\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1939.64\" cy=\"745.334\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"2402.02\" cy=\"113.549\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1310.28\" cy=\"919.076\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"501.097\" cy=\"792.718\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1429.98\" cy=\"962.511\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1661.18\" cy=\"991.573\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1571.27\" cy=\"318.879\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"689.135\" cy=\"634.772\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"791.888\" cy=\"917.812\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1468.51\" cy=\"808.513\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"582.272\" cy=\"903.281\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1053.39\" cy=\"792.718\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1507.05\" cy=\"840.102\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1164.37\" cy=\"980.991\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<circle clip-path=\"url(#clip152)\" cx=\"1772.66\" cy=\"787.506\" r=\"14.4\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.4\"/>\n", "<path clip-path=\"url(#clip150)\" d=\"\n", "M2431.72 273.779 L3016.88 273.779 L3016.88 118.259 L2431.72 118.259 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip150)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2431.72,273.779 3016.88,273.779 3016.88,118.259 2431.72,118.259 2431.72,273.779 \n", " \"/>\n", "<circle clip-path=\"url(#clip150)\" cx=\"2559.81\" cy=\"170.099\" r=\"23.04\" fill=\"#0000ff\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.84\"/>\n", "<path clip-path=\"url(#clip150)\" d=\"M2687.89 177.148 L2687.89 161.454 L2692.15 161.454 L2692.15 176.986 Q2692.15 180.666 2693.59 182.518 Q2695.02 184.347 2697.89 184.347 Q2701.34 184.347 2703.33 182.148 Q2705.35 179.949 2705.35 176.153 L2705.35 161.454 L2709.61 161.454 L2709.61 187.379 L2705.35 187.379 L2705.35 183.398 Q2703.8 185.759 2701.74 186.916 Q2699.7 188.051 2696.99 188.051 Q2692.52 188.051 2690.21 185.273 Q2687.89 182.495 2687.89 177.148 M2698.61 160.829 L2698.61 160.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2739.93 171.731 L2739.93 187.379 L2735.67 187.379 L2735.67 171.87 Q2735.67 168.19 2734.24 166.361 Q2732.8 164.532 2729.93 164.532 Q2726.48 164.532 2724.49 166.731 Q2722.5 168.93 2722.5 172.727 L2722.5 187.379 L2718.22 187.379 L2718.22 161.454 L2722.5 161.454 L2722.5 165.481 Q2724.03 163.143 2726.09 161.986 Q2728.17 160.829 2730.88 160.829 Q2735.35 160.829 2737.64 163.606 Q2739.93 166.361 2739.93 171.731 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2764.95 162.217 L2764.95 166.245 Q2763.15 165.319 2761.2 164.856 Q2759.26 164.393 2757.18 164.393 Q2754.01 164.393 2752.41 165.366 Q2750.83 166.338 2750.83 168.282 Q2750.83 169.764 2751.97 170.62 Q2753.1 171.453 2756.53 172.217 L2757.99 172.541 Q2762.52 173.514 2764.42 175.296 Q2766.34 177.055 2766.34 180.227 Q2766.34 183.838 2763.47 185.944 Q2760.63 188.051 2755.63 188.051 Q2753.54 188.051 2751.27 187.634 Q2749.03 187.24 2746.53 186.43 L2746.53 182.032 Q2748.89 183.259 2751.18 183.884 Q2753.47 184.486 2755.72 184.486 Q2758.73 184.486 2760.35 183.467 Q2761.97 182.426 2761.97 180.551 Q2761.97 178.815 2760.79 177.889 Q2759.63 176.963 2755.67 176.106 L2754.19 175.759 Q2750.23 174.926 2748.47 173.213 Q2746.71 171.477 2746.71 168.467 Q2746.71 164.81 2749.31 162.819 Q2751.9 160.829 2756.67 160.829 Q2759.03 160.829 2761.11 161.176 Q2763.2 161.523 2764.95 162.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2772.69 177.148 L2772.69 161.454 L2776.95 161.454 L2776.95 176.986 Q2776.95 180.666 2778.38 182.518 Q2779.82 184.347 2782.69 184.347 Q2786.14 184.347 2788.13 182.148 Q2790.14 179.949 2790.14 176.153 L2790.14 161.454 L2794.4 161.454 L2794.4 187.379 L2790.14 187.379 L2790.14 183.398 Q2788.59 185.759 2786.53 186.916 Q2784.49 188.051 2781.78 188.051 Q2777.32 188.051 2775 185.273 Q2772.69 182.495 2772.69 177.148 M2783.4 160.829 L2783.4 160.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2821.83 162.449 L2821.83 166.43 Q2820.02 165.435 2818.2 164.949 Q2816.39 164.44 2814.54 164.44 Q2810.39 164.44 2808.1 167.078 Q2805.81 169.694 2805.81 174.44 Q2805.81 179.185 2808.1 181.824 Q2810.39 184.44 2814.54 184.44 Q2816.39 184.44 2818.2 183.953 Q2820.02 183.444 2821.83 182.449 L2821.83 186.384 Q2820.05 187.217 2818.13 187.634 Q2816.23 188.051 2814.07 188.051 Q2808.22 188.051 2804.77 184.37 Q2801.32 180.69 2801.32 174.44 Q2801.32 168.097 2804.79 164.463 Q2808.29 160.829 2814.35 160.829 Q2816.32 160.829 2818.2 161.245 Q2820.07 161.639 2821.83 162.449 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2847.89 162.449 L2847.89 166.43 Q2846.09 165.435 2844.26 164.949 Q2842.45 164.44 2840.6 164.44 Q2836.46 164.44 2834.17 167.078 Q2831.88 169.694 2831.88 174.44 Q2831.88 179.185 2834.17 181.824 Q2836.46 184.44 2840.6 184.44 Q2842.45 184.44 2844.26 183.953 Q2846.09 183.444 2847.89 182.449 L2847.89 186.384 Q2846.11 187.217 2844.19 187.634 Q2842.29 188.051 2840.14 188.051 Q2834.28 188.051 2830.83 184.37 Q2827.38 180.69 2827.38 174.44 Q2827.38 168.097 2830.86 164.463 Q2834.35 160.829 2840.42 160.829 Q2842.38 160.829 2844.26 161.245 Q2846.13 161.639 2847.89 162.449 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2877.48 173.352 L2877.48 175.435 L2857.89 175.435 Q2858.17 179.833 2860.53 182.148 Q2862.92 184.44 2867.15 184.44 Q2869.61 184.44 2871.9 183.838 Q2874.21 183.236 2876.48 182.032 L2876.48 186.06 Q2874.19 187.032 2871.78 187.541 Q2869.38 188.051 2866.9 188.051 Q2860.69 188.051 2857.06 184.44 Q2853.45 180.828 2853.45 174.671 Q2853.45 168.305 2856.88 164.579 Q2860.32 160.829 2866.16 160.829 Q2871.39 160.829 2874.42 164.208 Q2877.48 167.565 2877.48 173.352 M2873.22 172.102 Q2873.17 168.606 2871.25 166.523 Q2869.35 164.44 2866.2 164.44 Q2862.64 164.44 2860.49 166.453 Q2858.36 168.467 2858.03 172.125 L2873.22 172.102 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2901 162.217 L2901 166.245 Q2899.19 165.319 2897.25 164.856 Q2895.3 164.393 2893.22 164.393 Q2890.05 164.393 2888.45 165.366 Q2886.88 166.338 2886.88 168.282 Q2886.88 169.764 2888.01 170.62 Q2889.14 171.453 2892.57 172.217 L2894.03 172.541 Q2898.57 173.514 2900.46 175.296 Q2902.38 177.055 2902.38 180.227 Q2902.38 183.838 2899.51 185.944 Q2896.67 188.051 2891.67 188.051 Q2889.58 188.051 2887.32 187.634 Q2885.07 187.24 2882.57 186.43 L2882.57 182.032 Q2884.93 183.259 2887.22 183.884 Q2889.51 184.486 2891.76 184.486 Q2894.77 184.486 2896.39 183.467 Q2898.01 182.426 2898.01 180.551 Q2898.01 178.815 2896.83 177.889 Q2895.67 176.963 2891.71 176.106 L2890.23 175.759 Q2886.27 174.926 2884.51 173.213 Q2882.76 171.477 2882.76 168.467 Q2882.76 164.81 2885.35 162.819 Q2887.94 160.829 2892.71 160.829 Q2895.07 160.829 2897.15 161.176 Q2899.24 161.523 2901 162.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2925.69 162.217 L2925.69 166.245 Q2923.89 165.319 2921.94 164.856 Q2920 164.393 2917.92 164.393 Q2914.75 164.393 2913.15 165.366 Q2911.57 166.338 2911.57 168.282 Q2911.57 169.764 2912.71 170.62 Q2913.84 171.453 2917.27 172.217 L2918.73 172.541 Q2923.26 173.514 2925.16 175.296 Q2927.08 177.055 2927.08 180.227 Q2927.08 183.838 2924.21 185.944 Q2921.37 188.051 2916.37 188.051 Q2914.28 188.051 2912.01 187.634 Q2909.77 187.24 2907.27 186.43 L2907.27 182.032 Q2909.63 183.259 2911.92 183.884 Q2914.21 184.486 2916.46 184.486 Q2919.47 184.486 2921.09 183.467 Q2922.71 182.426 2922.71 180.551 Q2922.71 178.815 2921.53 177.889 Q2920.37 176.963 2916.41 176.106 L2914.93 175.759 Q2910.97 174.926 2909.21 173.213 Q2907.45 171.477 2907.45 168.467 Q2907.45 164.81 2910.05 162.819 Q2912.64 160.829 2917.41 160.829 Q2919.77 160.829 2921.85 161.176 Q2923.94 161.523 2925.69 162.217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2946.99 151.361 L2946.99 154.903 L2942.92 154.903 Q2940.63 154.903 2939.72 155.829 Q2938.84 156.754 2938.84 159.162 L2938.84 161.454 L2945.86 161.454 L2945.86 164.764 L2938.84 164.764 L2938.84 187.379 L2934.56 187.379 L2934.56 164.764 L2930.49 164.764 L2930.49 161.454 L2934.56 161.454 L2934.56 159.648 Q2934.56 155.319 2936.57 153.352 Q2938.59 151.361 2942.96 151.361 L2946.99 151.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2950.12 177.148 L2950.12 161.454 L2954.37 161.454 L2954.37 176.986 Q2954.37 180.666 2955.81 182.518 Q2957.25 184.347 2960.12 184.347 Q2963.56 184.347 2965.56 182.148 Q2967.57 179.949 2967.57 176.153 L2967.57 161.454 L2971.83 161.454 L2971.83 187.379 L2967.57 187.379 L2967.57 183.398 Q2966.02 185.759 2963.96 186.916 Q2961.92 188.051 2959.21 188.051 Q2954.75 188.051 2952.43 185.273 Q2950.12 182.495 2950.12 177.148 M2960.83 160.829 L2960.83 160.829 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2980.6 151.361 L2984.86 151.361 L2984.86 187.379 L2980.6 187.379 L2980.6 151.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip150)\" cx=\"2559.81\" cy=\"221.939\" r=\"23.04\" fill=\"#ff0000\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.84\"/>\n", "<path clip-path=\"url(#clip150)\" d=\"M2706.32 214.057 L2706.32 218.085 Q2704.52 217.159 2702.57 216.696 Q2700.63 216.233 2698.54 216.233 Q2695.37 216.233 2693.77 217.206 Q2692.2 218.178 2692.2 220.122 Q2692.2 221.604 2693.33 222.46 Q2694.47 223.293 2697.89 224.057 L2699.35 224.381 Q2703.89 225.354 2705.79 227.136 Q2707.71 228.895 2707.71 232.067 Q2707.71 235.678 2704.84 237.784 Q2701.99 239.891 2696.99 239.891 Q2694.91 239.891 2692.64 239.474 Q2690.39 239.08 2687.89 238.27 L2687.89 233.872 Q2690.26 235.099 2692.55 235.724 Q2694.84 236.326 2697.08 236.326 Q2700.09 236.326 2701.71 235.307 Q2703.33 234.266 2703.33 232.391 Q2703.33 230.655 2702.15 229.729 Q2701 228.803 2697.04 227.946 L2695.56 227.599 Q2691.6 226.766 2689.84 225.053 Q2688.08 223.317 2688.08 220.307 Q2688.08 216.65 2690.67 214.659 Q2693.27 212.669 2698.03 212.669 Q2700.39 212.669 2702.48 213.016 Q2704.56 213.363 2706.32 214.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2714.05 228.988 L2714.05 213.294 L2718.31 213.294 L2718.31 228.826 Q2718.31 232.506 2719.75 234.358 Q2721.18 236.187 2724.05 236.187 Q2727.5 236.187 2729.49 233.988 Q2731.51 231.789 2731.51 227.993 L2731.51 213.294 L2735.77 213.294 L2735.77 239.219 L2731.51 239.219 L2731.51 235.238 Q2729.95 237.599 2727.89 238.756 Q2725.86 239.891 2723.15 239.891 Q2718.68 239.891 2716.37 237.113 Q2714.05 234.335 2714.05 228.988 M2724.77 212.669 L2724.77 212.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2763.2 214.289 L2763.2 218.27 Q2761.39 217.275 2759.56 216.789 Q2757.76 216.28 2755.9 216.28 Q2751.76 216.28 2749.47 218.918 Q2747.18 221.534 2747.18 226.28 Q2747.18 231.025 2749.47 233.664 Q2751.76 236.28 2755.9 236.28 Q2757.76 236.28 2759.56 235.793 Q2761.39 235.284 2763.2 234.289 L2763.2 238.224 Q2761.41 239.057 2759.49 239.474 Q2757.59 239.891 2755.44 239.891 Q2749.58 239.891 2746.14 236.21 Q2742.69 232.53 2742.69 226.28 Q2742.69 219.937 2746.16 216.303 Q2749.65 212.669 2755.72 212.669 Q2757.69 212.669 2759.56 213.085 Q2761.44 213.479 2763.2 214.289 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2789.26 214.289 L2789.26 218.27 Q2787.45 217.275 2785.63 216.789 Q2783.82 216.28 2781.97 216.28 Q2777.83 216.28 2775.53 218.918 Q2773.24 221.534 2773.24 226.28 Q2773.24 231.025 2775.53 233.664 Q2777.83 236.28 2781.97 236.28 Q2783.82 236.28 2785.63 235.793 Q2787.45 235.284 2789.26 234.289 L2789.26 238.224 Q2787.48 239.057 2785.56 239.474 Q2783.66 239.891 2781.51 239.891 Q2775.65 239.891 2772.2 236.21 Q2768.75 232.53 2768.75 226.28 Q2768.75 219.937 2772.22 216.303 Q2775.72 212.669 2781.78 212.669 Q2783.75 212.669 2785.63 213.085 Q2787.5 213.479 2789.26 214.289 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2818.84 225.192 L2818.84 227.275 L2799.26 227.275 Q2799.54 231.673 2801.9 233.988 Q2804.28 236.28 2808.52 236.28 Q2810.97 236.28 2813.26 235.678 Q2815.58 235.076 2817.85 233.872 L2817.85 237.9 Q2815.56 238.872 2813.15 239.381 Q2810.74 239.891 2808.26 239.891 Q2802.06 239.891 2798.43 236.28 Q2794.82 232.668 2794.82 226.511 Q2794.82 220.145 2798.24 216.419 Q2801.69 212.669 2807.52 212.669 Q2812.76 212.669 2815.79 216.048 Q2818.84 219.405 2818.84 225.192 M2814.58 223.942 Q2814.54 220.446 2812.62 218.363 Q2810.72 216.28 2807.57 216.28 Q2804.01 216.28 2801.85 218.293 Q2799.72 220.307 2799.4 223.965 L2814.58 223.942 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2842.36 214.057 L2842.36 218.085 Q2840.56 217.159 2838.61 216.696 Q2836.67 216.233 2834.58 216.233 Q2831.41 216.233 2829.82 217.206 Q2828.24 218.178 2828.24 220.122 Q2828.24 221.604 2829.38 222.46 Q2830.51 223.293 2833.94 224.057 L2835.39 224.381 Q2839.93 225.354 2841.83 227.136 Q2843.75 228.895 2843.75 232.067 Q2843.75 235.678 2840.88 237.784 Q2838.03 239.891 2833.03 239.891 Q2830.95 239.891 2828.68 239.474 Q2826.44 239.08 2823.94 238.27 L2823.94 233.872 Q2826.3 235.099 2828.59 235.724 Q2830.88 236.326 2833.13 236.326 Q2836.13 236.326 2837.76 235.307 Q2839.38 234.266 2839.38 232.391 Q2839.38 230.655 2838.2 229.729 Q2837.04 228.803 2833.08 227.946 L2831.6 227.599 Q2827.64 226.766 2825.88 225.053 Q2824.12 223.317 2824.12 220.307 Q2824.12 216.65 2826.71 214.659 Q2829.31 212.669 2834.07 212.669 Q2836.44 212.669 2838.52 213.016 Q2840.6 213.363 2842.36 214.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2867.06 214.057 L2867.06 218.085 Q2865.26 217.159 2863.31 216.696 Q2861.37 216.233 2859.28 216.233 Q2856.11 216.233 2854.51 217.206 Q2852.94 218.178 2852.94 220.122 Q2852.94 221.604 2854.07 222.46 Q2855.21 223.293 2858.63 224.057 L2860.09 224.381 Q2864.63 225.354 2866.53 227.136 Q2868.45 228.895 2868.45 232.067 Q2868.45 235.678 2865.58 237.784 Q2862.73 239.891 2857.73 239.891 Q2855.65 239.891 2853.38 239.474 Q2851.13 239.08 2848.63 238.27 L2848.63 233.872 Q2851 235.099 2853.29 235.724 Q2855.58 236.326 2857.82 236.326 Q2860.83 236.326 2862.45 235.307 Q2864.07 234.266 2864.07 232.391 Q2864.07 230.655 2862.89 229.729 Q2861.74 228.803 2857.78 227.946 L2856.3 227.599 Q2852.34 226.766 2850.58 225.053 Q2848.82 223.317 2848.82 220.307 Q2848.82 216.65 2851.41 214.659 Q2854.01 212.669 2858.77 212.669 Q2861.13 212.669 2863.22 213.016 Q2865.3 213.363 2867.06 214.057 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2888.36 203.201 L2888.36 206.743 L2884.28 206.743 Q2881.99 206.743 2881.09 207.669 Q2880.21 208.594 2880.21 211.002 L2880.21 213.294 L2887.22 213.294 L2887.22 216.604 L2880.21 216.604 L2880.21 239.219 L2875.93 239.219 L2875.93 216.604 L2871.85 216.604 L2871.85 213.294 L2875.93 213.294 L2875.93 211.488 Q2875.93 207.159 2877.94 205.192 Q2879.95 203.201 2884.33 203.201 L2888.36 203.201 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2891.48 228.988 L2891.48 213.294 L2895.74 213.294 L2895.74 228.826 Q2895.74 232.506 2897.18 234.358 Q2898.61 236.187 2901.48 236.187 Q2904.93 236.187 2906.92 233.988 Q2908.94 231.789 2908.94 227.993 L2908.94 213.294 L2913.19 213.294 L2913.19 239.219 L2908.94 239.219 L2908.94 235.238 Q2907.38 237.599 2905.32 238.756 Q2903.29 239.891 2900.58 239.891 Q2896.11 239.891 2893.8 237.113 Q2891.48 234.335 2891.48 228.988 M2902.2 212.669 L2902.2 212.669 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip150)\" d=\"M2921.97 203.201 L2926.23 203.201 L2926.23 239.219 L2921.97 239.219 L2921.97 203.201 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scatter(features_train[labels_train .== 0, 1], features_train[labels_train .== 0, 2], color=\"blue\", label=\"unsuccessful\", xlabel=\"feature1\", ylabel=\"feature2\")\n", "scatter!(features_train[labels_train .== 1, 1], features_train[labels_train .== 1, 2], color=\"red\", label=\"successful\", size=(800,300))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Mmhh, it doesn't look like the samples can easily be separated. This will be challenging." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "---\n", "\n", "#### Exercise\n", "\n", "The plot above shows features 1 and 2. Have a look at the other combinations of features.\n", "\n", "---" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Model specification\n", "\n", "We have features $X$, labels $Y$ and parameters $\\theta$. Same as with regression, we are looking for a posterior distribution of the classification parameters:\n", "\n", "$$\\underbrace{p(\\theta \\mid Y, X)}_{\\text{posterior}} \\propto\\ \\underbrace{p(Y \\mid X, \\theta)}_{\\text{likelihood}} \\cdot \\underbrace{p(\\theta)}_{\\text{prior}}$$\n", "\n", "The likelihood in this case will be of a probit form:\n", "\n", "$$ p(Y \\mid X, \\theta) = \\prod_{i=1}^{N} \\ \\mathcal{B} \\big(Y_i \\mid \\Phi(f_\\theta(X_i) \\big) \\, .$$ \n", "\n", "As you can see it is a Bernoulli distribution with a cumulative normal distribution as transfer (a.k.a. _link_) function: \n", "\n", "$$ \\Phi(x) = \\frac{1}{\\sqrt{2\\pi}} \\int_{-\\infty}^{x} \\exp \\left(-\\frac{t^2}{2} \\right) \\mathrm{d}t \\, .$$ \n", "\n", "The transfer function maps the input ($f_\\theta(X_i)$) to the interval $(0,1)$ so that the result acts as a rate parameter to the Bernoulli. Check Bert's lecture on discriminative classification for more information.\n", "\n", "We will use a Gaussian prior distribution for the classification parameters $\\theta$:\n", "\n", "$$ p(\\theta) = \\mathcal{N}(\\theta \\mid \\mu_\\theta, \\Sigma_\\theta) \\, .$$\n", "\n", "You have probably noticed that this combination of likelihood and prior is not part of the family of conjugate pairings. As such, we don't have an exact posterior. The Laplace approximation is one procedure but under the hood, our toolbox is actually performing a different procedure for obtaining the posterior parameters: [moment matching](https://en.wikipedia.org/wiki/Method_of_moments_(statistics)). The cumulative normal distribution allows for integrating the product of prior and likelihood by hand, with respect to the first (mean) and second (variance) moments. The toolbox is essentially performing a lookup for the analytically derived formula, which computationally cheaper than performing the iterative steps necessary for the Laplace approximation." ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "# Parameters for priors\n", "μ_θ = zeros(num_features+1,)\n", "Σ_θ = diagm(ones(num_features+1));" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [], "source": [ "@model function linear_classification(μ_θ, Σ_θ; N=1)\n", " \"Bayesian classification model\"\n", " \n", " # Allocate data variables\n", " X = datavar(Vector{Float64}, N)\n", " y = datavar(Int64, N)\n", " \n", " # Weight prior distribution\n", " θ ~ MvNormalMeanCovariance(μ_θ, Σ_θ)\n", " \n", " for i = 1:N\n", " \n", " # Binary likelihood\n", " y[i] ~ Probit(dot(θ, X[i]))\n", " \n", " end\n", " return y, X, θ\n", "end" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Inference results:\n", " Posteriors | available for (θ)\n" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "results = inference(\n", " model = linear_classification(μ_θ, Σ_θ, N=num_train),\n", " data = (y = labels_train, X = [[features_train[i,:]; 1.0] for i in 1:num_train]),\n", " returnvars = (θ = KeepLast()),\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Unfortunately, we cannot visualize a distribution of more than 2 dimensions." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Predict test data\n", "\n", "The bank has some test data for you as well. " ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "# Read CSV file\n", "df = DataFrame(CSV.File(\"../datasets/credit_test.csv\"))\n", "\n", "# Split dataframe into features and labels\n", "features_test = Matrix(df[:,1:7])\n", "labels_test = Vector(df[:,8])\n", "\n", "# Number of test samples\n", "num_test = size(features_test,1);" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "You can classify test samples by taking the MAP for the classification parameters, computing the linear function $f_\\theta$ and rounding the result to obtain the most probable label." ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Test Accuracy = 49.0%\n" ] } ], "source": [ "# Extract MAP estimate of classification parameters\n", "θ_MAP = mode(results.posteriors[:θ])\n", "\n", "# Compute dot product between parameters and test data\n", "fθ_pred = [features_test ones(num_test,)] * θ_MAP\n", "\n", "# Predict labels through probit\n", "labels_pred = round.(normcdf.(fθ_pred));\n", "\n", "# Compute classification accuracy of test data\n", "accuracy_test = mean(labels_test .== labels_pred)\n", "\n", "# Report result\n", "println(\"Test Accuracy = \"*string(accuracy_test*100)*\"%\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Mmmhh... If you were a bank, you might decide that you don't want to automatically assign credit to your customers." ] } ], "metadata": { "@webio": { "lastCommId": null, "lastKernelId": null }, "anaconda-cloud": {}, "kernelspec": { "display_name": "Julia 1.8.1", "language": "julia", "name": "julia-1.8" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.8.1" } }, "nbformat": 4, "nbformat_minor": 4 }