diff --git a/Furuta/Introduction.ipynb b/Furuta/Introduction.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..253b7e10babd2f556a657ea4d19dd8f5832daf07
--- /dev/null
+++ b/Furuta/Introduction.ipynb
@@ -0,0 +1,248 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Welcome to Jupyter"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "This course will use Jupyter as the software environment for the Automatic Control part of the course.\n",
+    "\n",
+    "Jupyter is a web-based interface, with a file browser (to the left), a main area where this notebook is now displayed, and a few other bits that you will see later.\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "One useful feature of Jupyter Notebooks is that they allow mixing text (with fancy formatting) and executable code (organized in \"cells\"), and that the results of executing code gets printed.\n",
+    "\n",
+    "If you click in the below code cell, containing the code `print (\"I can see the output!\")`, and press shift+enter, then you should indeed see the output."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "I can see the output.\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(\"I can see the output.\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "You should now see the text \"I can see the output.\", and the cell should have been give a number which is shown to the left of the cell, telling us that it was the first cell to be executed. If you execute the cell again, it should get the number 2 instead.\n",
+    "\n",
+    "This notebook uses python as the programming language to execute, but jupyter can handle many other programming languages as well. \n",
+    "\n",
+    "Let's define a function in one cell and use it in the next."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "def f(x):\n",
+    "    return x*x - x + 0.18"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "0.42"
+      ]
+     },
+     "execution_count": 3,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "f(1.2)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "There are more ways to execute the cells in a notebook than pressing shift+enter, including the buttons just above the notebook, and via the menus at the top, but we will not focus on them now."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "At the bottom left of the screen, there should now be a text saying that we are using a Python 3 kernel, and that the kernel is currently *Idle*. When we run a longer computation, we will see that change to *Busy* instead. There is also a place at the top right where it says that the kernel is Python 3, with a nearby circle. When a computation is running, the circle will be filled.\n",
+    "\n",
+    "Let's try something that keeps the kernel \"busy\" for 10 seconds..."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import time\n",
+    "time.sleep(10)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We will use Julia as our programming language of choice, but before we can do that, we need to install a Julia kernel in your home directory that jupyter can use. That can be done with the command below, so do run it, and wait until it the kernel is no longer busy.\n",
+    "\n",
+    "(It can take quite a bit of time, depending on the performance of the network-mounted home directory.)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "  Resolving package versions...\n",
+      "  Installed ZeroMQ_jll ────── v4.3.2+4\n",
+      "  Installed VersionParsing ── v1.2.0\n",
+      "  Installed SoftGlobalScope ─ v1.1.0\n",
+      "  Installed Conda ─────────── v1.4.1\n",
+      "  Installed IJulia ────────── v1.21.2\n",
+      "  Installed ZMQ ───────────── v1.2.1\n",
+      "Downloading artifact: ZeroMQ\n",
+      "######################################################################## 100.0%     ##O#-#                                                                                                           9.9%                        20.2%\n",
+      "\u001b[1A\u001b[2K\u001b[?25h   Updating `~/.julia/environments/v1.4/Project.toml`\n",
+      "  [7073ff75] + IJulia v1.21.2\n",
+      "   Updating `~/.julia/environments/v1.4/Manifest.toml`\n",
+      "  [8f4d0f93] + Conda v1.4.1\n",
+      "  [7073ff75] + IJulia v1.21.2\n",
+      "  [682c06a0] + JSON v0.21.0\n",
+      "  [739be429] + MbedTLS v1.0.2\n",
+      "  [c8ffd9c3] + MbedTLS_jll v2.16.6+1\n",
+      "  [69de0a69] + Parsers v1.0.7\n",
+      "  [b85f4697] + SoftGlobalScope v1.1.0\n",
+      "  [81def892] + VersionParsing v1.2.0\n",
+      "  [c2297ded] + ZMQ v1.2.1\n",
+      "  [8f1865be] + ZeroMQ_jll v4.3.2+4\n",
+      "  [2a0f44e3] + Base64 \n",
+      "  [ade2ca70] + Dates \n",
+      "  [8ba89e20] + Distributed \n",
+      "  [7b1f6079] + FileWatching \n",
+      "  [b77e0a4c] + InteractiveUtils \n",
+      "  [76f85450] + LibGit2 \n",
+      "  [8f399da3] + Libdl \n",
+      "  [56ddb016] + Logging \n",
+      "  [d6f4376e] + Markdown \n",
+      "  [a63ad114] + Mmap \n",
+      "  [44cfe95a] + Pkg \n",
+      "  [de0858da] + Printf \n",
+      "  [3fa0cd96] + REPL \n",
+      "  [9a3f8284] + Random \n",
+      "  [ea8e919c] + SHA \n",
+      "  [9e88b42a] + Serialization \n",
+      "  [6462fe0b] + Sockets \n",
+      "  [8dfed614] + Test \n",
+      "  [cf7118a7] + UUIDs \n",
+      "  [4ec0a83e] + Unicode \n",
+      "   Building Conda ─→ `~/.julia/packages/Conda/3rPhK/deps/build.log`\n",
+      "   Building IJulia → `~/.julia/packages/IJulia/DrVMH/deps/build.log`\n",
+      "   Building Conda ─→ `~/.julia/packages/Conda/3rPhK/deps/build.log`\n",
+      "   Building IJulia → `~/.julia/packages/IJulia/DrVMH/deps/build.log`\n"
+     ]
+    }
+   ],
+   "source": [
+    "!julia --eval \"import Pkg; Pkg.add(\\\"IJulia\\\"); Pkg.build(\\\"IJulia\\\"); using IJulia\""
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "If the indicators at the bottom left and top right show that the kernel is idle, and if the cell has been given a number, then the julia kernel should have been installed and be ready to use. Now we need to restart the server, and then Julia should be available to us.\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "To restart, you need to do 3 things.\n",
+    "\n",
+    "  1. Select the menu item \"File\" --> \"Hub Control Panel\"\n",
+    "  2. Stop the server\n",
+    "  3. Start the server again\n",
+    "  \n",
+    "Then you should get back to this view of the files, and continue with the notebook named Julia.ipynb."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Remember to stop your server when you are done."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "If we have more than one person trying to access the lab processes at any one time, the lab computers only allow a single user to have a jupyterlab server running at a time. Therefore, when you stop working on the lab, you should stop your server, the same way you just did, and then, when you want to resume your work, your server needs to be restarted again."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.8.5"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Furuta/Julia.ipynb b/Furuta/Julia.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..05dc3b688c7b722a0628a489162c2f82665641d8
--- /dev/null
+++ b/Furuta/Julia.ipynb
@@ -0,0 +1,413 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Welcome to Julia"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Now, let's turn our attention to Julia. \n",
+    "\n",
+    "Julia is a programming language, intended to solve problems you may have seen solved using matlab or python in other contexts. Its syntax is a bit different from matlab/python, but for many problems whose solution uses matrices, vectors, function and loops to compute the answer, then then generates some plots of the data, the Julia solution is often fairly similar to the matlab/python solutions."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We show some simple examples of julia code below, and a \"[cheatsheet](https://cheatsheets.quantecon.org/julia-cheatsheet.html)\" summarizing Julia syntax, or a [comparison](https://cheatsheets.quantecon.org/index.html) of operations between matlab, python and Julia will probably be helpful.\n",
+    "\n",
+    "If you want to learn more, the internet contains a lot of resources, and [JuliaAcademy](https://github.com/JuliaAcademy) in particular has several good tutorials.\n",
+    "\n",
+    "You could look at some parts of their [Introduction to Julia](https://github.com/JuliaAcademy/JuliaTutorials/tree/master/introductory-tutorials/intro-to-julia/short-version) seris, such as [Getting to know Julia](https://github.com/JuliaAcademy/JuliaTutorials/blob/master/introductory-tutorials/intro-to-julia/short-version/01.Getting_to_know_Julia.ipynb) and [Introduction to Plotting](https://github.com/JuliaAcademy/JuliaTutorials/blob/master/introductory-tutorials/intro-to-julia/short-version/04.Intro_to_plotting.ipynb).\n",
+    "\n",
+    "You can download the files directly, or clone their repository, and you should then be able to navigate your way to those files using the file browser to the left of this notebook area. If you download the files to your computer, you can use the upload button above the file selection area to upload it to your home directory here in jupyterlab, or you can look at the \"launcher\" and open a terminal in which you can use git, but there are of course a large number of other mehthods you could use."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Now, try the following code snippets, and make sure you understand what is happening. "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "g (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 1,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function f(x)\n",
+    "    return sin(x)\n",
+    "end\n",
+    "\n",
+    "g(x) = sin(x)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "0.9092974268256817"
+      ]
+     },
+     "execution_count": 2,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "f(2)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "0.9092974268256817"
+      ]
+     },
+     "execution_count": 3,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "g(2)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using Plots"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip980\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip980)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip981\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip980)\" d=\"\n",
+       "M162.455 1486.45 L2352.76 1486.45 L2352.76 47.2441 L162.455 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip982\">\n",
+       "    <rect x=\"162\" y=\"47\" width=\"2191\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  224.444,1486.45 224.444,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  741.025,1486.45 741.025,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1257.61,1486.45 1257.61,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1774.19,1486.45 1774.19,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2290.77,1486.45 2290.77,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  162.455,1446.13 2352.76,1446.13 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  162.455,1106.54 2352.76,1106.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  162.455,766.951 2352.76,766.951 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  162.455,427.359 2352.76,427.359 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip982)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  162.455,87.7673 2352.76,87.7673 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,1486.45 162.455,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  224.444,1486.45 224.444,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  741.025,1486.45 741.025,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1257.61,1486.45 1257.61,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1774.19,1486.45 1774.19,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2290.77,1486.45 2290.77,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,1446.13 188.738,1446.13 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,1106.54 188.738,1106.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,766.951 188.738,766.951 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,427.359 188.738,427.359 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  162.455,87.7673 188.738,87.7673 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip980)\" d=\"M 0 0 M205.961 1508.44 Q202.35 1508.44 200.521 1512 Q198.715 1515.55 198.715 1522.67 Q198.715 1529.78 200.521 1533.35 Q202.35 1536.89 205.961 1536.89 Q209.595 1536.89 211.4 1533.35 Q213.229 1529.78 213.229 1522.67 Q213.229 1515.55 211.4 1512 Q209.595 1508.44 205.961 1508.44 M205.961 1504.73 Q211.771 1504.73 214.826 1509.34 Q217.905 1513.92 217.905 1522.67 Q217.905 1531.4 214.826 1536.01 Q211.771 1540.59 205.961 1540.59 Q200.15 1540.59 197.072 1536.01 Q194.016 1531.4 194.016 1522.67 Q194.016 1513.92 197.072 1509.34 Q200.15 1504.73 205.961 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M222.974 1534.04 L227.859 1534.04 L227.859 1539.92 L222.974 1539.92 L222.974 1534.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M242.928 1508.44 Q239.317 1508.44 237.488 1512 Q235.683 1515.55 235.683 1522.67 Q235.683 1529.78 237.488 1533.35 Q239.317 1536.89 242.928 1536.89 Q246.562 1536.89 248.368 1533.35 Q250.197 1529.78 250.197 1522.67 Q250.197 1515.55 248.368 1512 Q246.562 1508.44 242.928 1508.44 M242.928 1504.73 Q248.738 1504.73 251.794 1509.34 Q254.872 1513.92 254.872 1522.67 Q254.872 1531.4 251.794 1536.01 Q248.738 1540.59 242.928 1540.59 Q237.118 1540.59 234.039 1536.01 Q230.984 1531.4 230.984 1522.67 Q230.984 1513.92 234.039 1509.34 Q237.118 1504.73 242.928 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M717.692 1535.98 L734.011 1535.98 L734.011 1539.92 L712.067 1539.92 L712.067 1535.98 Q714.729 1533.23 719.312 1528.6 Q723.918 1523.95 725.099 1522.61 Q727.344 1520.08 728.224 1518.35 Q729.127 1516.59 729.127 1514.9 Q729.127 1512.14 727.182 1510.41 Q725.261 1508.67 722.159 1508.67 Q719.96 1508.67 717.506 1509.43 Q715.076 1510.2 712.298 1511.75 L712.298 1507.03 Q715.122 1505.89 717.576 1505.31 Q720.03 1504.73 722.067 1504.73 Q727.437 1504.73 730.631 1507.42 Q733.826 1510.11 733.826 1514.6 Q733.826 1516.73 733.016 1518.65 Q732.229 1520.54 730.122 1523.14 Q729.543 1523.81 726.442 1527.03 Q723.34 1530.22 717.692 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M739.08 1534.04 L743.965 1534.04 L743.965 1539.92 L739.08 1539.92 L739.08 1534.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M749.08 1505.36 L767.437 1505.36 L767.437 1509.3 L753.363 1509.3 L753.363 1517.77 Q754.381 1517.42 755.4 1517.26 Q756.418 1517.07 757.437 1517.07 Q763.224 1517.07 766.603 1520.24 Q769.983 1523.42 769.983 1528.83 Q769.983 1534.41 766.511 1537.51 Q763.039 1540.59 756.719 1540.59 Q754.543 1540.59 752.275 1540.22 Q750.029 1539.85 747.622 1539.11 L747.622 1534.41 Q749.705 1535.54 751.928 1536.1 Q754.15 1536.66 756.627 1536.66 Q760.631 1536.66 762.969 1534.55 Q765.307 1532.44 765.307 1528.83 Q765.307 1525.22 762.969 1523.11 Q760.631 1521.01 756.627 1521.01 Q754.752 1521.01 752.877 1521.42 Q751.025 1521.84 749.08 1522.72 L749.08 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1229.4 1505.36 L1247.76 1505.36 L1247.76 1509.3 L1233.68 1509.3 L1233.68 1517.77 Q1234.7 1517.42 1235.72 1517.26 Q1236.74 1517.07 1237.76 1517.07 Q1243.54 1517.07 1246.92 1520.24 Q1250.3 1523.42 1250.3 1528.83 Q1250.3 1534.41 1246.83 1537.51 Q1243.36 1540.59 1237.04 1540.59 Q1234.86 1540.59 1232.59 1540.22 Q1230.35 1539.85 1227.94 1539.11 L1227.94 1534.41 Q1230.02 1535.54 1232.25 1536.1 Q1234.47 1536.66 1236.95 1536.66 Q1240.95 1536.66 1243.29 1534.55 Q1245.63 1532.44 1245.63 1528.83 Q1245.63 1525.22 1243.29 1523.11 Q1240.95 1521.01 1236.95 1521.01 Q1235.07 1521.01 1233.2 1521.42 Q1231.34 1521.84 1229.4 1522.72 L1229.4 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1255.37 1534.04 L1260.26 1534.04 L1260.26 1539.92 L1255.37 1539.92 L1255.37 1534.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1275.33 1508.44 Q1271.71 1508.44 1269.89 1512 Q1268.08 1515.55 1268.08 1522.67 Q1268.08 1529.78 1269.89 1533.35 Q1271.71 1536.89 1275.33 1536.89 Q1278.96 1536.89 1280.76 1533.35 Q1282.59 1529.78 1282.59 1522.67 Q1282.59 1515.55 1280.76 1512 Q1278.96 1508.44 1275.33 1508.44 M1275.33 1504.73 Q1281.14 1504.73 1284.19 1509.34 Q1287.27 1513.92 1287.27 1522.67 Q1287.27 1531.4 1284.19 1536.01 Q1281.14 1540.59 1275.33 1540.59 Q1269.51 1540.59 1266.44 1536.01 Q1263.38 1531.4 1263.38 1522.67 Q1263.38 1513.92 1266.44 1509.34 Q1269.51 1504.73 1275.33 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1745.09 1505.36 L1767.31 1505.36 L1767.31 1507.35 L1754.76 1539.92 L1749.88 1539.92 L1761.69 1509.3 L1745.09 1509.3 L1745.09 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1772.38 1534.04 L1777.26 1534.04 L1777.26 1539.92 L1772.38 1539.92 L1772.38 1534.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M1782.38 1505.36 L1800.74 1505.36 L1800.74 1509.3 L1786.66 1509.3 L1786.66 1517.77 Q1787.68 1517.42 1788.7 1517.26 Q1789.72 1517.07 1790.74 1517.07 Q1796.52 1517.07 1799.9 1520.24 Q1803.28 1523.42 1803.28 1528.83 Q1803.28 1534.41 1799.81 1537.51 Q1796.34 1540.59 1790.02 1540.59 Q1787.84 1540.59 1785.57 1540.22 Q1783.33 1539.85 1780.92 1539.11 L1780.92 1534.41 Q1783.01 1535.54 1785.23 1536.1 Q1787.45 1536.66 1789.93 1536.66 Q1793.93 1536.66 1796.27 1534.55 Q1798.61 1532.44 1798.61 1528.83 Q1798.61 1525.22 1796.27 1523.11 Q1793.93 1521.01 1789.93 1521.01 Q1788.05 1521.01 1786.18 1521.42 Q1784.32 1521.84 1782.38 1522.72 L1782.38 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2249.16 1535.98 L2256.8 1535.98 L2256.8 1509.62 L2248.49 1511.29 L2248.49 1507.03 L2256.75 1505.36 L2261.43 1505.36 L2261.43 1535.98 L2269.06 1535.98 L2269.06 1539.92 L2249.16 1539.92 L2249.16 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2284.13 1508.44 Q2280.52 1508.44 2278.69 1512 Q2276.89 1515.55 2276.89 1522.67 Q2276.89 1529.78 2278.69 1533.35 Q2280.52 1536.89 2284.13 1536.89 Q2287.77 1536.89 2289.57 1533.35 Q2291.4 1529.78 2291.4 1522.67 Q2291.4 1515.55 2289.57 1512 Q2287.77 1508.44 2284.13 1508.44 M2284.13 1504.73 Q2289.94 1504.73 2293 1509.34 Q2296.08 1513.92 2296.08 1522.67 Q2296.08 1531.4 2293 1536.01 Q2289.94 1540.59 2284.13 1540.59 Q2278.32 1540.59 2275.25 1536.01 Q2272.19 1531.4 2272.19 1522.67 Q2272.19 1513.92 2275.25 1509.34 Q2278.32 1504.73 2284.13 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2301.15 1534.04 L2306.03 1534.04 L2306.03 1539.92 L2301.15 1539.92 L2301.15 1534.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2321.1 1508.44 Q2317.49 1508.44 2315.66 1512 Q2313.86 1515.55 2313.86 1522.67 Q2313.86 1529.78 2315.66 1533.35 Q2317.49 1536.89 2321.1 1536.89 Q2324.74 1536.89 2326.54 1533.35 Q2328.37 1529.78 2328.37 1522.67 Q2328.37 1515.55 2326.54 1512 Q2324.74 1508.44 2321.1 1508.44 M2321.1 1504.73 Q2326.91 1504.73 2329.97 1509.34 Q2333.05 1513.92 2333.05 1522.67 Q2333.05 1531.4 2329.97 1536.01 Q2326.91 1540.59 2321.1 1540.59 Q2315.29 1540.59 2312.21 1536.01 Q2309.16 1531.4 2309.16 1522.67 Q2309.16 1513.92 2312.21 1509.34 Q2315.29 1504.73 2321.1 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M63.2236 1448.53 L75.7004 1448.53 L75.7004 1452.33 L63.2236 1452.33 L63.2236 1448.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M81.58 1459.48 L89.2188 1459.48 L89.2188 1433.11 L80.9087 1434.78 L80.9087 1430.52 L89.1725 1428.85 L93.8484 1428.85 L93.8484 1459.48 L101.487 1459.48 L101.487 1463.41 L81.58 1463.41 L81.58 1459.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M106.557 1457.53 L111.441 1457.53 L111.441 1463.41 L106.557 1463.41 L106.557 1457.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M126.51 1431.93 Q122.899 1431.93 121.071 1435.5 Q119.265 1439.04 119.265 1446.17 Q119.265 1453.27 121.071 1456.84 Q122.899 1460.38 126.51 1460.38 Q130.145 1460.38 131.95 1456.84 Q133.779 1453.27 133.779 1446.17 Q133.779 1439.04 131.95 1435.5 Q130.145 1431.93 126.51 1431.93 M126.51 1428.23 Q132.32 1428.23 135.376 1432.84 Q138.455 1437.42 138.455 1446.17 Q138.455 1454.9 135.376 1459.5 Q132.32 1464.08 126.51 1464.08 Q120.7 1464.08 117.621 1459.5 Q114.566 1454.9 114.566 1446.17 Q114.566 1437.42 117.621 1432.84 Q120.7 1428.23 126.51 1428.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M62.9921 1108.94 L75.4689 1108.94 L75.4689 1112.73 L62.9921 1112.73 L62.9921 1108.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M90.5383 1092.34 Q86.9272 1092.34 85.0985 1095.91 Q83.2929 1099.45 83.2929 1106.58 Q83.2929 1113.68 85.0985 1117.25 Q86.9272 1120.79 90.5383 1120.79 Q94.1725 1120.79 95.9781 1117.25 Q97.8068 1113.68 97.8068 1106.58 Q97.8068 1099.45 95.9781 1095.91 Q94.1725 1092.34 90.5383 1092.34 M90.5383 1088.64 Q96.3484 1088.64 99.404 1093.24 Q102.483 1097.83 102.483 1106.58 Q102.483 1115.3 99.404 1119.91 Q96.3484 1124.49 90.5383 1124.49 Q84.7281 1124.49 81.6494 1119.91 Q78.5939 1115.3 78.5939 1106.58 Q78.5939 1097.83 81.6494 1093.24 Q84.7281 1088.64 90.5383 1088.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M107.552 1117.94 L112.436 1117.94 L112.436 1123.82 L107.552 1123.82 L107.552 1117.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M117.552 1089.26 L135.908 1089.26 L135.908 1093.2 L121.834 1093.2 L121.834 1101.67 Q122.853 1101.32 123.871 1101.16 Q124.89 1100.97 125.908 1100.97 Q131.695 1100.97 135.075 1104.15 Q138.455 1107.32 138.455 1112.73 Q138.455 1118.31 134.982 1121.41 Q131.51 1124.49 125.191 1124.49 Q123.015 1124.49 120.746 1124.12 Q118.501 1123.75 116.094 1123.01 L116.094 1118.31 Q118.177 1119.45 120.399 1120 Q122.621 1120.56 125.098 1120.56 Q129.103 1120.56 131.441 1118.45 Q133.779 1116.35 133.779 1112.73 Q133.779 1109.12 131.441 1107.02 Q129.103 1104.91 125.098 1104.91 Q123.223 1104.91 121.348 1105.33 Q119.496 1105.74 117.552 1106.62 L117.552 1089.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M89.5429 752.749 Q85.9318 752.749 84.1031 756.314 Q82.2976 759.856 82.2976 766.985 Q82.2976 774.092 84.1031 777.656 Q85.9318 781.198 89.5429 781.198 Q93.1771 781.198 94.9827 777.656 Q96.8114 774.092 96.8114 766.985 Q96.8114 759.856 94.9827 756.314 Q93.1771 752.749 89.5429 752.749 M89.5429 749.046 Q95.3531 749.046 98.4086 753.652 Q101.487 758.235 101.487 766.985 Q101.487 775.712 98.4086 780.318 Q95.3531 784.902 89.5429 784.902 Q83.7328 784.902 80.6541 780.318 Q77.5985 775.712 77.5985 766.985 Q77.5985 758.235 80.6541 753.652 Q83.7328 749.046 89.5429 749.046 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M106.557 778.351 L111.441 778.351 L111.441 784.231 L106.557 784.231 L106.557 778.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M126.51 752.749 Q122.899 752.749 121.071 756.314 Q119.265 759.856 119.265 766.985 Q119.265 774.092 121.071 777.656 Q122.899 781.198 126.51 781.198 Q130.145 781.198 131.95 777.656 Q133.779 774.092 133.779 766.985 Q133.779 759.856 131.95 756.314 Q130.145 752.749 126.51 752.749 M126.51 749.046 Q132.32 749.046 135.376 753.652 Q138.455 758.235 138.455 766.985 Q138.455 775.712 135.376 780.318 Q132.32 784.902 126.51 784.902 Q120.7 784.902 117.621 780.318 Q114.566 775.712 114.566 766.985 Q114.566 758.235 117.621 753.652 Q120.7 749.046 126.51 749.046 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M90.5383 413.158 Q86.9272 413.158 85.0985 416.722 Q83.2929 420.264 83.2929 427.394 Q83.2929 434.5 85.0985 438.065 Q86.9272 441.607 90.5383 441.607 Q94.1725 441.607 95.9781 438.065 Q97.8068 434.5 97.8068 427.394 Q97.8068 420.264 95.9781 416.722 Q94.1725 413.158 90.5383 413.158 M90.5383 409.454 Q96.3484 409.454 99.404 414.06 Q102.483 418.644 102.483 427.394 Q102.483 436.12 99.404 440.727 Q96.3484 445.31 90.5383 445.31 Q84.7281 445.31 81.6494 440.727 Q78.5939 436.12 78.5939 427.394 Q78.5939 418.644 81.6494 414.06 Q84.7281 409.454 90.5383 409.454 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M107.552 438.759 L112.436 438.759 L112.436 444.639 L107.552 444.639 L107.552 438.759 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M117.552 410.079 L135.908 410.079 L135.908 414.014 L121.834 414.014 L121.834 422.486 Q122.853 422.139 123.871 421.977 Q124.89 421.792 125.908 421.792 Q131.695 421.792 135.075 424.963 Q138.455 428.134 138.455 433.551 Q138.455 439.13 134.982 442.232 Q131.51 445.31 125.191 445.31 Q123.015 445.31 120.746 444.94 Q118.501 444.569 116.094 443.829 L116.094 439.13 Q118.177 440.264 120.399 440.819 Q122.621 441.375 125.098 441.375 Q129.103 441.375 131.441 439.269 Q133.779 437.162 133.779 433.551 Q133.779 429.94 131.441 427.833 Q129.103 425.727 125.098 425.727 Q123.223 425.727 121.348 426.144 Q119.496 426.56 117.552 427.44 L117.552 410.079 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M81.58 101.112 L89.2188 101.112 L89.2188 74.7466 L80.9087 76.4132 L80.9087 72.154 L89.1725 70.4873 L93.8484 70.4873 L93.8484 101.112 L101.487 101.112 L101.487 105.047 L81.58 105.047 L81.58 101.112 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M106.557 99.1677 L111.441 99.1677 L111.441 105.047 L106.557 105.047 L106.557 99.1677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M126.51 73.566 Q122.899 73.566 121.071 77.1308 Q119.265 80.6725 119.265 87.802 Q119.265 94.9085 121.071 98.4733 Q122.899 102.015 126.51 102.015 Q130.145 102.015 131.95 98.4733 Q133.779 94.9085 133.779 87.802 Q133.779 80.6725 131.95 77.1308 Q130.145 73.566 126.51 73.566 M126.51 69.8623 Q132.32 69.8623 135.376 74.4688 Q138.455 79.0521 138.455 87.802 Q138.455 96.5288 135.376 101.135 Q132.32 105.719 126.51 105.719 Q120.7 105.719 117.621 101.135 Q114.566 96.5288 114.566 87.802 Q114.566 79.0521 117.621 74.4688 Q120.7 69.8623 126.51 69.8623 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip982)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  224.444,766.951 245.316,698.463 266.188,630.673 287.06,564.273 307.932,499.939 328.804,438.327 349.676,380.065 370.548,325.747 391.42,275.926 412.292,231.112 \n",
+       "  433.164,191.76 454.036,158.272 474.908,130.989 495.78,110.189 516.651,96.0841 537.523,88.8185 558.395,88.4661 579.267,95.0303 600.139,108.444 621.011,128.572 \n",
+       "  641.883,155.207 662.755,188.078 683.627,226.85 704.499,271.129 725.371,320.462 746.243,374.347 767.115,432.234 787.987,493.533 808.859,557.62 829.731,623.841 \n",
+       "  850.602,691.52 871.474,759.969 892.346,828.489 913.218,896.381 934.09,962.954 954.962,1027.53 975.834,1089.45 996.706,1148.08 1017.58,1202.82 1038.45,1253.13 \n",
+       "  1059.32,1298.47 1080.19,1338.4 1101.07,1372.5 1121.94,1400.43 1142.81,1421.9 1163.68,1436.69 1184.55,1444.66 1205.43,1445.72 1226.3,1439.85 1247.17,1427.13 \n",
+       "  1268.04,1407.68 1288.91,1381.7 1309.79,1349.44 1330.66,1311.26 1351.53,1267.52 1372.4,1218.68 1393.27,1165.23 1414.14,1107.72 1435.02,1046.74 1455.89,982.912 \n",
+       "  1476.76,916.877 1497.63,849.315 1518.5,780.913 1539.38,712.368 1560.25,644.38 1581.12,577.642 1601.99,512.833 1622.86,450.615 1643.74,391.622 1664.61,336.455 \n",
+       "  1685.48,285.677 1706.35,239.805 1727.22,199.306 1748.1,164.595 1768.97,136.024 1789.84,113.886 1810.71,98.4042 1831.58,89.7384 1852.46,87.9763 1873.33,93.1359 \n",
+       "  1894.2,105.165 1915.07,123.94 1935.94,149.27 1956.82,180.897 1977.69,218.499 1998.56,261.692 2019.43,310.035 2040.3,363.037 2061.17,420.156 2082.05,480.81 \n",
+       "  2102.92,544.382 2123.79,610.222 2144.66,677.66 2165.53,746.009 2186.41,814.571 2207.28,882.647 2228.15,949.544 2249.02,1014.58 2269.89,1077.09 2290.77,1136.44 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip980)\" d=\"\n",
+       "M1985.36 216.178 L2279.75 216.178 L2279.75 95.2176 L1985.36 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1985.36,216.178 2279.75,216.178 2279.75,95.2176 1985.36,95.2176 1985.36,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip980)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2009.7,155.698 2155.72,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip980)\" d=\"M 0 0 M2193.9 175.385 Q2192.09 180.015 2190.38 181.427 Q2188.67 182.839 2185.79 182.839 L2182.39 182.839 L2182.39 179.274 L2184.89 179.274 Q2186.65 179.274 2187.62 178.44 Q2188.6 177.607 2189.78 174.505 L2190.54 172.561 L2180.05 147.052 L2184.57 147.052 L2192.67 167.329 L2200.77 147.052 L2205.29 147.052 L2193.9 175.385 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip980)\" d=\"M 0 0 M2211.17 169.042 L2218.8 169.042 L2218.8 142.677 L2210.49 144.343 L2210.49 140.084 L2218.76 138.418 L2223.43 138.418 L2223.43 169.042 L2231.07 169.042 L2231.07 172.978 L2211.17 172.978 L2211.17 169.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "execution_count": 5,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "xs = range(0, 10, length=100)\n",
+    "ys = [ f(x) for x in xs ]\n",
+    "\n",
+    "plot(xs, ys)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using LinearAlgebra"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "2×2 Array{Int64,2}:\n",
+       " 1  2\n",
+       " 3  4"
+      ]
+     },
+     "execution_count": 7,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "A = [ 1 2; 3 4 ]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "2-element Array{Int64,1}:\n",
+       " 0\n",
+       " 1"
+      ]
+     },
+     "execution_count": 8,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "B = [ 0; 1 ]"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "1×2 Adjoint{Int64,Array{Int64,1}}:\n",
+       " 0  1"
+      ]
+     },
+     "execution_count": 10,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "B'"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "2-element Array{Int64,1}:\n",
+       " 2\n",
+       " 4"
+      ]
+     },
+     "execution_count": 9,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "A*B"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 11,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "1×2 Adjoint{Int64,Array{Int64,1}}:\n",
+       " 3  4"
+      ]
+     },
+     "execution_count": 11,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "B'*A"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "4"
+      ]
+     },
+     "execution_count": 12,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "B'*A*B"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "When you feel a bit more familiar with Julia, there are other notebooks here for the actual Labs."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.4.2",
+   "language": "julia",
+   "name": "julia-1.4"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.4.2"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Furuta/first_experiment.ipynb b/Furuta/first_experiment.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..5f675252041209a56a855d68dfcfe91e6bf7eefe
--- /dev/null
+++ b/Furuta/first_experiment.ipynb
@@ -0,0 +1,896 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Preparations"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using Plots\n",
+    "using Statistics\n",
+    "using ProgressBars"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We will use the Moberg library to connect to the device. When we create our Moberg object, it should detect the device and connect to it."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stderr",
+     "output_type": "stream",
+     "text": [
+      "┌ Info: Precompiling MobergIO [top-level]\n",
+      "└ @ Base loading.jl:1260\n"
+     ]
+    },
+    {
+     "data": {
+      "text/plain": [
+       "MobergIO.Moberg(Ptr{Nothing} @0x0000000003be2ae0)"
+      ]
+     },
+     "execution_count": 2,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "push!(LOAD_PATH, \"/opt/jupyterhub/moberg/adaptors/julia\");\n",
+    "using MobergIO\n",
+    "\n",
+    "if @isdefined moberg_connection\n",
+    "    @warn \"Only create one connection at a time to the device.\"\n",
+    "else\n",
+    "    moberg_connection = MobergIO.Moberg()\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We use convenience functions to handle sending to and receiving from the magig port numbers we will use."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "get_x (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 3,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "enable!() = MobergIO.write(MobergIO.DigitalOut(moberg_connection, Unsigned(40)), Bool(1))\n",
+    "disable!() = MobergIO.write(MobergIO.DigitalOut(moberg_connection, Unsigned(40)), Bool(0))\n",
+    "\n",
+    "set_torque!(τ) = MobergIO.write(MobergIO.AnalogOut(moberg_connection, Unsigned(40)), τ)\n",
+    "\n",
+    "get_ϕ() = MobergIO.read(MobergIO.AnalogIn(moberg_connection, Unsigned(40)))\n",
+    "get_dϕ() = MobergIO.read(MobergIO.AnalogIn(moberg_connection, Unsigned(42)))\n",
+    "get_θ() = MobergIO.read(MobergIO.AnalogIn(moberg_connection, Unsigned(41)))\n",
+    "get_dθ() = MobergIO.read(MobergIO.AnalogIn(moberg_connection, Unsigned(43)))\n",
+    "\n",
+    "get_x() = [get_ϕ(), get_dϕ(), get_θ(), get_dθ()]"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# A first experiment"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "An experiment uses a policy and runs the pendulum with that policy for some time, recording the observed states. The policy is a function that takes a state and time and chooses a torque.\n",
+    "\n",
+    "The experiment performs the following:\n",
+    "  1. Enable the device\n",
+    "  1. Repeatedly, until time `T` has elapsed\n",
+    "      1. Read the state\n",
+    "      1. Decide which torque to apply\n",
+    "      1. Send the selected torque to the device\n",
+    "      1. Record the current state, torque and time elapsed.\n",
+    "  \n",
+    "* The experiment runs for $T$ seconds.\n",
+    "* We record the state and torque every $\\Delta t$ seconds.\n",
+    "* The device firmware performs tasks at 20kHz, and a torque command expires after 2k iterations, so if we want to have a constant torque, we need to resubmit the command at least every 100 ms. We set $dt=0.1$ and we ensure that we sleep for at most $dt$ seconds at a time.\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "experiment (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 4,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function experiment(f; T = 10, Δt = 0.01)\n",
+    "    enable!()\n",
+    "    \n",
+    "    # We need to update torque at least every 2k iterations for a 20kHz interrupt\n",
+    "    # These numbers are obtained from the firmware\n",
+    "    dt = 2*10^3 / 20*10^3\n",
+    "    sleep_time = min(dt, Δt)\n",
+    "    \n",
+    "    t_start = time()\n",
+    "    t_exp = 0.0\n",
+    "    xs = [get_x()]\n",
+    "    τs = [0.0]\n",
+    "    ts = [t_exp]\n",
+    "    \n",
+    "    while t_exp < T\n",
+    "        t_exp = time() - t_start\n",
+    "        x = get_x()\n",
+    "        τ = f(x, t_exp)\n",
+    "        set_torque!(τ)        \n",
+    "        sleep(sleep_time)\n",
+    "       \n",
+    "        if t_exp - ts[end] > Δt\n",
+    "            push!(xs, x)\n",
+    "            push!(τs, τ)\n",
+    "            push!(ts, t_exp)\n",
+    "        end        \n",
+    "    end\n",
+    "    set_torque!(0.0)\n",
+    "    sleep(5)\n",
+    "    disable!()\n",
+    "    sleep(5)\n",
+    "    xs, τs, ts\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "plot_result (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 5,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function plot_result(xs, τs, ts)\n",
+    "    ϕs = [ x[1] for x in xs ] \n",
+    "    ϕs .= ϕs .- ϕs[1]\n",
+    "    θs = [ x[3] for x in xs ]\n",
+    "    θs .= rem2pi.(θs, RoundNearest)\n",
+    "    plt_ϕ = plot(ts, ϕs, xlabel = \"Time [s]\", ylabel = \"Base angle\", label = \"phi\")\n",
+    "    plt_θ = plot(ts, θs, xlabel = \"Time [s]\", ylabel = \"Pendulum angle\", label = \"theta\")\n",
+    "    plt_τ = plot(ts, τs, xlabel = \"Time [s]\", ylabel = \"Torque\", label = \"tau\")\n",
+    "    plot(plt_ϕ, plt_θ, plt_τ, layout = (3, 1))\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "f(x, t) = sin(10*t)/40\n",
+    "xs, τs, ts = experiment(f);"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip890\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip891\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"\n",
+       "M252.505 356.513 L2352.76 356.513 L2352.76 47.2441 L252.505 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip892\">\n",
+       "    <rect x=\"252\" y=\"47\" width=\"2101\" height=\"310\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  311.946,356.513 311.946,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  806.725,356.513 806.725,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1301.5,356.513 1301.5,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1796.28,356.513 1796.28,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2291.06,356.513 2291.06,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,298.053 2352.76,298.053 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,227.515 2352.76,227.515 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,156.976 2352.76,156.976 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip892)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,86.4378 2352.76,86.4378 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,356.513 2352.76,356.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,356.513 252.505,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,356.513 311.946,352.802 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  806.725,356.513 806.725,352.802 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1301.5,356.513 1301.5,352.802 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1796.28,356.513 1796.28,352.802 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2291.06,356.513 2291.06,352.802 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,298.053 277.708,298.053 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,227.515 277.708,227.515 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,156.976 277.708,156.976 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,86.4378 277.708,86.4378 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M293.462 378.504 Q289.851 378.504 288.023 382.069 Q286.217 385.61 286.217 392.74 Q286.217 399.846 288.023 403.411 Q289.851 406.953 293.462 406.953 Q297.097 406.953 298.902 403.411 Q300.731 399.846 300.731 392.74 Q300.731 385.61 298.902 382.069 Q297.097 378.504 293.462 378.504 M293.462 374.8 Q299.273 374.8 302.328 379.407 Q305.407 383.99 305.407 392.74 Q305.407 401.467 302.328 406.073 Q299.273 410.656 293.462 410.656 Q287.652 410.656 284.574 406.073 Q281.518 401.467 281.518 392.74 Q281.518 383.99 284.574 379.407 Q287.652 374.8 293.462 374.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M310.476 404.106 L315.36 404.106 L315.36 409.985 L310.476 409.985 L310.476 404.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M330.43 378.504 Q326.819 378.504 324.99 382.069 Q323.184 385.61 323.184 392.74 Q323.184 399.846 324.99 403.411 Q326.819 406.953 330.43 406.953 Q334.064 406.953 335.87 403.411 Q337.698 399.846 337.698 392.74 Q337.698 385.61 335.87 382.069 Q334.064 378.504 330.43 378.504 M330.43 374.8 Q336.24 374.8 339.295 379.407 Q342.374 383.99 342.374 392.74 Q342.374 401.467 339.295 406.073 Q336.24 410.656 330.43 410.656 Q324.62 410.656 321.541 406.073 Q318.485 401.467 318.485 392.74 Q318.485 383.99 321.541 379.407 Q324.62 374.8 330.43 374.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M783.392 406.05 L799.711 406.05 L799.711 409.985 L777.767 409.985 L777.767 406.05 Q780.429 403.295 785.012 398.666 Q789.619 394.013 790.799 392.67 Q793.045 390.147 793.924 388.411 Q794.827 386.652 794.827 384.962 Q794.827 382.208 792.883 380.471 Q790.961 378.735 787.859 378.735 Q785.66 378.735 783.207 379.499 Q780.776 380.263 777.998 381.814 L777.998 377.092 Q780.822 375.958 783.276 375.379 Q785.73 374.8 787.767 374.8 Q793.137 374.8 796.332 377.485 Q799.526 380.171 799.526 384.661 Q799.526 386.791 798.716 388.712 Q797.929 390.61 795.822 393.203 Q795.244 393.874 792.142 397.092 Q789.04 400.286 783.392 406.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M804.781 404.106 L809.665 404.106 L809.665 409.985 L804.781 409.985 L804.781 404.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M814.781 375.425 L833.137 375.425 L833.137 379.36 L819.063 379.36 L819.063 387.833 Q820.081 387.485 821.1 387.323 Q822.118 387.138 823.137 387.138 Q828.924 387.138 832.304 390.309 Q835.683 393.481 835.683 398.897 Q835.683 404.476 832.211 407.578 Q828.739 410.656 822.419 410.656 Q820.243 410.656 817.975 410.286 Q815.73 409.916 813.322 409.175 L813.322 404.476 Q815.406 405.61 817.628 406.166 Q819.85 406.721 822.327 406.721 Q826.331 406.721 828.669 404.615 Q831.007 402.508 831.007 398.897 Q831.007 395.286 828.669 393.18 Q826.331 391.073 822.327 391.073 Q820.452 391.073 818.577 391.49 Q816.725 391.907 814.781 392.786 L814.781 375.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1273.3 375.425 L1291.65 375.425 L1291.65 379.36 L1277.58 379.36 L1277.58 387.833 Q1278.6 387.485 1279.62 387.323 Q1280.64 387.138 1281.65 387.138 Q1287.44 387.138 1290.82 390.309 Q1294.2 393.481 1294.2 398.897 Q1294.2 404.476 1290.73 407.578 Q1287.26 410.656 1280.94 410.656 Q1278.76 410.656 1276.49 410.286 Q1274.25 409.916 1271.84 409.175 L1271.84 404.476 Q1273.92 405.61 1276.15 406.166 Q1278.37 406.721 1280.84 406.721 Q1284.85 406.721 1287.19 404.615 Q1289.52 402.508 1289.52 398.897 Q1289.52 395.286 1287.19 393.18 Q1284.85 391.073 1280.84 391.073 Q1278.97 391.073 1277.09 391.49 Q1275.24 391.907 1273.3 392.786 L1273.3 375.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1299.27 404.106 L1304.15 404.106 L1304.15 409.985 L1299.27 409.985 L1299.27 404.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1319.22 378.504 Q1315.61 378.504 1313.78 382.069 Q1311.98 385.61 1311.98 392.74 Q1311.98 399.846 1313.78 403.411 Q1315.61 406.953 1319.22 406.953 Q1322.86 406.953 1324.66 403.411 Q1326.49 399.846 1326.49 392.74 Q1326.49 385.61 1324.66 382.069 Q1322.86 378.504 1319.22 378.504 M1319.22 374.8 Q1325.03 374.8 1328.09 379.407 Q1331.17 383.99 1331.17 392.74 Q1331.17 401.467 1328.09 406.073 Q1325.03 410.656 1319.22 410.656 Q1313.41 410.656 1310.33 406.073 Q1307.28 401.467 1307.28 392.74 Q1307.28 383.99 1310.33 379.407 Q1313.41 374.8 1319.22 374.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1767.19 375.425 L1789.41 375.425 L1789.41 377.416 L1776.86 409.985 L1771.98 409.985 L1783.78 379.36 L1767.19 379.36 L1767.19 375.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1794.48 404.106 L1799.36 404.106 L1799.36 409.985 L1794.48 409.985 L1794.48 404.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1804.48 375.425 L1822.83 375.425 L1822.83 379.36 L1808.76 379.36 L1808.76 387.833 Q1809.78 387.485 1810.8 387.323 Q1811.82 387.138 1812.83 387.138 Q1818.62 387.138 1822 390.309 Q1825.38 393.481 1825.38 398.897 Q1825.38 404.476 1821.91 407.578 Q1818.44 410.656 1812.12 410.656 Q1809.94 410.656 1807.67 410.286 Q1805.43 409.916 1803.02 409.175 L1803.02 404.476 Q1805.1 405.61 1807.32 406.166 Q1809.55 406.721 1812.02 406.721 Q1816.03 406.721 1818.37 404.615 Q1820.7 402.508 1820.7 398.897 Q1820.7 395.286 1818.37 393.18 Q1816.03 391.073 1812.02 391.073 Q1810.15 391.073 1808.27 391.49 Q1806.42 391.907 1804.48 392.786 L1804.48 375.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2249.45 406.05 L2257.09 406.05 L2257.09 379.684 L2248.78 381.351 L2248.78 377.092 L2257.05 375.425 L2261.72 375.425 L2261.72 406.05 L2269.36 406.05 L2269.36 409.985 L2249.45 409.985 L2249.45 406.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2284.43 378.504 Q2280.82 378.504 2278.99 382.069 Q2277.18 385.61 2277.18 392.74 Q2277.18 399.846 2278.99 403.411 Q2280.82 406.953 2284.43 406.953 Q2288.06 406.953 2289.87 403.411 Q2291.7 399.846 2291.7 392.74 Q2291.7 385.61 2289.87 382.069 Q2288.06 378.504 2284.43 378.504 M2284.43 374.8 Q2290.24 374.8 2293.3 379.407 Q2296.37 383.99 2296.37 392.74 Q2296.37 401.467 2293.3 406.073 Q2290.24 410.656 2284.43 410.656 Q2278.62 410.656 2275.54 406.073 Q2272.49 401.467 2272.49 392.74 Q2272.49 383.99 2275.54 379.407 Q2278.62 374.8 2284.43 374.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2301.44 404.106 L2306.33 404.106 L2306.33 409.985 L2301.44 409.985 L2301.44 404.106 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2321.4 378.504 Q2317.79 378.504 2315.96 382.069 Q2314.15 385.61 2314.15 392.74 Q2314.15 399.846 2315.96 403.411 Q2317.79 406.953 2321.4 406.953 Q2325.03 406.953 2326.84 403.411 Q2328.67 399.846 2328.67 392.74 Q2328.67 385.61 2326.84 382.069 Q2325.03 378.504 2321.4 378.504 M2321.4 374.8 Q2327.21 374.8 2330.26 379.407 Q2333.34 383.99 2333.34 392.74 Q2333.34 401.467 2330.26 406.073 Q2327.21 410.656 2321.4 410.656 Q2315.59 410.656 2312.51 406.073 Q2309.45 401.467 2309.45 392.74 Q2309.45 383.99 2312.51 379.407 Q2315.59 374.8 2321.4 374.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M216.561 283.852 Q212.95 283.852 211.121 287.417 Q209.315 290.958 209.315 298.088 Q209.315 305.194 211.121 308.759 Q212.95 312.301 216.561 312.301 Q220.195 312.301 222 308.759 Q223.829 305.194 223.829 298.088 Q223.829 290.958 222 287.417 Q220.195 283.852 216.561 283.852 M216.561 280.148 Q222.371 280.148 225.426 284.755 Q228.505 289.338 228.505 298.088 Q228.505 306.815 225.426 311.421 Q222.371 316.004 216.561 316.004 Q210.75 316.004 207.672 311.421 Q204.616 306.815 204.616 298.088 Q204.616 289.338 207.672 284.755 Q210.75 280.148 216.561 280.148 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M212.186 240.86 L228.505 240.86 L228.505 244.795 L206.561 244.795 L206.561 240.86 Q209.223 238.105 213.806 233.475 Q218.412 228.823 219.593 227.48 Q221.838 224.957 222.718 223.221 Q223.621 221.461 223.621 219.772 Q223.621 217.017 221.676 215.281 Q219.755 213.545 216.653 213.545 Q214.454 213.545 212 214.309 Q209.57 215.073 206.792 216.624 L206.792 211.901 Q209.616 210.767 212.07 210.188 Q214.524 209.61 216.561 209.61 Q221.931 209.61 225.125 212.295 Q228.32 214.98 228.32 219.471 Q228.32 221.6 227.51 223.522 Q226.723 225.42 224.616 228.012 Q224.037 228.684 220.936 231.901 Q217.834 235.096 212.186 240.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M218.922 143.77 L207.116 162.219 L218.922 162.219 L218.922 143.77 M217.695 139.696 L223.574 139.696 L223.574 162.219 L228.505 162.219 L228.505 166.108 L223.574 166.108 L223.574 174.256 L218.922 174.256 L218.922 166.108 L203.32 166.108 L203.32 161.594 L217.695 139.696 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M216.977 84.5744 Q213.829 84.5744 211.977 86.7271 Q210.149 88.8799 210.149 92.6299 Q210.149 96.3567 211.977 98.5326 Q213.829 100.685 216.977 100.685 Q220.125 100.685 221.954 98.5326 Q223.806 96.3567 223.806 92.6299 Q223.806 88.8799 221.954 86.7271 Q220.125 84.5744 216.977 84.5744 M226.26 69.9217 L226.26 74.1809 Q224.5 73.3476 222.695 72.9078 Q220.912 72.468 219.153 72.468 Q214.524 72.468 212.07 75.5929 Q209.639 78.7179 209.292 85.0373 Q210.658 83.0235 212.718 81.9587 Q214.778 80.8707 217.255 80.8707 Q222.463 80.8707 225.473 84.042 Q228.505 87.1901 228.505 92.6299 Q228.505 97.9539 225.357 101.172 Q222.209 104.389 216.977 104.389 Q210.982 104.389 207.811 99.8058 Q204.639 95.1993 204.639 86.4725 Q204.639 78.2781 208.528 73.417 Q212.417 68.5328 218.968 68.5328 Q220.727 68.5328 222.51 68.88 Q224.315 69.2272 226.26 69.9217 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1185.02 441.857 L1225.22 441.857 L1225.22 447.268 L1208.35 447.268 L1208.35 489.377 L1201.89 489.377 L1201.89 447.268 L1185.02 447.268 L1185.02 441.857 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1229.36 453.729 L1235.22 453.729 L1235.22 489.377 L1229.36 489.377 L1229.36 453.729 M1229.36 439.852 L1235.22 439.852 L1235.22 447.268 L1229.36 447.268 L1229.36 439.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1269.11 460.572 Q1271.31 456.626 1274.37 454.748 Q1277.42 452.87 1281.56 452.87 Q1287.13 452.87 1290.15 456.785 Q1293.18 460.668 1293.18 467.861 L1293.18 489.377 L1287.29 489.377 L1287.29 468.052 Q1287.29 462.928 1285.47 460.445 Q1283.66 457.962 1279.94 457.962 Q1275.39 457.962 1272.74 460.986 Q1270.1 464.01 1270.1 469.23 L1270.1 489.377 L1264.21 489.377 L1264.21 468.052 Q1264.21 462.896 1262.4 460.445 Q1260.58 457.962 1256.8 457.962 Q1252.31 457.962 1249.67 461.018 Q1247.03 464.042 1247.03 469.23 L1247.03 489.377 L1241.14 489.377 L1241.14 453.729 L1247.03 453.729 L1247.03 459.267 Q1249.03 455.989 1251.83 454.429 Q1254.63 452.87 1258.48 452.87 Q1262.37 452.87 1265.07 454.843 Q1267.81 456.817 1269.11 460.572 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1329.81 470.089 L1329.81 472.954 L1302.89 472.954 Q1303.27 479.001 1306.51 482.184 Q1309.79 485.335 1315.62 485.335 Q1318.99 485.335 1322.14 484.507 Q1325.32 483.68 1328.44 482.025 L1328.44 487.563 Q1325.29 488.9 1321.98 489.6 Q1318.67 490.3 1315.27 490.3 Q1306.74 490.3 1301.74 485.335 Q1296.77 480.37 1296.77 471.903 Q1296.77 463.15 1301.48 458.026 Q1306.23 452.87 1314.25 452.87 Q1321.44 452.87 1325.61 457.517 Q1329.81 462.132 1329.81 470.089 M1323.96 468.37 Q1323.89 463.564 1321.25 460.7 Q1318.64 457.835 1314.31 457.835 Q1309.41 457.835 1306.45 460.604 Q1303.52 463.373 1303.08 468.402 L1323.96 468.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1356.13 439.852 L1369.63 439.852 L1369.63 444.403 L1361.99 444.403 L1361.99 493.419 L1369.63 493.419 L1369.63 497.971 L1356.13 497.971 L1356.13 439.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1398.5 454.78 L1398.5 460.318 Q1396.02 459.045 1393.34 458.408 Q1390.67 457.771 1387.8 457.771 Q1383.44 457.771 1381.25 459.108 Q1379.08 460.445 1379.08 463.119 Q1379.08 465.156 1380.64 466.333 Q1382.2 467.479 1386.91 468.529 L1388.92 468.975 Q1395.16 470.312 1397.77 472.763 Q1400.41 475.182 1400.41 479.542 Q1400.41 484.507 1396.46 487.404 Q1392.55 490.3 1385.67 490.3 Q1382.81 490.3 1379.69 489.727 Q1376.6 489.186 1373.16 488.072 L1373.16 482.025 Q1376.41 483.712 1379.56 484.571 Q1382.71 485.399 1385.8 485.399 Q1389.94 485.399 1392.16 483.998 Q1394.39 482.566 1394.39 479.988 Q1394.39 477.601 1392.77 476.327 Q1391.18 475.054 1385.73 473.877 L1383.7 473.399 Q1378.26 472.253 1375.84 469.898 Q1373.42 467.511 1373.42 463.373 Q1373.42 458.344 1376.98 455.607 Q1380.55 452.87 1387.1 452.87 Q1390.35 452.87 1393.21 453.347 Q1396.08 453.825 1398.5 454.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1420.24 439.852 L1420.24 497.971 L1406.74 497.971 L1406.74 493.419 L1414.35 493.419 L1414.35 444.403 L1406.74 444.403 L1406.74 439.852 L1420.24 439.852 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M142.37 350.327 L159.78 350.327 L159.78 340.014 Q159.78 334.826 157.648 332.344 Q155.484 329.829 151.059 329.829 Q146.603 329.829 144.503 332.344 Q142.37 334.826 142.37 340.014 L142.37 350.327 M122.827 350.327 L137.15 350.327 L137.15 340.81 Q137.15 336.1 135.4 333.808 Q133.617 331.484 129.989 331.484 Q126.392 331.484 124.61 333.808 Q122.827 336.1 122.827 340.81 L122.827 350.327 M117.544 356.756 L117.544 340.333 Q117.544 332.98 120.599 329.002 Q123.655 325.023 129.289 325.023 Q133.649 325.023 136.227 327.06 Q138.805 329.097 139.442 333.044 Q140.46 328.302 143.707 325.692 Q146.922 323.05 151.76 323.05 Q158.125 323.05 161.595 327.379 Q165.064 331.707 165.064 339.696 L165.064 356.756 L117.544 356.756 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M147.144 300.706 Q147.144 307.804 148.768 310.541 Q150.391 313.279 154.306 313.279 Q157.425 313.279 159.271 311.241 Q161.085 309.173 161.085 305.64 Q161.085 300.77 157.648 297.842 Q154.179 294.882 148.449 294.882 L147.144 294.882 L147.144 300.706 M144.725 289.025 L165.064 289.025 L165.064 294.882 L159.653 294.882 Q162.9 296.887 164.459 299.879 Q165.987 302.871 165.987 307.199 Q165.987 312.674 162.931 315.92 Q159.844 319.135 154.688 319.135 Q148.672 319.135 145.617 315.125 Q142.561 311.082 142.561 303.093 L142.561 294.882 L141.988 294.882 Q137.946 294.882 135.75 297.555 Q133.522 300.197 133.522 305.003 Q133.522 308.059 134.254 310.955 Q134.986 313.851 136.45 316.525 L131.039 316.525 Q129.798 313.31 129.193 310.287 Q128.557 307.263 128.557 304.398 Q128.557 296.664 132.567 292.845 Q136.577 289.025 144.725 289.025 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M130.466 260.157 L136.004 260.157 Q134.731 262.639 134.095 265.313 Q133.458 267.986 133.458 270.851 Q133.458 275.212 134.795 277.408 Q136.132 279.572 138.805 279.572 Q140.842 279.572 142.02 278.012 Q143.166 276.453 144.216 271.742 L144.662 269.737 Q145.999 263.499 148.449 260.889 Q150.868 258.247 155.229 258.247 Q160.194 258.247 163.091 262.194 Q165.987 266.109 165.987 272.984 Q165.987 275.848 165.414 278.967 Q164.873 282.055 163.759 285.492 L157.712 285.492 Q159.398 282.246 160.258 279.095 Q161.085 275.944 161.085 272.856 Q161.085 268.719 159.685 266.491 Q158.253 264.263 155.675 264.263 Q153.287 264.263 152.014 265.886 Q150.741 267.477 149.563 272.92 L149.086 274.957 Q147.94 280.4 145.585 282.819 Q143.198 285.238 139.06 285.238 Q134.031 285.238 131.294 281.673 Q128.557 278.108 128.557 271.551 Q128.557 268.305 129.034 265.44 Q129.511 262.576 130.466 260.157 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M145.776 221.612 L148.64 221.612 L148.64 248.539 Q154.688 248.157 157.871 244.911 Q161.022 241.632 161.022 235.808 Q161.022 232.434 160.194 229.283 Q159.367 226.1 157.712 222.981 L163.25 222.981 Q164.587 226.132 165.287 229.442 Q165.987 232.752 165.987 236.158 Q165.987 244.688 161.022 249.685 Q156.056 254.65 147.59 254.65 Q138.837 254.65 133.713 249.94 Q128.557 245.197 128.557 237.176 Q128.557 229.983 133.204 225.814 Q137.819 221.612 145.776 221.612 M144.057 227.469 Q139.251 227.532 136.386 230.174 Q133.522 232.784 133.522 237.113 Q133.522 242.014 136.291 244.974 Q139.06 247.903 144.089 248.348 L144.057 227.469 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M147.144 178.548 Q147.144 185.646 148.768 188.383 Q150.391 191.121 154.306 191.121 Q157.425 191.121 159.271 189.084 Q161.085 187.015 161.085 183.482 Q161.085 178.612 157.648 175.684 Q154.179 172.724 148.449 172.724 L147.144 172.724 L147.144 178.548 M144.725 166.867 L165.064 166.867 L165.064 172.724 L159.653 172.724 Q162.9 174.729 164.459 177.721 Q165.987 180.713 165.987 185.041 Q165.987 190.516 162.931 193.762 Q159.844 196.977 154.688 196.977 Q148.672 196.977 145.617 192.967 Q142.561 188.924 142.561 180.935 L142.561 172.724 L141.988 172.724 Q137.946 172.724 135.75 175.397 Q133.522 178.039 133.522 182.845 Q133.522 185.901 134.254 188.797 Q134.986 191.694 136.45 194.367 L131.039 194.367 Q129.798 191.152 129.193 188.129 Q128.557 185.105 128.557 182.24 Q128.557 174.506 132.567 170.687 Q136.577 166.867 144.725 166.867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M143.548 131.092 L165.064 131.092 L165.064 136.948 L143.739 136.948 Q138.678 136.948 136.164 138.922 Q133.649 140.895 133.649 144.842 Q133.649 149.584 136.673 152.322 Q139.697 155.059 144.916 155.059 L165.064 155.059 L165.064 160.947 L129.416 160.947 L129.416 155.059 L134.954 155.059 Q131.739 152.958 130.148 150.125 Q128.557 147.261 128.557 143.537 Q128.557 137.394 132.376 134.243 Q136.164 131.092 143.548 131.092 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M146.826 101.491 Q140.46 101.491 136.959 104.133 Q133.458 106.743 133.458 111.486 Q133.458 116.196 136.959 118.838 Q140.46 121.448 146.826 121.448 Q153.16 121.448 156.661 118.838 Q160.162 116.196 160.162 111.486 Q160.162 106.743 156.661 104.133 Q153.16 101.491 146.826 101.491 M160.64 95.635 Q169.743 95.635 174.167 99.6772 Q178.623 103.719 178.623 112.059 Q178.623 115.146 178.145 117.883 Q177.7 120.62 176.745 123.199 L171.048 123.199 Q172.448 120.62 173.117 118.106 Q173.785 115.591 173.785 112.982 Q173.785 107.221 170.761 104.356 Q167.769 101.491 161.69 101.491 L158.794 101.491 Q161.945 103.306 163.504 106.138 Q165.064 108.971 165.064 112.918 Q165.064 119.475 160.067 123.485 Q155.07 127.495 146.826 127.495 Q138.551 127.495 133.554 123.485 Q128.557 119.475 128.557 112.918 Q128.557 108.971 130.116 106.138 Q131.676 103.306 134.827 101.491 L129.416 101.491 L129.416 95.635 L160.64 95.635 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M115.539 89.4921 L115.539 83.6356 L165.064 83.6356 L165.064 89.4921 L115.539 89.4921 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M145.776 47.001 L148.64 47.001 L148.64 73.9279 Q154.688 73.546 157.871 70.2995 Q161.022 67.0211 161.022 61.1965 Q161.022 57.8227 160.194 54.6717 Q159.367 51.4888 157.712 48.3696 L163.25 48.3696 Q164.587 51.5206 165.287 54.8308 Q165.987 58.141 165.987 61.5466 Q165.987 70.0767 161.022 75.0738 Q156.056 80.039 147.59 80.039 Q138.837 80.039 133.713 75.3284 Q128.557 70.5859 128.557 62.5651 Q128.557 55.3719 133.204 51.2024 Q137.819 47.001 145.776 47.001 M144.057 52.8574 Q139.251 52.9211 136.386 55.5629 Q133.522 58.1728 133.522 62.5015 Q133.522 67.4031 136.291 70.3631 Q139.06 73.2914 144.089 73.737 L144.057 52.8574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip892)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,298.053 316.137,297.81 319.099,297.877 322.065,297.986 325.041,297.877 328.011,297.586 331.178,296.99 334.16,296.148 337.302,294.951 340.277,293.244 \n",
+       "  343.253,290.741 346.414,286.973 349.381,282.13 352.351,276.137 355.346,269.167 358.467,261.057 361.419,252.845 364.415,243.884 367.377,234.707 370.353,225.468 \n",
+       "  373.326,216.271 376.295,207.185 379.452,198.043 382.395,190.345 385.353,183.185 388.361,176.981 391.332,171.982 394.13,168.56 397.274,166.919 400.448,167.793 \n",
+       "  403.608,170.833 406.775,175.229 409.945,180.47 413.112,186.543 416.275,193.257 419.441,200.693 422.606,209.335 425.576,218.243 428.743,228.137 431.91,238.521 \n",
+       "  434.91,248.591 438.045,258.752 441.206,268.482 444.372,277.467 447.334,284.924 450.309,290.917 453.501,295.903 456.635,299.594 459.603,301.5 462.573,301.93 \n",
+       "  465.542,301.112 468.51,299.328 471.479,296.658 474.675,293.113 477.818,288.713 480.789,283.495 483.947,276.781 486.918,269.778 489.884,262.364 492.877,254.696 \n",
+       "  496.015,246.008 498.989,237.389 501.953,228.78 504.925,220.749 507.889,213.357 510.858,207.185 513.86,202.298 516.994,198.897 519.962,197.524 522.931,197.834 \n",
+       "  525.899,199.674 528.867,202.929 531.837,207.385 535.004,213.167 537.979,219.739 541.145,227.65 544.312,236.625 547.479,246.542 550.641,257.058 553.649,267.384 \n",
+       "  556.778,278.33 559.943,289.178 563.11,299.407 566.078,308.392 569.046,316.667 572.213,324.223 575.191,330.431 578.343,335.869 581.307,339.869 584.242,342.74 \n",
+       "  587.232,344.381 590.222,344.424 593.414,342.895 596.548,340.226 599.528,336.523 602.691,331.383 605.857,325.2 608.822,318.807 611.791,311.462 614.962,302.64 \n",
+       "  618.125,293.057 621.092,284.026 624.061,275.063 627.228,266.254 630.19,259.04 633.198,252.793 636.333,247.184 639.499,242.831 642.468,240.138 645.64,238.808 \n",
+       "  648.8,238.952 651.768,240.194 654.743,242.508 657.905,246.099 661.068,250.63 664.039,255.407 667.206,260.892 670.373,267.416 673.568,274.918 676.702,282.84 \n",
+       "  679.875,291.063 683.039,299.704 686.204,308.657 689.367,317.455 692.569,325.553 695.705,332.847 698.871,339.085 702.041,343.926 705.204,346.985 708.377,347.76 \n",
+       "  711.539,346.309 714.702,343.304 717.865,339.128 721.032,333.876 724.198,327.736 727.362,321.054 730.33,313.91 733.331,305.699 736.456,296.413 739.423,287.385 \n",
+       "  742.388,277.967 745.364,268.258 748.333,258.608 751.304,249.289 754.275,240.271 757.437,231.495 760.407,224.57 763.376,218.753 766.343,214.101 769.314,210.875 \n",
+       "  772.318,209.047 775.44,208.569 778.39,209.301 781.339,210.984 784.326,213.766 787.304,217.813 790.293,222.884 793.289,228.692 796.433,235.762 799.605,243.606 \n",
+       "  802.764,251.872 805.933,260.227 809.099,268.68 812.298,277.035 815.427,284.702 818.601,291.472 821.762,297.444 824.917,302.464 827.888,305.876 830.854,307.927 \n",
+       "  833.826,308.435 836.793,307.495 839.761,305.355 842.727,302.042 845.697,297.455 848.665,292.004 851.666,285.712 854.801,277.975 857.77,269.789 860.741,260.956 \n",
+       "  863.708,251.861 866.677,242.297 869.645,232.625 872.646,223.186 875.78,213.645 878.75,205.047 881.714,197.315 884.682,190.82 887.656,185.247 890.609,181.093 \n",
+       "  893.593,178.41 896.554,177.312 899.524,177.756 902.493,179.396 905.461,182.078 908.433,185.8 911.43,190.465 914.565,195.929 917.533,202.124 920.505,209.267 \n",
+       "  923.472,216.891 926.443,224.891 929.41,233.013 932.406,241.423 935.544,250.066 938.487,257.699 941.47,264.825 944.444,271.229 947.417,276.514 950.386,280.58 \n",
+       "  953.344,283.294 956.293,284.291 959.285,283.604 962.251,281.609 965.227,278.576 968.197,274.617 971.196,269.502 974.324,263.029 977.274,256.27 980.228,248.557 \n",
+       "  983.207,240.039 986.205,230.94 989.171,221.845 992.165,212.326 995.301,202.253 998.273,193.156 1001.24,184.405 1004.21,176.172 1007.18,168.76 1010.15,162.732 \n",
+       "  1013.12,157.934 1016.09,154.068 1019.05,151.429 1022.02,150.322 1024.99,150.82 1027.96,152.692 1030.96,155.73 1034.1,159.85 1037.06,164.616 1040.03,170.542 \n",
+       "  1043,177.411 1045.96,184.748 1048.94,192.437 1051.94,200.361 1055.07,209.124 1058.04,217.412 1061.01,225.313 1063.98,232.67 1066.95,239.572 1069.91,245.535 \n",
+       "  1072.89,250.542 1075.85,254.322 1078.82,256.569 1081.79,257.224 1084.75,256.294 1087.73,254.012 1090.73,250.352 1093.86,245.179 1096.83,239.176 1099.8,232.139 \n",
+       "  1102.76,224.615 1105.73,216.405 1108.7,207.618 1111.7,198.099 1114.84,187.873 1117.81,177.932 1120.77,167.996 1123.74,158.543 1126.71,149.513 1129.68,141.169 \n",
+       "  1132.65,133.613 1135.8,126.798 1138.78,121.414 1141.74,117.57 1144.71,115.296 1147.69,114.623 1150.69,115.51 1153.82,117.658 1156.79,120.771 1159.76,124.947 \n",
+       "  1162.73,129.78 1165.7,135.297 1168.66,141.802 1171.66,149.037 1174.77,157.138 1177.73,164.926 1180.72,173.037 1183.71,181.037 1186.68,188.76 1189.64,195.883 \n",
+       "  1192.62,202.387 1195.94,208.703 1198.95,213.146 1202.11,216.504 1205.08,218.308 1208.05,218.542 1211.05,217.313 1214.18,214.952 1217.15,211.772 1220.12,207.562 \n",
+       "  1223.29,201.866 1226.26,195.696 1229.23,188.691 1232.4,180.193 1235.56,171.042 1238.53,162.134 1241.69,152.46 1244.86,142.9 1248.03,133.547 1251.03,125.205 \n",
+       "  1254.16,117.137 1257.32,109.981 1260.3,104.318 1263.46,99.9414 1266.63,97.1925 1269.6,95.8643 1272.77,95.8406 1275.89,96.9363 1278.87,98.7446 1281.84,101.524 \n",
+       "  1284.83,105.569 1287.79,110.843 1290.79,117.038 1293.94,124.495 1296.9,132.072 1299.87,140.119 1302.84,148.439 1305.81,156.77 1308.78,164.859 1311.78,172.749 \n",
+       "  1314.91,180.249 1317.88,186.642 1320.85,192.028 1323.81,196.116 1326.78,199.052 1329.75,200.802 1332.72,201.347 1335.68,200.615 1338.66,198.929 1341.63,196.402 \n",
+       "  1344.6,192.924 1347.57,188.293 1350.57,182.466 1353.7,175.474 1356.87,167.43 1359.84,159.441 1363,150.411 1366.17,141.236 1369.14,132.638 1372.41,123.565 \n",
+       "  1375.43,115.673 1378.39,108.582 1381.38,102.477 1384.35,97.7802 1387.34,94.1788 1390.34,91.7958 1393.48,90.7883 1396.65,91.3545 1399.61,92.9152 1402.58,95.3649 \n",
+       "  1405.75,98.7553 1408.92,103.164 1411.89,108.55 1415.05,115.243 1418.22,122.755 1421.19,130.346 1424.16,138.3 1427.32,147.175 1430.52,156.238 1433.65,164.771 \n",
+       "  1436.62,172.551 1439.59,179.784 1442.76,186.61 1445.92,192.084 1449.09,195.795 1452.26,198.01 1455.43,198.886 1458.59,198.411 1461.76,196.859 1464.92,194.254 \n",
+       "  1468.09,190.409 1471.29,185.092 1474.42,178.854 1477.39,171.995 1480.56,163.927 1483.72,155.342 1486.69,146.742 1489.66,137.802 1492.82,128.438 1495.99,119.197 \n",
+       "  1498.96,110.933 1502.12,102.822 1505.09,96.3637 1508.26,90.4999 1511.26,86.2785 1514.39,83.4542 1517.56,82.2121 1520.53,82.5329 1523.7,84.1969 1526.86,87.0427 \n",
+       "  1529.86,90.9648 1533,96.2087 1536.15,102.322 1539.12,109.103 1542.08,116.538 1545.06,124.572 1548,132.86 1551.03,141.679 1554.16,150.886 1557.12,159.562 \n",
+       "  1560.09,167.75 1563.07,175.597 1566.04,182.475 1569.23,188.846 1572.33,193.602 1575.31,196.859 1578.3,198.929 1581.27,199.851 1584.24,199.519 1587.21,198.144 \n",
+       "  1590.22,195.728 1593.35,192.028 1596.31,187.253 1599.28,181.566 1602.25,175.175 1605.22,168.028 1608.19,160.56 1611.16,152.57 1614.32,143.918 1617.3,135.663 \n",
+       "  1620.26,127.806 1623.23,120.306 1626.2,113.581 1629.2,107.532 1632.34,102.456 1635.3,99.0093 1638.27,96.805 1641.24,95.7179 1644.21,95.8966 1647.17,97.1258 \n",
+       "  1650.17,99.2741 1653.31,102.723 1656.28,107.286 1659.25,112.926 1662.22,119.309 1665.18,126.467 1668.15,134.111 1671.13,142.444 1674.09,151.087 1677.06,159.938 \n",
+       "  1680.03,168.702 1683,177.269 1685.97,185.269 1688.96,192.747 1692.1,199.552 1695.07,205.146 1698.04,209.525 1701,212.437 1703.97,213.878 1706.94,213.856 \n",
+       "  1709.95,212.547 1713.08,210.011 1716.05,206.442 1719.02,201.756 1722.18,195.929 1725.35,189.191 1728.33,181.857 1731.49,173.27 1734.66,164.173 1737.79,154.929 \n",
+       "  1740.78,146.011 1743.76,137.314 1746.72,129.205 1749.73,121.481 1752.86,114.214 1756.02,107.874 1758.99,103.153 1762.16,99.864 1765.13,98.2796 1768.28,98.1246 \n",
+       "  1771.22,99.2225 1774.18,101.392 1777.19,104.759 1780.15,109.327 1783.12,114.778 1786.11,121.137 1789.31,128.981 1792.44,137.338 1795.61,146.598 1798.77,156.229 \n",
+       "  1801.74,165.314 1804.9,174.953 1807.9,183.874 1811.04,192.682 1814.01,200.172 1817.17,207.385 1820.34,213.266 1823.31,217.623 1826.28,220.624 1829.45,221.855 \n",
+       "  1832.61,221.158 1835.58,218.954 1838.57,215.539 1841.71,210.907 1844.67,205.37 1847.67,198.731 1850.81,191.064 1853.78,182.832 1856.75,173.967 1859.72,164.737 \n",
+       "  1862.68,155.364 1865.65,145.914 1868.66,136.571 1871.79,127.418 1874.96,118.732 1877.92,111.497 1880.89,105.205 1883.86,100.273 1887.06,96.4412 1890.2,93.957 \n",
+       "  1893.36,92.9711 1896.33,93.5351 1899.3,95.197 1902.47,97.8577 1905.63,101.392 1908.81,106.145 1911.96,112.151 1914.93,118.622 1918.1,126.368 1921.07,133.936 \n",
+       "  1924.04,141.923 1927.24,150.71 1930.36,159.166 1933.34,166.678 1936.51,174.111 1939.64,180.481 1942.62,185.643 1945.61,189.733 1948.77,192.37 1951.94,193.246 \n",
+       "  1954.9,192.571 1957.88,190.599 1961.04,187.086 1964.02,182.81 1967.16,177.291 1970.1,171.031 1973.08,163.761 1976.09,155.596 1979.25,146.267 1982.22,136.86 \n",
+       "  1985.2,127.177 1988.36,116.693 1991.53,106.244 1994.69,96.2087 1997.86,86.7672 2001.02,78.2684 2004.19,70.8547 2007.39,64.9176 2010.52,60.4616 2013.69,57.6373 \n",
+       "  2016.86,56.9614 2020.02,58.2358 2023.19,60.9955 2026.39,64.7368 2029.52,69.3263 2032.69,75.1212 2036.04,82.3004 2039.01,89.303 2041.98,97.0483 2044.95,105.172 \n",
+       "  2048.12,114.168 2051.08,122.71 2054.06,131.198 2057.22,139.86 2060.39,147.974 2063.56,155.241 2066.75,161.357 2069.89,165.89 2072.85,169.059 2075.82,171.175 \n",
+       "  2079.03,171.806 2082.16,170.743 2085.33,168.482 2088.5,165.378 2091.66,161.202 2094.83,155.764 2098,149.259 2101.16,141.979 2104.33,134.001 2107.53,125.558 \n",
+       "  2110.66,116.814 2113.83,107.896 2117,99.1751 2120.15,90.9003 2123.33,83.3961 2126.52,76.7723 2129.65,71.3541 2132.82,67.32 2136.2,64.5818 2139.33,63.4194 \n",
+       "  2142.29,63.5959 2145.29,64.8595 2148.25,67.0315 2151.22,70.3122 2154.39,75.0545 2157.56,80.9937 2160.53,87.2321 2163.68,94.6545 2166.64,102.012 2169.57,109.814 \n",
+       "  2172.56,118.08 2175.56,126.523 2178.53,134.589 2181.49,142.478 2184.47,149.844 2187.47,156.647 2190.61,162.588 2193.77,167.384 2196.94,171.143 2200.11,173.313 \n",
+       "  2203.27,173.588 2206.47,172.105 2209.6,169.292 2212.57,165.8 2215.74,161.18 2218.91,155.42 2222.08,148.669 2225.25,141.137 2228.41,132.881 2231.56,124.163 \n",
+       "  2234.53,115.432 2237.5,106.533 2240.66,97.4271 2243.64,89.1136 2246.64,81.3145 2249.77,73.8684 2252.94,67.531 2255.91,62.6444 2258.88,58.7352 2262.04,56.2854 \n",
+       "  2265.24,55.997 2268.38,57.6588 2271.54,60.8706 2274.71,65.0166 2277.88,70.0367 2281.06,76.2062 2284.2,83.3961 2287.18,91.0316 2290.34,99.9953 2293.31,108.914 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"\n",
+       "M1991.45 178.513 L2282.75 178.513 L2282.75 57.5531 L1991.45 57.5531  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1991.45,178.513 2282.75,178.513 2282.75,57.5531 1991.45,57.5531 1991.45,178.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2014.78,118.033 2154.8,118.033 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M2182.42 131.424 L2182.42 145.174 L2178.14 145.174 L2178.14 109.387 L2182.42 109.387 L2182.42 113.322 Q2183.76 111.008 2185.8 109.897 Q2187.86 108.762 2190.71 108.762 Q2195.43 108.762 2198.37 112.512 Q2201.33 116.262 2201.33 122.373 Q2201.33 128.484 2198.37 132.234 Q2195.43 135.984 2190.71 135.984 Q2187.86 135.984 2185.8 134.873 Q2183.76 133.739 2182.42 131.424 M2196.91 122.373 Q2196.91 117.674 2194.96 115.012 Q2193.04 112.327 2189.66 112.327 Q2186.28 112.327 2184.34 115.012 Q2182.42 117.674 2182.42 122.373 Q2182.42 127.072 2184.34 129.758 Q2186.28 132.42 2189.66 132.42 Q2193.04 132.42 2194.96 129.758 Q2196.91 127.072 2196.91 122.373 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2227.35 119.665 L2227.35 135.313 L2223.09 135.313 L2223.09 119.804 Q2223.09 116.123 2221.65 114.295 Q2220.22 112.466 2217.35 112.466 Q2213.9 112.466 2211.91 114.665 Q2209.92 116.864 2209.92 120.66 L2209.92 135.313 L2205.64 135.313 L2205.64 99.2947 L2209.92 99.2947 L2209.92 113.415 Q2211.45 111.077 2213.51 109.92 Q2215.59 108.762 2218.3 108.762 Q2222.77 108.762 2225.06 111.54 Q2227.35 114.295 2227.35 119.665 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2231.82 109.387 L2236.08 109.387 L2236.08 135.313 L2231.82 135.313 L2231.82 109.387 M2231.82 99.2947 L2236.08 99.2947 L2236.08 104.688 L2231.82 104.688 L2231.82 99.2947 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"\n",
+       "M252.505 889.847 L2352.76 889.847 L2352.76 580.577 L252.505 580.577  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip893\">\n",
+       "    <rect x=\"252\" y=\"580\" width=\"2101\" height=\"310\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  311.946,889.847 311.946,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  806.725,889.847 806.725,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1301.5,889.847 1301.5,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1796.28,889.847 1796.28,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2291.06,889.847 2291.06,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,874.639 2352.76,874.639 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,827.797 2352.76,827.797 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,780.956 2352.76,780.956 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,734.115 2352.76,734.115 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,687.273 2352.76,687.273 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,640.432 2352.76,640.432 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip893)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,593.59 2352.76,593.59 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,889.847 2352.76,889.847 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,889.847 252.505,580.577 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,889.847 311.946,886.135 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  806.725,889.847 806.725,886.135 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1301.5,889.847 1301.5,886.135 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1796.28,889.847 1796.28,886.135 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2291.06,889.847 2291.06,886.135 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,874.639 277.708,874.639 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,827.797 277.708,827.797 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,780.956 277.708,780.956 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,734.115 277.708,734.115 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,687.273 277.708,687.273 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,640.432 277.708,640.432 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,593.59 277.708,593.59 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M293.462 911.837 Q289.851 911.837 288.023 915.402 Q286.217 918.944 286.217 926.073 Q286.217 933.18 288.023 936.744 Q289.851 940.286 293.462 940.286 Q297.097 940.286 298.902 936.744 Q300.731 933.18 300.731 926.073 Q300.731 918.944 298.902 915.402 Q297.097 911.837 293.462 911.837 M293.462 908.134 Q299.273 908.134 302.328 912.74 Q305.407 917.323 305.407 926.073 Q305.407 934.8 302.328 939.406 Q299.273 943.99 293.462 943.99 Q287.652 943.99 284.574 939.406 Q281.518 934.8 281.518 926.073 Q281.518 917.323 284.574 912.74 Q287.652 908.134 293.462 908.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M310.476 937.439 L315.36 937.439 L315.36 943.319 L310.476 943.319 L310.476 937.439 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M330.43 911.837 Q326.819 911.837 324.99 915.402 Q323.184 918.944 323.184 926.073 Q323.184 933.18 324.99 936.744 Q326.819 940.286 330.43 940.286 Q334.064 940.286 335.87 936.744 Q337.698 933.18 337.698 926.073 Q337.698 918.944 335.87 915.402 Q334.064 911.837 330.43 911.837 M330.43 908.134 Q336.24 908.134 339.295 912.74 Q342.374 917.323 342.374 926.073 Q342.374 934.8 339.295 939.406 Q336.24 943.99 330.43 943.99 Q324.62 943.99 321.541 939.406 Q318.485 934.8 318.485 926.073 Q318.485 917.323 321.541 912.74 Q324.62 908.134 330.43 908.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M783.392 939.383 L799.711 939.383 L799.711 943.319 L777.767 943.319 L777.767 939.383 Q780.429 936.629 785.012 931.999 Q789.619 927.346 790.799 926.004 Q793.045 923.481 793.924 921.745 Q794.827 919.985 794.827 918.295 Q794.827 915.541 792.883 913.805 Q790.961 912.069 787.859 912.069 Q785.66 912.069 783.207 912.833 Q780.776 913.596 777.998 915.147 L777.998 910.425 Q780.822 909.291 783.276 908.712 Q785.73 908.134 787.767 908.134 Q793.137 908.134 796.332 910.819 Q799.526 913.504 799.526 917.995 Q799.526 920.124 798.716 922.045 Q797.929 923.944 795.822 926.536 Q795.244 927.207 792.142 930.425 Q789.04 933.619 783.392 939.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M804.781 937.439 L809.665 937.439 L809.665 943.319 L804.781 943.319 L804.781 937.439 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M814.781 908.759 L833.137 908.759 L833.137 912.694 L819.063 912.694 L819.063 921.166 Q820.081 920.819 821.1 920.657 Q822.118 920.471 823.137 920.471 Q828.924 920.471 832.304 923.643 Q835.683 926.814 835.683 932.231 Q835.683 937.809 832.211 940.911 Q828.739 943.99 822.419 943.99 Q820.243 943.99 817.975 943.619 Q815.73 943.249 813.322 942.508 L813.322 937.809 Q815.406 938.944 817.628 939.499 Q819.85 940.055 822.327 940.055 Q826.331 940.055 828.669 937.948 Q831.007 935.842 831.007 932.231 Q831.007 928.62 828.669 926.513 Q826.331 924.407 822.327 924.407 Q820.452 924.407 818.577 924.823 Q816.725 925.24 814.781 926.12 L814.781 908.759 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1273.3 908.759 L1291.65 908.759 L1291.65 912.694 L1277.58 912.694 L1277.58 921.166 Q1278.6 920.819 1279.62 920.657 Q1280.64 920.471 1281.65 920.471 Q1287.44 920.471 1290.82 923.643 Q1294.2 926.814 1294.2 932.231 Q1294.2 937.809 1290.73 940.911 Q1287.26 943.99 1280.94 943.99 Q1278.76 943.99 1276.49 943.619 Q1274.25 943.249 1271.84 942.508 L1271.84 937.809 Q1273.92 938.944 1276.15 939.499 Q1278.37 940.055 1280.84 940.055 Q1284.85 940.055 1287.19 937.948 Q1289.52 935.842 1289.52 932.231 Q1289.52 928.62 1287.19 926.513 Q1284.85 924.407 1280.84 924.407 Q1278.97 924.407 1277.09 924.823 Q1275.24 925.24 1273.3 926.12 L1273.3 908.759 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1299.27 937.439 L1304.15 937.439 L1304.15 943.319 L1299.27 943.319 L1299.27 937.439 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1319.22 911.837 Q1315.61 911.837 1313.78 915.402 Q1311.98 918.944 1311.98 926.073 Q1311.98 933.18 1313.78 936.744 Q1315.61 940.286 1319.22 940.286 Q1322.86 940.286 1324.66 936.744 Q1326.49 933.18 1326.49 926.073 Q1326.49 918.944 1324.66 915.402 Q1322.86 911.837 1319.22 911.837 M1319.22 908.134 Q1325.03 908.134 1328.09 912.74 Q1331.17 917.323 1331.17 926.073 Q1331.17 934.8 1328.09 939.406 Q1325.03 943.99 1319.22 943.99 Q1313.41 943.99 1310.33 939.406 Q1307.28 934.8 1307.28 926.073 Q1307.28 917.323 1310.33 912.74 Q1313.41 908.134 1319.22 908.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1767.19 908.759 L1789.41 908.759 L1789.41 910.749 L1776.86 943.319 L1771.98 943.319 L1783.78 912.694 L1767.19 912.694 L1767.19 908.759 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1794.48 937.439 L1799.36 937.439 L1799.36 943.319 L1794.48 943.319 L1794.48 937.439 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1804.48 908.759 L1822.83 908.759 L1822.83 912.694 L1808.76 912.694 L1808.76 921.166 Q1809.78 920.819 1810.8 920.657 Q1811.82 920.471 1812.83 920.471 Q1818.62 920.471 1822 923.643 Q1825.38 926.814 1825.38 932.231 Q1825.38 937.809 1821.91 940.911 Q1818.44 943.99 1812.12 943.99 Q1809.94 943.99 1807.67 943.619 Q1805.43 943.249 1803.02 942.508 L1803.02 937.809 Q1805.1 938.944 1807.32 939.499 Q1809.55 940.055 1812.02 940.055 Q1816.03 940.055 1818.37 937.948 Q1820.7 935.842 1820.7 932.231 Q1820.7 928.62 1818.37 926.513 Q1816.03 924.407 1812.02 924.407 Q1810.15 924.407 1808.27 924.823 Q1806.42 925.24 1804.48 926.12 L1804.48 908.759 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2249.45 939.383 L2257.09 939.383 L2257.09 913.018 L2248.78 914.684 L2248.78 910.425 L2257.05 908.759 L2261.72 908.759 L2261.72 939.383 L2269.36 939.383 L2269.36 943.319 L2249.45 943.319 L2249.45 939.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2284.43 911.837 Q2280.82 911.837 2278.99 915.402 Q2277.18 918.944 2277.18 926.073 Q2277.18 933.18 2278.99 936.744 Q2280.82 940.286 2284.43 940.286 Q2288.06 940.286 2289.87 936.744 Q2291.7 933.18 2291.7 926.073 Q2291.7 918.944 2289.87 915.402 Q2288.06 911.837 2284.43 911.837 M2284.43 908.134 Q2290.24 908.134 2293.3 912.74 Q2296.37 917.323 2296.37 926.073 Q2296.37 934.8 2293.3 939.406 Q2290.24 943.99 2284.43 943.99 Q2278.62 943.99 2275.54 939.406 Q2272.49 934.8 2272.49 926.073 Q2272.49 917.323 2275.54 912.74 Q2278.62 908.134 2284.43 908.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2301.44 937.439 L2306.33 937.439 L2306.33 943.319 L2301.44 943.319 L2301.44 937.439 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2321.4 911.837 Q2317.79 911.837 2315.96 915.402 Q2314.15 918.944 2314.15 926.073 Q2314.15 933.18 2315.96 936.744 Q2317.79 940.286 2321.4 940.286 Q2325.03 940.286 2326.84 936.744 Q2328.67 933.18 2328.67 926.073 Q2328.67 918.944 2326.84 915.402 Q2325.03 911.837 2321.4 911.837 M2321.4 908.134 Q2327.21 908.134 2330.26 912.74 Q2333.34 917.323 2333.34 926.073 Q2333.34 934.8 2330.26 939.406 Q2327.21 943.99 2321.4 943.99 Q2315.59 943.99 2312.51 939.406 Q2309.45 934.8 2309.45 926.073 Q2309.45 917.323 2312.51 912.74 Q2315.59 908.134 2321.4 908.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M189.663 877.035 L202.139 877.035 L202.139 880.831 L189.663 880.831 L189.663 877.035 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M221.375 873.285 Q224.732 874.002 226.607 876.271 Q228.505 878.539 228.505 881.873 Q228.505 886.988 224.986 889.789 Q221.468 892.59 214.987 892.59 Q212.811 892.59 210.496 892.15 Q208.204 891.734 205.75 890.877 L205.75 886.363 Q207.695 887.498 210.01 888.076 Q212.325 888.655 214.848 888.655 Q219.246 888.655 221.537 886.919 Q223.852 885.183 223.852 881.873 Q223.852 878.817 221.699 877.104 Q219.57 875.368 215.75 875.368 L211.723 875.368 L211.723 871.525 L215.936 871.525 Q219.385 871.525 221.213 870.16 Q223.042 868.771 223.042 866.178 Q223.042 863.516 221.144 862.104 Q219.269 860.669 215.75 860.669 Q213.829 860.669 211.63 861.086 Q209.431 861.502 206.792 862.382 L206.792 858.215 Q209.454 857.475 211.769 857.104 Q214.107 856.734 216.167 856.734 Q221.491 856.734 224.593 859.164 Q227.695 861.572 227.695 865.692 Q227.695 868.563 226.051 870.553 Q224.408 872.521 221.375 873.285 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M190.612 830.193 L203.088 830.193 L203.088 833.99 L190.612 833.99 L190.612 830.193 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M212.186 841.142 L228.505 841.142 L228.505 845.077 L206.561 845.077 L206.561 841.142 Q209.223 838.388 213.806 833.758 Q218.412 829.105 219.593 827.763 Q221.838 825.24 222.718 823.503 Q223.621 821.744 223.621 820.054 Q223.621 817.3 221.676 815.564 Q219.755 813.828 216.653 813.828 Q214.454 813.828 212 814.592 Q209.57 815.355 206.792 816.906 L206.792 812.184 Q209.616 811.05 212.07 810.471 Q214.524 809.892 216.561 809.892 Q221.931 809.892 225.125 812.578 Q228.32 815.263 228.32 819.754 Q228.32 821.883 227.51 823.804 Q226.723 825.703 224.616 828.295 Q224.037 828.966 220.936 832.184 Q217.834 835.378 212.186 841.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M190.241 783.352 L202.718 783.352 L202.718 787.148 L190.241 787.148 L190.241 783.352 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M208.598 794.301 L216.237 794.301 L216.237 767.935 L207.926 769.602 L207.926 765.343 L216.19 763.676 L220.866 763.676 L220.866 794.301 L228.505 794.301 L228.505 798.236 L208.598 798.236 L208.598 794.301 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M216.561 719.913 Q212.95 719.913 211.121 723.478 Q209.315 727.02 209.315 734.149 Q209.315 741.256 211.121 744.821 Q212.95 748.362 216.561 748.362 Q220.195 748.362 222 744.821 Q223.829 741.256 223.829 734.149 Q223.829 727.02 222 723.478 Q220.195 719.913 216.561 719.913 M216.561 716.21 Q222.371 716.21 225.426 720.816 Q228.505 725.399 228.505 734.149 Q228.505 742.876 225.426 747.483 Q222.371 752.066 216.561 752.066 Q210.75 752.066 207.672 747.483 Q204.616 742.876 204.616 734.149 Q204.616 725.399 207.672 720.816 Q210.75 716.21 216.561 716.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M208.598 700.618 L216.237 700.618 L216.237 674.252 L207.926 675.919 L207.926 671.66 L216.19 669.993 L220.866 669.993 L220.866 700.618 L228.505 700.618 L228.505 704.553 L208.598 704.553 L208.598 700.618 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M212.186 653.777 L228.505 653.777 L228.505 657.712 L206.561 657.712 L206.561 653.777 Q209.223 651.022 213.806 646.392 Q218.412 641.74 219.593 640.397 Q221.838 637.874 222.718 636.138 Q223.621 634.378 223.621 632.689 Q223.621 629.934 221.676 628.198 Q219.755 626.462 216.653 626.462 Q214.454 626.462 212 627.226 Q209.57 627.99 206.792 629.541 L206.792 624.818 Q209.616 623.684 212.07 623.105 Q214.524 622.527 216.561 622.527 Q221.931 622.527 225.125 625.212 Q228.32 627.897 228.32 632.388 Q228.32 634.517 227.51 636.439 Q226.723 638.337 224.616 640.929 Q224.037 641.601 220.936 644.818 Q217.834 648.013 212.186 653.777 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M221.375 592.236 Q224.732 592.954 226.607 595.222 Q228.505 597.491 228.505 600.824 Q228.505 605.94 224.986 608.741 Q221.468 611.542 214.987 611.542 Q212.811 611.542 210.496 611.102 Q208.204 610.685 205.75 609.829 L205.75 605.315 Q207.695 606.449 210.01 607.028 Q212.325 607.606 214.848 607.606 Q219.246 607.606 221.537 605.87 Q223.852 604.134 223.852 600.824 Q223.852 597.768 221.699 596.055 Q219.57 594.319 215.75 594.319 L211.723 594.319 L211.723 590.477 L215.936 590.477 Q219.385 590.477 221.213 589.111 Q223.042 587.722 223.042 585.13 Q223.042 582.468 221.144 581.056 Q219.269 579.62 215.75 579.62 Q213.829 579.62 211.63 580.037 Q209.431 580.454 206.792 581.333 L206.792 577.167 Q209.454 576.426 211.769 576.056 Q214.107 575.685 216.167 575.685 Q221.491 575.685 224.593 578.116 Q227.695 580.523 227.695 584.644 Q227.695 587.514 226.051 589.505 Q224.408 591.472 221.375 592.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1185.02 975.191 L1225.22 975.191 L1225.22 980.601 L1208.35 980.601 L1208.35 1022.71 L1201.89 1022.71 L1201.89 980.601 L1185.02 980.601 L1185.02 975.191 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1229.36 987.063 L1235.22 987.063 L1235.22 1022.71 L1229.36 1022.71 L1229.36 987.063 M1229.36 973.185 L1235.22 973.185 L1235.22 980.601 L1229.36 980.601 L1229.36 973.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1269.11 993.906 Q1271.31 989.959 1274.37 988.081 Q1277.42 986.203 1281.56 986.203 Q1287.13 986.203 1290.15 990.118 Q1293.18 994.001 1293.18 1001.19 L1293.18 1022.71 L1287.29 1022.71 L1287.29 1001.39 Q1287.29 996.261 1285.47 993.778 Q1283.66 991.296 1279.94 991.296 Q1275.39 991.296 1272.74 994.319 Q1270.1 997.343 1270.1 1002.56 L1270.1 1022.71 L1264.21 1022.71 L1264.21 1001.39 Q1264.21 996.229 1262.4 993.778 Q1260.58 991.296 1256.8 991.296 Q1252.31 991.296 1249.67 994.351 Q1247.03 997.375 1247.03 1002.56 L1247.03 1022.71 L1241.14 1022.71 L1241.14 987.063 L1247.03 987.063 L1247.03 992.601 Q1249.03 989.322 1251.83 987.763 Q1254.63 986.203 1258.48 986.203 Q1262.37 986.203 1265.07 988.177 Q1267.81 990.15 1269.11 993.906 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1329.81 1003.42 L1329.81 1006.29 L1302.89 1006.29 Q1303.27 1012.33 1306.51 1015.52 Q1309.79 1018.67 1315.62 1018.67 Q1318.99 1018.67 1322.14 1017.84 Q1325.32 1017.01 1328.44 1015.36 L1328.44 1020.9 Q1325.29 1022.23 1321.98 1022.93 Q1318.67 1023.63 1315.27 1023.63 Q1306.74 1023.63 1301.74 1018.67 Q1296.77 1013.7 1296.77 1005.24 Q1296.77 996.484 1301.48 991.359 Q1306.23 986.203 1314.25 986.203 Q1321.44 986.203 1325.61 990.85 Q1329.81 995.465 1329.81 1003.42 M1323.96 1001.7 Q1323.89 996.898 1321.25 994.033 Q1318.64 991.168 1314.31 991.168 Q1309.41 991.168 1306.45 993.938 Q1303.52 996.707 1303.08 1001.74 L1323.96 1001.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1356.13 973.185 L1369.63 973.185 L1369.63 977.737 L1361.99 977.737 L1361.99 1026.75 L1369.63 1026.75 L1369.63 1031.3 L1356.13 1031.3 L1356.13 973.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1398.5 988.113 L1398.5 993.651 Q1396.02 992.378 1393.34 991.741 Q1390.67 991.105 1387.8 991.105 Q1383.44 991.105 1381.25 992.442 Q1379.08 993.778 1379.08 996.452 Q1379.08 998.489 1380.64 999.667 Q1382.2 1000.81 1386.91 1001.86 L1388.92 1002.31 Q1395.16 1003.65 1397.77 1006.1 Q1400.41 1008.51 1400.41 1012.88 Q1400.41 1017.84 1396.46 1020.74 Q1392.55 1023.63 1385.67 1023.63 Q1382.81 1023.63 1379.69 1023.06 Q1376.6 1022.52 1373.16 1021.41 L1373.16 1015.36 Q1376.41 1017.05 1379.56 1017.9 Q1382.71 1018.73 1385.8 1018.73 Q1389.94 1018.73 1392.16 1017.33 Q1394.39 1015.9 1394.39 1013.32 Q1394.39 1010.93 1392.77 1009.66 Q1391.18 1008.39 1385.73 1007.21 L1383.7 1006.73 Q1378.26 1005.59 1375.84 1003.23 Q1373.42 1000.84 1373.42 996.707 Q1373.42 991.678 1376.98 988.94 Q1380.55 986.203 1387.1 986.203 Q1390.35 986.203 1393.21 986.681 Q1396.08 987.158 1398.5 988.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1420.24 973.185 L1420.24 1031.3 L1406.74 1031.3 L1406.74 1026.75 L1414.35 1026.75 L1414.35 977.737 L1406.74 977.737 L1406.74 973.185 L1420.24 973.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M109.17 954.574 L127.026 954.574 L127.026 946.49 Q127.026 942.002 124.702 939.551 Q122.379 937.1 118.082 937.1 Q113.817 937.1 111.494 939.551 Q109.17 942.002 109.17 946.49 L109.17 954.574 M103.887 961.004 L103.887 946.49 Q103.887 938.501 107.515 934.427 Q111.112 930.321 118.082 930.321 Q125.116 930.321 128.713 934.427 Q132.309 938.501 132.309 946.49 L132.309 954.574 L151.407 954.574 L151.407 961.004 L103.887 961.004 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M132.119 896.01 L134.983 896.01 L134.983 922.937 Q141.03 922.555 144.213 919.308 Q147.364 916.03 147.364 910.205 Q147.364 906.831 146.537 903.68 Q145.709 900.498 144.054 897.378 L149.592 897.378 Q150.929 900.529 151.629 903.84 Q152.33 907.15 152.33 910.555 Q152.33 919.085 147.364 924.082 Q142.399 929.048 133.933 929.048 Q125.18 929.048 120.055 924.337 Q114.899 919.595 114.899 911.574 Q114.899 904.381 119.546 900.211 Q124.161 896.01 132.119 896.01 M130.4 901.866 Q125.594 901.93 122.729 904.572 Q119.865 907.182 119.865 911.51 Q119.865 916.412 122.634 919.372 Q125.403 922.3 130.432 922.746 L130.4 901.866 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M129.891 860.234 L151.407 860.234 L151.407 866.091 L130.081 866.091 Q125.021 866.091 122.506 868.064 Q119.992 870.038 119.992 873.984 Q119.992 878.727 123.016 881.464 Q126.039 884.201 131.259 884.201 L151.407 884.201 L151.407 890.09 L115.759 890.09 L115.759 884.201 L121.297 884.201 Q118.082 882.101 116.491 879.268 Q114.899 876.403 114.899 872.679 Q114.899 866.536 118.719 863.385 Q122.506 860.234 129.891 860.234 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M121.169 830.634 L101.881 830.634 L101.881 824.777 L151.407 824.777 L151.407 830.634 L146.059 830.634 Q149.242 832.48 150.802 835.313 Q152.33 838.114 152.33 842.06 Q152.33 848.522 147.173 852.596 Q142.017 856.638 133.614 856.638 Q125.212 856.638 120.055 852.596 Q114.899 848.522 114.899 842.06 Q114.899 838.114 116.459 835.313 Q117.987 832.48 121.169 830.634 M133.614 850.59 Q140.076 850.59 143.768 847.949 Q147.428 845.275 147.428 840.628 Q147.428 835.981 143.768 833.308 Q140.076 830.634 133.614 830.634 Q127.153 830.634 123.493 833.308 Q119.801 835.981 119.801 840.628 Q119.801 845.275 123.493 847.949 Q127.153 850.59 133.614 850.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M137.338 819.239 L115.759 819.239 L115.759 813.383 L137.116 813.383 Q142.176 813.383 144.723 811.409 Q147.237 809.436 147.237 805.489 Q147.237 800.747 144.213 798.01 Q141.19 795.241 135.97 795.241 L115.759 795.241 L115.759 789.384 L151.407 789.384 L151.407 795.241 L145.932 795.241 Q149.179 797.373 150.77 800.206 Q152.33 803.007 152.33 806.731 Q152.33 812.874 148.51 816.056 Q144.691 819.239 137.338 819.239 M114.899 804.503 L114.899 804.503 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M101.881 783.241 L101.881 777.385 L151.407 777.385 L151.407 783.241 L101.881 783.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M137.338 771.847 L115.759 771.847 L115.759 765.99 L137.116 765.99 Q142.176 765.99 144.723 764.017 Q147.237 762.043 147.237 758.097 Q147.237 753.354 144.213 750.617 Q141.19 747.848 135.97 747.848 L115.759 747.848 L115.759 741.991 L151.407 741.991 L151.407 747.848 L145.932 747.848 Q149.179 749.98 150.77 752.813 Q152.33 755.614 152.33 759.338 Q152.33 765.481 148.51 768.664 Q144.691 771.847 137.338 771.847 M114.899 757.11 L114.899 757.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M122.602 708.094 Q118.655 705.898 116.777 702.842 Q114.899 699.787 114.899 695.649 Q114.899 690.079 118.814 687.055 Q122.697 684.032 129.891 684.032 L151.407 684.032 L151.407 689.92 L130.081 689.92 Q124.957 689.92 122.474 691.734 Q119.992 693.548 119.992 697.272 Q119.992 701.824 123.016 704.466 Q126.039 707.107 131.259 707.107 L151.407 707.107 L151.407 712.996 L130.081 712.996 Q124.925 712.996 122.474 714.81 Q119.992 716.624 119.992 720.412 Q119.992 724.9 123.047 727.541 Q126.071 730.183 131.259 730.183 L151.407 730.183 L151.407 736.071 L115.759 736.071 L115.759 730.183 L121.297 730.183 Q118.018 728.178 116.459 725.377 Q114.899 722.576 114.899 718.725 Q114.899 714.842 116.873 712.136 Q118.846 709.399 122.602 708.094 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M133.487 640.968 Q133.487 648.065 135.11 650.803 Q136.734 653.54 140.649 653.54 Q143.768 653.54 145.614 651.503 Q147.428 649.434 147.428 645.901 Q147.428 641.031 143.991 638.103 Q140.521 635.143 134.792 635.143 L133.487 635.143 L133.487 640.968 M131.068 629.287 L151.407 629.287 L151.407 635.143 L145.996 635.143 Q149.242 637.148 150.802 640.14 Q152.33 643.132 152.33 647.461 Q152.33 652.935 149.274 656.182 Q146.187 659.396 141.03 659.396 Q135.015 659.396 131.959 655.386 Q128.904 651.344 128.904 643.355 L128.904 635.143 L128.331 635.143 Q124.289 635.143 122.093 637.817 Q119.865 640.458 119.865 645.265 Q119.865 648.32 120.597 651.216 Q121.329 654.113 122.793 656.786 L117.382 656.786 Q116.141 653.572 115.536 650.548 Q114.899 647.524 114.899 644.66 Q114.899 636.925 118.91 633.106 Q122.92 629.287 131.068 629.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M129.891 593.511 L151.407 593.511 L151.407 599.368 L130.081 599.368 Q125.021 599.368 122.506 601.341 Q119.992 603.315 119.992 607.261 Q119.992 612.004 123.016 614.741 Q126.039 617.478 131.259 617.478 L151.407 617.478 L151.407 623.367 L115.759 623.367 L115.759 617.478 L121.297 617.478 Q118.082 615.378 116.491 612.545 Q114.899 609.68 114.899 605.956 Q114.899 599.813 118.719 596.662 Q122.506 593.511 129.891 593.511 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M133.169 563.911 Q126.803 563.911 123.302 566.553 Q119.801 569.163 119.801 573.905 Q119.801 578.616 123.302 581.257 Q126.803 583.867 133.169 583.867 Q139.503 583.867 143.004 581.257 Q146.505 578.616 146.505 573.905 Q146.505 569.163 143.004 566.553 Q139.503 563.911 133.169 563.911 M146.982 558.054 Q156.085 558.054 160.51 562.097 Q164.966 566.139 164.966 574.478 Q164.966 577.565 164.488 580.302 Q164.043 583.04 163.088 585.618 L157.39 585.618 Q158.791 583.04 159.459 580.525 Q160.128 578.011 160.128 575.401 Q160.128 569.64 157.104 566.775 Q154.112 563.911 148.033 563.911 L145.136 563.911 Q148.287 565.725 149.847 568.558 Q151.407 571.391 151.407 575.337 Q151.407 581.894 146.41 585.904 Q141.412 589.915 133.169 589.915 Q124.893 589.915 119.896 585.904 Q114.899 581.894 114.899 575.337 Q114.899 571.391 116.459 568.558 Q118.018 565.725 121.169 563.911 L115.759 563.911 L115.759 558.054 L146.982 558.054 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M101.881 551.911 L101.881 546.055 L151.407 546.055 L151.407 551.911 L101.881 551.911 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M132.119 509.42 L134.983 509.42 L134.983 536.347 Q141.03 535.965 144.213 532.719 Q147.364 529.441 147.364 523.616 Q147.364 520.242 146.537 517.091 Q145.709 513.908 144.054 510.789 L149.592 510.789 Q150.929 513.94 151.629 517.25 Q152.33 520.56 152.33 523.966 Q152.33 532.496 147.364 537.493 Q142.399 542.458 133.933 542.458 Q125.18 542.458 120.055 537.748 Q114.899 533.005 114.899 524.985 Q114.899 517.791 119.546 513.622 Q124.161 509.42 132.119 509.42 M130.4 515.277 Q125.594 515.34 122.729 517.982 Q119.865 520.592 119.865 524.921 Q119.865 529.822 122.634 532.782 Q125.403 535.711 130.432 536.156 L130.4 515.277 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip893)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,734.565 316.137,734.222 319.099,734.44 322.065,734.674 325.041,734.548 328.011,734.239 331.178,733.754 334.16,732.839 337.302,731.816 340.277,730.381 \n",
+       "  343.253,727.865 346.414,724.594 349.381,720.083 352.351,714.428 355.346,708.498 358.467,702.14 361.419,695.513 364.415,688.88 367.377,682.504 370.353,677.044 \n",
+       "  373.326,672.715 376.295,669.822 379.452,668.924 382.395,670.005 385.353,672.95 388.361,677.999 391.332,685.289 394.13,695.078 397.274,709.093 400.448,726.893 \n",
+       "  403.608,747.459 406.775,768.764 409.945,789.423 413.112,808.75 416.275,825.727 419.441,839.181 422.606,847.97 425.576,853.264 428.743,854.705 431.91,852.281 \n",
+       "  434.91,846.386 438.045,836.774 441.206,823.714 444.372,808.773 447.334,791.671 450.309,771.355 453.501,748.735 456.635,725.852 459.603,701.476 462.573,677.387 \n",
+       "  465.542,655.218 468.51,635.531 471.479,617.028 474.675,600.572 477.818,881.094 480.789,867.365 483.947,854.539 486.918,840.33 489.884,823.805 492.877,803.707 \n",
+       "  496.015,783.065 498.989,761.794 501.953,740.689 504.925,720.357 507.889,700.99 510.858,683.528 513.86,667.683 516.994,655.47 519.962,645.195 522.931,636.355 \n",
+       "  525.899,628.487 528.867,621.288 531.837,614.261 535.004,608.28 537.979,602.064 541.145,596.032 544.312,589.33 547.479,875.936 550.641,866.416 553.649,854.957 \n",
+       "  556.778,839.038 559.943,819.277 563.11,798.332 566.078,775.878 569.046,751.142 572.213,726.55 575.191,699.515 578.343,674.654 581.307,651.376 584.242,630.717 \n",
+       "  587.232,612.591 590.222,596.243 593.414,876.239 596.548,863.648 599.528,850.52 602.691,836.648 605.857,822.102 608.822,805.411 611.791,785.547 614.962,764.327 \n",
+       "  618.125,743.943 621.092,723.588 624.061,702.065 627.228,682.899 630.19,665.551 633.198,649.775 636.333,636.503 639.499,625.433 642.468,614.226 645.64,602.676 \n",
+       "  648.8,590.823 651.768,872.002 654.743,855.62 657.905,836.454 661.068,816.063 664.039,792.008 667.206,766.775 670.373,741.804 673.568,717.675 676.702,694.558 \n",
+       "  679.875,672.641 683.039,652.92 686.204,636.338 689.367,623.243 692.569,613.849 695.705,607.273 698.871,603.7 702.041,602.962 705.204,605.318 708.377,611.224 \n",
+       "  711.539,620.585 714.702,632.838 717.865,648.014 721.032,665.905 724.198,686.17 727.362,706.36 730.33,726.012 733.331,745.613 736.456,763.178 739.423,780.532 \n",
+       "  742.388,797.166 745.364,812.238 748.333,825.063 751.304,834.224 754.275,840.027 757.437,841.32 760.407,838.644 763.376,832.605 766.343,823.554 769.314,811.5 \n",
+       "  772.318,796.502 775.44,780.858 778.39,764.202 781.339,747.299 784.326,730.987 787.304,716.675 790.293,703.918 793.289,692.242 796.433,682.687 799.605,674.962 \n",
+       "  802.764,669.233 805.933,665.654 809.099,664.31 812.298,665.333 815.427,668.581 818.601,673.722 821.762,680.583 824.917,688.36 827.888,696.679 830.854,705.302 \n",
+       "  833.826,713.616 836.793,721.272 839.761,728.099 842.727,733.72 845.697,737.745 848.665,740.724 851.666,742.628 854.801,743.022 857.77,742.45 860.741,741.41 \n",
+       "  863.708,740.06 866.677,738.568 869.645,737.133 872.646,736.161 875.78,735.749 878.75,736.001 881.714,737.31 884.682,740.135 887.656,744.029 890.609,749.295 \n",
+       "  893.593,755.619 896.554,762.749 899.524,770.114 902.493,776.941 905.461,782.905 908.433,787.754 911.43,791.345 914.565,793.123 917.533,793.449 920.505,792.46 \n",
+       "  923.472,790.178 926.443,786.799 929.41,782.419 932.406,777.101 935.544,771.463 938.487,765.014 941.47,757.683 944.444,749.278 947.417,739.357 950.386,727.991 \n",
+       "  953.344,715.251 956.293,701.385 959.285,687.553 962.251,674.779 965.227,663.898 968.197,655.218 971.196,648.643 974.324,645.338 977.274,644.834 980.228,647.333 \n",
+       "  983.207,652.811 986.205,661.091 989.171,671.406 992.165,684.071 995.301,696.502 998.273,709.504 1001.24,722.473 1004.21,736.035 1007.18,750.461 1010.15,766.123 \n",
+       "  1013.12,781.916 1016.09,796.771 1019.05,809.922 1022.02,820.804 1024.99,828.98 1027.96,834.532 1030.96,836.991 1034.1,836.722 1037.06,833.452 1040.03,827.042 \n",
+       "  1043,817.607 1045.96,805.537 1048.94,791.51 1051.94,775.34 1055.07,760.182 1058.04,744.984 1061.01,729.443 1063.98,713.238 1066.95,696.982 1069.91,680.943 \n",
+       "  1072.89,666.214 1075.85,653.709 1078.82,643.617 1081.79,636.303 1084.75,631.832 1087.73,630.071 1090.73,631.329 1093.86,635.44 1096.83,642.593 1099.8,652.651 \n",
+       "  1102.76,665.316 1105.73,679.794 1108.7,695.187 1111.7,711.208 1114.84,725.709 1117.81,739.431 1120.77,753.28 1123.74,767.941 1126.71,782.939 1129.68,797.509 \n",
+       "  1132.65,811.575 1135.8,822.153 1138.78,829.912 1141.74,834.492 1144.71,835.767 1147.69,834.046 1150.69,828.854 1153.82,821.347 1156.79,811.323 1159.76,799.104 \n",
+       "  1162.73,785.078 1165.7,770.183 1168.66,755.35 1171.66,740.169 1174.77,726.447 1177.73,712.844 1180.72,699.515 1183.71,686.673 1186.68,674.654 1189.64,664.127 \n",
+       "  1192.62,655.361 1195.94,649.363 1198.95,646.401 1202.11,646.453 1205.08,649.037 1208.05,654.178 1211.05,662.188 1214.18,671.926 1217.15,683.545 1220.12,697.165 \n",
+       "  1223.29,710.099 1226.26,722.764 1229.23,735.297 1232.4,746.493 1235.56,756.299 1238.53,766.557 1241.69,776.581 1244.86,786.193 1248.03,794.455 1251.03,801.786 \n",
+       "  1254.16,806.972 1257.32,809.596 1260.3,809.654 1263.46,806.955 1266.63,802.266 1269.6,795.067 1272.77,786.01 1275.89,776.129 1278.87,765.208 1281.84,753.966 \n",
+       "  1284.83,743.457 1287.79,734.239 1290.79,725.652 1293.94,718.773 1296.9,712.541 1299.87,706.954 1302.84,701.728 1305.81,696.805 1308.78,691.973 1311.78,687.462 \n",
+       "  1314.91,683.654 1317.88,680.835 1320.85,679.022 1323.81,678.336 1326.78,679.182 1329.75,681.355 1332.72,684.877 1335.68,689.549 1338.66,695.387 1341.63,701.98 \n",
+       "  1344.6,709.001 1347.57,715.52 1350.57,721.684 1353.7,726.927 1356.87,730.684 1359.84,734.222 1363,737.184 1366.17,739.666 1369.14,742.468 1372.41,745.698 \n",
+       "  1375.43,749.363 1378.39,753.623 1381.38,758.741 1384.35,764.653 1387.34,770.4 1390.34,776.255 1393.48,781.27 1396.65,785.003 1399.61,787.251 1402.58,787.988 \n",
+       "  1405.75,786.948 1408.92,784.7 1411.89,781.321 1415.05,777.101 1418.22,772.773 1421.19,768.261 1424.16,763.47 1427.32,758.867 1430.52,754.447 1433.65,749.941 \n",
+       "  1436.62,745.144 1439.59,739.197 1442.76,732.159 1445.92,723.479 1449.09,713.17 1452.26,702.391 1455.43,691.939 1458.59,682.596 1461.76,674.98 1464.92,669.41 \n",
+       "  1468.09,665.979 1471.29,664.773 1474.42,665.728 1477.39,668.816 1480.56,673.882 1483.72,679.92 1486.69,686.799 1489.66,694.666 1492.82,702.786 1495.99,710.545 \n",
+       "  1498.96,719.168 1502.12,728.099 1505.09,739.071 1508.26,750.336 1511.26,763.321 1514.39,776.672 1517.56,788.6 1520.53,799.756 1523.7,808.773 1526.86,814.84 \n",
+       "  1529.86,818.648 1533,819.191 1536.15,816.978 1539.12,812.095 1542.08,804.69 1545.06,795.404 1548,784.752 1551.03,772.738 1554.16,761.383 1557.12,750.01 \n",
+       "  1560.09,738.248 1563.07,725.921 1566.04,711.712 1569.23,697.217 1572.33,683.494 1575.31,670.828 1578.3,660.159 1581.27,651.805 1584.24,645.984 1587.21,642.553 \n",
+       "  1590.22,641.655 1593.35,643.634 1596.31,648.214 1599.28,655.504 1602.25,665.15 1605.22,676.775 1608.19,689.692 1611.16,704.061 1614.32,717.498 1617.3,730.609 \n",
+       "  1620.26,744.137 1623.23,757.952 1626.2,772.161 1629.2,786.925 1632.34,799.882 1635.3,810.929 1638.27,819.854 1641.24,826.018 1644.21,829.501 1647.17,830.221 \n",
+       "  1650.17,828.208 1653.31,823.502 1656.28,815.846 1659.25,805.863 1662.22,793.769 1665.18,780.515 1668.15,766.752 1671.13,753.423 1674.09,740.638 1677.06,728.116 \n",
+       "  1680.03,715.451 1683,702.466 1685.97,689.297 1688.96,675.912 1692.1,664.647 1695.07,655.504 1698.04,648.894 1701,645.017 1703.97,643.725 1706.94,645.143 \n",
+       "  1709.95,649.437 1713.08,655.939 1716.05,664.739 1719.02,676.289 1722.18,689.566 1725.35,702.734 1728.33,716.275 1731.49,728.923 1734.66,740.832 1737.79,751.702 \n",
+       "  1740.78,762.623 1743.76,773.67 1746.72,784.626 1749.73,795.53 1752.86,804.713 1756.02,811.14 1758.99,815.434 1762.16,816.532 1765.13,814.84 1768.28,810.82 \n",
+       "  1771.22,804.37 1774.18,795.999 1777.19,785.941 1780.15,774.928 1783.12,763.47 1786.11,751.536 1789.31,740.581 1792.44,730.484 1795.61,721.232 1798.77,712.952 \n",
+       "  1801.74,703.775 1804.9,695.33 1807.9,686.17 1811.04,678.284 1814.01,670.885 1817.17,665.35 1820.34,662.263 1823.31,661.308 1826.28,662.566 1829.45,666.248 \n",
+       "  1832.61,671.675 1835.58,678.839 1838.57,687.896 1841.71,697.525 1844.67,707.08 1847.67,716.944 1850.81,725.566 1853.78,732.931 1856.75,739.574 1859.72,745.755 \n",
+       "  1862.68,751.971 1865.65,758.312 1868.66,765.694 1871.79,773.528 1874.96,780.835 1877.92,787.828 1880.89,793.952 1883.86,798.801 1887.06,801.66 1890.2,802.214 \n",
+       "  1893.36,800.688 1896.33,797.148 1899.3,791.385 1902.47,783.711 1905.63,774.803 1908.81,765.299 1911.96,756.585 1914.93,747.82 1918.1,740.346 1921.07,733.217 \n",
+       "  1924.04,726.229 1927.24,719.385 1930.36,712.844 1933.34,705.353 1936.51,697.863 1939.64,690.875 1942.62,684.466 1945.61,678.788 1948.77,674.636 1951.94,672.286 \n",
+       "  1954.9,671.692 1957.88,672.915 1961.04,675.826 1964.02,680.617 1967.16,686.244 1970.1,692.545 1973.08,699.138 1976.09,705.679 1979.25,711.123 1982.22,715.543 \n",
+       "  1985.2,719.562 1988.36,722.833 1991.53,725.852 1994.69,729.266 1997.86,733.142 2001.02,738.334 2004.19,744.858 2007.39,752.851 2010.52,761.743 2013.69,771.189 \n",
+       "  2016.86,780.801 2020.02,789.498 2023.19,796.571 2026.39,801.586 2029.52,804.227 2032.69,804.462 2036.04,802.323 2039.01,798.315 2041.98,792.82 2044.95,785.547 \n",
+       "  2048.12,777.948 2051.08,769.954 2054.06,761.114 2057.22,751.879 2060.39,741.947 2063.56,730.97 2066.75,718.522 2069.89,705.856 2072.85,693.14 2075.82,680.583 \n",
+       "  2079.03,669.57 2082.16,660.713 2085.33,654.429 2088.5,650.798 2091.66,650.044 2094.83,652.256 2098,657.305 2101.16,665.007 2104.33,674.962 2107.53,686.495 \n",
+       "  2110.66,698.675 2113.83,711.048 2117,723.622 2120.15,736.578 2123.33,750.461 2126.52,764.996 2129.65,779.651 2132.82,793.643 2136.2,806.469 2139.33,815.509 \n",
+       "  2142.29,822.136 2145.29,826.213 2148.25,827.562 2151.22,825.818 2154.39,820.952 2157.56,813.462 2160.53,802.935 2163.68,791.293 2166.64,778.325 2169.57,765.031 \n",
+       "  2172.56,751.828 2175.56,738.985 2178.53,725.852 2181.49,712.449 2184.47,698.709 2187.47,684.197 2190.61,670.702 2193.77,659.295 2196.94,650.53 2200.11,644.817 \n",
+       "  2203.27,642.158 2206.47,642.644 2209.6,645.732 2212.57,651.696 2215.74,660.41 2218.91,671.6 2222.08,684.643 2225.25,698.566 2228.41,712.524 2231.56,724.92 \n",
+       "  2234.53,736.721 2237.5,748.952 2240.66,760.897 2243.64,772.933 2246.64,785.741 2249.77,797.617 2252.94,807.172 2255.91,814.411 2258.88,819.403 2262.04,821.204 \n",
+       "  2265.24,819.637 2268.38,815.006 2271.54,807.601 2274.71,797.777 2277.88,785.993 2281.06,773.31 2284.2,761.314 2287.18,749.203 2290.34,738.802 2293.31,728.419 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"\n",
+       "M1938.35 711.846 L2282.75 711.846 L2282.75 590.886 L1938.35 590.886  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1938.35,711.846 2282.75,711.846 2282.75,590.886 1938.35,590.886 1938.35,711.846 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1961.68,651.366 2101.7,651.366 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M2132.44 635.36 L2132.44 642.721 L2141.21 642.721 L2141.21 646.031 L2132.44 646.031 L2132.44 660.105 Q2132.44 663.276 2133.3 664.179 Q2134.18 665.082 2136.84 665.082 L2141.21 665.082 L2141.21 668.646 L2136.84 668.646 Q2131.91 668.646 2130.03 666.818 Q2128.16 664.966 2128.16 660.105 L2128.16 646.031 L2125.03 646.031 L2125.03 642.721 L2128.16 642.721 L2128.16 635.36 L2132.44 635.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2167.23 652.998 L2167.23 668.646 L2162.97 668.646 L2162.97 653.137 Q2162.97 649.457 2161.54 647.628 Q2160.1 645.799 2157.23 645.799 Q2153.78 645.799 2151.79 647.998 Q2149.8 650.197 2149.8 653.994 L2149.8 668.646 L2145.52 668.646 L2145.52 632.628 L2149.8 632.628 L2149.8 646.748 Q2151.33 644.41 2153.39 643.253 Q2155.47 642.096 2158.18 642.096 Q2162.65 642.096 2164.94 644.873 Q2167.23 647.628 2167.23 652.998 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2193.88 654.619 L2193.88 656.702 L2174.29 656.702 Q2174.57 661.1 2176.93 663.415 Q2179.32 665.707 2183.55 665.707 Q2186.01 665.707 2188.3 665.105 Q2190.61 664.503 2192.88 663.299 L2192.88 667.327 Q2190.59 668.299 2188.18 668.808 Q2185.77 669.318 2183.3 669.318 Q2177.09 669.318 2173.46 665.707 Q2169.85 662.096 2169.85 655.938 Q2169.85 649.572 2173.27 645.846 Q2176.72 642.096 2182.56 642.096 Q2187.79 642.096 2190.82 645.475 Q2193.88 648.832 2193.88 654.619 M2189.62 653.369 Q2189.57 649.873 2187.65 647.79 Q2185.75 645.707 2182.6 645.707 Q2179.04 645.707 2176.89 647.721 Q2174.76 649.734 2174.43 653.392 L2189.62 653.369 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2202.56 635.36 L2202.56 642.721 L2211.33 642.721 L2211.33 646.031 L2202.56 646.031 L2202.56 660.105 Q2202.56 663.276 2203.41 664.179 Q2204.29 665.082 2206.96 665.082 L2211.33 665.082 L2211.33 668.646 L2206.96 668.646 Q2202.02 668.646 2200.15 666.818 Q2198.27 664.966 2198.27 660.105 L2198.27 646.031 L2195.15 646.031 L2195.15 642.721 L2198.27 642.721 L2198.27 635.36 L2202.56 635.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2227.58 655.614 Q2222.42 655.614 2220.43 656.795 Q2218.44 657.975 2218.44 660.822 Q2218.44 663.091 2219.92 664.433 Q2221.42 665.753 2223.99 665.753 Q2227.53 665.753 2229.66 663.253 Q2231.82 660.73 2231.82 656.563 L2231.82 655.614 L2227.58 655.614 M2236.08 653.855 L2236.08 668.646 L2231.82 668.646 L2231.82 664.711 Q2230.36 667.072 2228.18 668.207 Q2226.01 669.318 2222.86 669.318 Q2218.88 669.318 2216.52 667.095 Q2214.18 664.85 2214.18 661.1 Q2214.18 656.725 2217.09 654.503 Q2220.03 652.281 2225.84 652.281 L2231.82 652.281 L2231.82 651.864 Q2231.82 648.924 2229.87 647.327 Q2227.95 645.707 2224.45 645.707 Q2222.23 645.707 2220.13 646.239 Q2218.02 646.772 2216.08 647.836 L2216.08 643.901 Q2218.41 642.998 2220.61 642.559 Q2222.81 642.096 2224.89 642.096 Q2230.52 642.096 2233.3 645.012 Q2236.08 647.929 2236.08 653.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"\n",
+       "M252.505 1423.18 L2352.76 1423.18 L2352.76 1113.91 L252.505 1113.91  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip894\">\n",
+       "    <rect x=\"252\" y=\"1113\" width=\"2101\" height=\"310\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  311.946,1423.18 311.946,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  806.725,1423.18 806.725,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1301.5,1423.18 1301.5,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1796.28,1423.18 1796.28,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2291.06,1423.18 2291.06,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,1385.25 2352.76,1385.25 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,1326.9 2352.76,1326.9 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,1268.54 2352.76,1268.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,1210.19 2352.76,1210.19 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip894)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  252.505,1151.83 2352.76,1151.83 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1423.18 2352.76,1423.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1423.18 252.505,1113.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,1423.18 311.946,1419.47 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  806.725,1423.18 806.725,1419.47 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1301.5,1423.18 1301.5,1419.47 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1796.28,1423.18 1796.28,1419.47 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2291.06,1423.18 2291.06,1419.47 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1385.25 277.708,1385.25 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1326.9 277.708,1326.9 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1268.54 277.708,1268.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1210.19 277.708,1210.19 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  252.505,1151.83 277.708,1151.83 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M293.462 1445.17 Q289.851 1445.17 288.023 1448.74 Q286.217 1452.28 286.217 1459.41 Q286.217 1466.51 288.023 1470.08 Q289.851 1473.62 293.462 1473.62 Q297.097 1473.62 298.902 1470.08 Q300.731 1466.51 300.731 1459.41 Q300.731 1452.28 298.902 1448.74 Q297.097 1445.17 293.462 1445.17 M293.462 1441.47 Q299.273 1441.47 302.328 1446.07 Q305.407 1450.66 305.407 1459.41 Q305.407 1468.13 302.328 1472.74 Q299.273 1477.32 293.462 1477.32 Q287.652 1477.32 284.574 1472.74 Q281.518 1468.13 281.518 1459.41 Q281.518 1450.66 284.574 1446.07 Q287.652 1441.47 293.462 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M310.476 1470.77 L315.36 1470.77 L315.36 1476.65 L310.476 1476.65 L310.476 1470.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M330.43 1445.17 Q326.819 1445.17 324.99 1448.74 Q323.184 1452.28 323.184 1459.41 Q323.184 1466.51 324.99 1470.08 Q326.819 1473.62 330.43 1473.62 Q334.064 1473.62 335.87 1470.08 Q337.698 1466.51 337.698 1459.41 Q337.698 1452.28 335.87 1448.74 Q334.064 1445.17 330.43 1445.17 M330.43 1441.47 Q336.24 1441.47 339.295 1446.07 Q342.374 1450.66 342.374 1459.41 Q342.374 1468.13 339.295 1472.74 Q336.24 1477.32 330.43 1477.32 Q324.62 1477.32 321.541 1472.74 Q318.485 1468.13 318.485 1459.41 Q318.485 1450.66 321.541 1446.07 Q324.62 1441.47 330.43 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M783.392 1472.72 L799.711 1472.72 L799.711 1476.65 L777.767 1476.65 L777.767 1472.72 Q780.429 1469.96 785.012 1465.33 Q789.619 1460.68 790.799 1459.34 Q793.045 1456.81 793.924 1455.08 Q794.827 1453.32 794.827 1451.63 Q794.827 1448.87 792.883 1447.14 Q790.961 1445.4 787.859 1445.4 Q785.66 1445.4 783.207 1446.17 Q780.776 1446.93 777.998 1448.48 L777.998 1443.76 Q780.822 1442.62 783.276 1442.05 Q785.73 1441.47 787.767 1441.47 Q793.137 1441.47 796.332 1444.15 Q799.526 1446.84 799.526 1451.33 Q799.526 1453.46 798.716 1455.38 Q797.929 1457.28 795.822 1459.87 Q795.244 1460.54 792.142 1463.76 Q789.04 1466.95 783.392 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M804.781 1470.77 L809.665 1470.77 L809.665 1476.65 L804.781 1476.65 L804.781 1470.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M814.781 1442.09 L833.137 1442.09 L833.137 1446.03 L819.063 1446.03 L819.063 1454.5 Q820.081 1454.15 821.1 1453.99 Q822.118 1453.8 823.137 1453.8 Q828.924 1453.8 832.304 1456.98 Q835.683 1460.15 835.683 1465.56 Q835.683 1471.14 832.211 1474.24 Q828.739 1477.32 822.419 1477.32 Q820.243 1477.32 817.975 1476.95 Q815.73 1476.58 813.322 1475.84 L813.322 1471.14 Q815.406 1472.28 817.628 1472.83 Q819.85 1473.39 822.327 1473.39 Q826.331 1473.39 828.669 1471.28 Q831.007 1469.18 831.007 1465.56 Q831.007 1461.95 828.669 1459.85 Q826.331 1457.74 822.327 1457.74 Q820.452 1457.74 818.577 1458.16 Q816.725 1458.57 814.781 1459.45 L814.781 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1273.3 1442.09 L1291.65 1442.09 L1291.65 1446.03 L1277.58 1446.03 L1277.58 1454.5 Q1278.6 1454.15 1279.62 1453.99 Q1280.64 1453.8 1281.65 1453.8 Q1287.44 1453.8 1290.82 1456.98 Q1294.2 1460.15 1294.2 1465.56 Q1294.2 1471.14 1290.73 1474.24 Q1287.26 1477.32 1280.94 1477.32 Q1278.76 1477.32 1276.49 1476.95 Q1274.25 1476.58 1271.84 1475.84 L1271.84 1471.14 Q1273.92 1472.28 1276.15 1472.83 Q1278.37 1473.39 1280.84 1473.39 Q1284.85 1473.39 1287.19 1471.28 Q1289.52 1469.18 1289.52 1465.56 Q1289.52 1461.95 1287.19 1459.85 Q1284.85 1457.74 1280.84 1457.74 Q1278.97 1457.74 1277.09 1458.16 Q1275.24 1458.57 1273.3 1459.45 L1273.3 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1299.27 1470.77 L1304.15 1470.77 L1304.15 1476.65 L1299.27 1476.65 L1299.27 1470.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1319.22 1445.17 Q1315.61 1445.17 1313.78 1448.74 Q1311.98 1452.28 1311.98 1459.41 Q1311.98 1466.51 1313.78 1470.08 Q1315.61 1473.62 1319.22 1473.62 Q1322.86 1473.62 1324.66 1470.08 Q1326.49 1466.51 1326.49 1459.41 Q1326.49 1452.28 1324.66 1448.74 Q1322.86 1445.17 1319.22 1445.17 M1319.22 1441.47 Q1325.03 1441.47 1328.09 1446.07 Q1331.17 1450.66 1331.17 1459.41 Q1331.17 1468.13 1328.09 1472.74 Q1325.03 1477.32 1319.22 1477.32 Q1313.41 1477.32 1310.33 1472.74 Q1307.28 1468.13 1307.28 1459.41 Q1307.28 1450.66 1310.33 1446.07 Q1313.41 1441.47 1319.22 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1767.19 1442.09 L1789.41 1442.09 L1789.41 1444.08 L1776.86 1476.65 L1771.98 1476.65 L1783.78 1446.03 L1767.19 1446.03 L1767.19 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1794.48 1470.77 L1799.36 1470.77 L1799.36 1476.65 L1794.48 1476.65 L1794.48 1470.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1804.48 1442.09 L1822.83 1442.09 L1822.83 1446.03 L1808.76 1446.03 L1808.76 1454.5 Q1809.78 1454.15 1810.8 1453.99 Q1811.82 1453.8 1812.83 1453.8 Q1818.62 1453.8 1822 1456.98 Q1825.38 1460.15 1825.38 1465.56 Q1825.38 1471.14 1821.91 1474.24 Q1818.44 1477.32 1812.12 1477.32 Q1809.94 1477.32 1807.67 1476.95 Q1805.43 1476.58 1803.02 1475.84 L1803.02 1471.14 Q1805.1 1472.28 1807.32 1472.83 Q1809.55 1473.39 1812.02 1473.39 Q1816.03 1473.39 1818.37 1471.28 Q1820.7 1469.18 1820.7 1465.56 Q1820.7 1461.95 1818.37 1459.85 Q1816.03 1457.74 1812.02 1457.74 Q1810.15 1457.74 1808.27 1458.16 Q1806.42 1458.57 1804.48 1459.45 L1804.48 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2249.45 1472.72 L2257.09 1472.72 L2257.09 1446.35 L2248.78 1448.02 L2248.78 1443.76 L2257.05 1442.09 L2261.72 1442.09 L2261.72 1472.72 L2269.36 1472.72 L2269.36 1476.65 L2249.45 1476.65 L2249.45 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2284.43 1445.17 Q2280.82 1445.17 2278.99 1448.74 Q2277.18 1452.28 2277.18 1459.41 Q2277.18 1466.51 2278.99 1470.08 Q2280.82 1473.62 2284.43 1473.62 Q2288.06 1473.62 2289.87 1470.08 Q2291.7 1466.51 2291.7 1459.41 Q2291.7 1452.28 2289.87 1448.74 Q2288.06 1445.17 2284.43 1445.17 M2284.43 1441.47 Q2290.24 1441.47 2293.3 1446.07 Q2296.37 1450.66 2296.37 1459.41 Q2296.37 1468.13 2293.3 1472.74 Q2290.24 1477.32 2284.43 1477.32 Q2278.62 1477.32 2275.54 1472.74 Q2272.49 1468.13 2272.49 1459.41 Q2272.49 1450.66 2275.54 1446.07 Q2278.62 1441.47 2284.43 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2301.44 1470.77 L2306.33 1470.77 L2306.33 1476.65 L2301.44 1476.65 L2301.44 1470.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2321.4 1445.17 Q2317.79 1445.17 2315.96 1448.74 Q2314.15 1452.28 2314.15 1459.41 Q2314.15 1466.51 2315.96 1470.08 Q2317.79 1473.62 2321.4 1473.62 Q2325.03 1473.62 2326.84 1470.08 Q2328.67 1466.51 2328.67 1459.41 Q2328.67 1452.28 2326.84 1448.74 Q2325.03 1445.17 2321.4 1445.17 M2321.4 1441.47 Q2327.21 1441.47 2330.26 1446.07 Q2333.34 1450.66 2333.34 1459.41 Q2333.34 1468.13 2330.26 1472.74 Q2327.21 1477.32 2321.4 1477.32 Q2315.59 1477.32 2312.51 1472.74 Q2309.45 1468.13 2309.45 1459.41 Q2309.45 1450.66 2312.51 1446.07 Q2315.59 1441.47 2321.4 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M126.631 1387.65 L139.107 1387.65 L139.107 1391.44 L126.631 1391.44 L126.631 1387.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M154.177 1371.05 Q150.566 1371.05 148.737 1374.62 Q146.931 1378.16 146.931 1385.29 Q146.931 1392.39 148.737 1395.96 Q150.566 1399.5 154.177 1399.5 Q157.811 1399.5 159.616 1395.96 Q161.445 1392.39 161.445 1385.29 Q161.445 1378.16 159.616 1374.62 Q157.811 1371.05 154.177 1371.05 M154.177 1367.35 Q159.987 1367.35 163.042 1371.95 Q166.121 1376.54 166.121 1385.29 Q166.121 1394.01 163.042 1398.62 Q159.987 1403.2 154.177 1403.2 Q148.367 1403.2 145.288 1398.62 Q142.232 1394.01 142.232 1385.29 Q142.232 1376.54 145.288 1371.95 Q148.367 1367.35 154.177 1367.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M171.19 1396.65 L176.075 1396.65 L176.075 1402.53 L171.19 1402.53 L171.19 1396.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M191.144 1371.05 Q187.533 1371.05 185.704 1374.62 Q183.899 1378.16 183.899 1385.29 Q183.899 1392.39 185.704 1395.96 Q187.533 1399.5 191.144 1399.5 Q194.778 1399.5 196.584 1395.96 Q198.413 1392.39 198.413 1385.29 Q198.413 1378.16 196.584 1374.62 Q194.778 1371.05 191.144 1371.05 M191.144 1367.35 Q196.954 1367.35 200.01 1371.95 Q203.088 1376.54 203.088 1385.29 Q203.088 1394.01 200.01 1398.62 Q196.954 1403.2 191.144 1403.2 Q185.334 1403.2 182.255 1398.62 Q179.2 1394.01 179.2 1385.29 Q179.2 1376.54 182.255 1371.95 Q185.334 1367.35 191.144 1367.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M212.186 1398.6 L228.505 1398.6 L228.505 1402.53 L206.561 1402.53 L206.561 1398.6 Q209.223 1395.84 213.806 1391.21 Q218.412 1386.56 219.593 1385.22 Q221.838 1382.69 222.718 1380.96 Q223.621 1379.2 223.621 1377.51 Q223.621 1374.75 221.676 1373.02 Q219.755 1371.28 216.653 1371.28 Q214.454 1371.28 212 1372.05 Q209.57 1372.81 206.792 1374.36 L206.792 1369.64 Q209.616 1368.5 212.07 1367.93 Q214.524 1367.35 216.561 1367.35 Q221.931 1367.35 225.125 1370.03 Q228.32 1372.72 228.32 1377.21 Q228.32 1379.34 227.51 1381.26 Q226.723 1383.16 224.616 1385.75 Q224.037 1386.42 220.936 1389.64 Q217.834 1392.83 212.186 1398.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M126.26 1329.29 L138.737 1329.29 L138.737 1333.09 L126.26 1333.09 L126.26 1329.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M153.806 1312.7 Q150.195 1312.7 148.367 1316.26 Q146.561 1319.8 146.561 1326.93 Q146.561 1334.04 148.367 1337.6 Q150.195 1341.14 153.806 1341.14 Q157.441 1341.14 159.246 1337.6 Q161.075 1334.04 161.075 1326.93 Q161.075 1319.8 159.246 1316.26 Q157.441 1312.7 153.806 1312.7 M153.806 1308.99 Q159.616 1308.99 162.672 1313.6 Q165.751 1318.18 165.751 1326.93 Q165.751 1335.66 162.672 1340.27 Q159.616 1344.85 153.806 1344.85 Q147.996 1344.85 144.917 1340.27 Q141.862 1335.66 141.862 1326.93 Q141.862 1318.18 144.917 1313.6 Q147.996 1308.99 153.806 1308.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M170.82 1338.3 L175.704 1338.3 L175.704 1344.18 L170.82 1344.18 L170.82 1338.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M190.774 1312.7 Q187.163 1312.7 185.334 1316.26 Q183.528 1319.8 183.528 1326.93 Q183.528 1334.04 185.334 1337.6 Q187.163 1341.14 190.774 1341.14 Q194.408 1341.14 196.213 1337.6 Q198.042 1334.04 198.042 1326.93 Q198.042 1319.8 196.213 1316.26 Q194.408 1312.7 190.774 1312.7 M190.774 1308.99 Q196.584 1308.99 199.639 1313.6 Q202.718 1318.18 202.718 1326.93 Q202.718 1335.66 199.639 1340.27 Q196.584 1344.85 190.774 1344.85 Q184.964 1344.85 181.885 1340.27 Q178.829 1335.66 178.829 1326.93 Q178.829 1318.18 181.885 1313.6 Q184.964 1308.99 190.774 1308.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M208.598 1340.24 L216.237 1340.24 L216.237 1313.88 L207.926 1315.54 L207.926 1311.28 L216.19 1309.62 L220.866 1309.62 L220.866 1340.24 L228.505 1340.24 L228.505 1344.18 L208.598 1344.18 L208.598 1340.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M152.579 1254.34 Q148.968 1254.34 147.14 1257.91 Q145.334 1261.45 145.334 1268.58 Q145.334 1275.68 147.14 1279.25 Q148.968 1282.79 152.579 1282.79 Q156.214 1282.79 158.019 1279.25 Q159.848 1275.68 159.848 1268.58 Q159.848 1261.45 158.019 1257.91 Q156.214 1254.34 152.579 1254.34 M152.579 1250.64 Q158.39 1250.64 161.445 1255.24 Q164.524 1259.83 164.524 1268.58 Q164.524 1277.3 161.445 1281.91 Q158.39 1286.49 152.579 1286.49 Q146.769 1286.49 143.691 1281.91 Q140.635 1277.3 140.635 1268.58 Q140.635 1259.83 143.691 1255.24 Q146.769 1250.64 152.579 1250.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M169.593 1279.94 L174.477 1279.94 L174.477 1285.82 L169.593 1285.82 L169.593 1279.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M189.547 1254.34 Q185.936 1254.34 184.107 1257.91 Q182.302 1261.45 182.302 1268.58 Q182.302 1275.68 184.107 1279.25 Q185.936 1282.79 189.547 1282.79 Q193.181 1282.79 194.987 1279.25 Q196.815 1275.68 196.815 1268.58 Q196.815 1261.45 194.987 1257.91 Q193.181 1254.34 189.547 1254.34 M189.547 1250.64 Q195.357 1250.64 198.413 1255.24 Q201.491 1259.83 201.491 1268.58 Q201.491 1277.3 198.413 1281.91 Q195.357 1286.49 189.547 1286.49 Q183.737 1286.49 180.658 1281.91 Q177.602 1277.3 177.602 1268.58 Q177.602 1259.83 180.658 1255.24 Q183.737 1250.64 189.547 1250.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M216.561 1254.34 Q212.95 1254.34 211.121 1257.91 Q209.315 1261.45 209.315 1268.58 Q209.315 1275.68 211.121 1279.25 Q212.95 1282.79 216.561 1282.79 Q220.195 1282.79 222 1279.25 Q223.829 1275.68 223.829 1268.58 Q223.829 1261.45 222 1257.91 Q220.195 1254.34 216.561 1254.34 M216.561 1250.64 Q222.371 1250.64 225.426 1255.24 Q228.505 1259.83 228.505 1268.58 Q228.505 1277.3 225.426 1281.91 Q222.371 1286.49 216.561 1286.49 Q210.75 1286.49 207.672 1281.91 Q204.616 1277.3 204.616 1268.58 Q204.616 1259.83 207.672 1255.24 Q210.75 1250.64 216.561 1250.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M153.806 1195.99 Q150.195 1195.99 148.367 1199.55 Q146.561 1203.09 146.561 1210.22 Q146.561 1217.33 148.367 1220.89 Q150.195 1224.43 153.806 1224.43 Q157.441 1224.43 159.246 1220.89 Q161.075 1217.33 161.075 1210.22 Q161.075 1203.09 159.246 1199.55 Q157.441 1195.99 153.806 1195.99 M153.806 1192.28 Q159.616 1192.28 162.672 1196.89 Q165.751 1201.47 165.751 1210.22 Q165.751 1218.95 162.672 1223.56 Q159.616 1228.14 153.806 1228.14 Q147.996 1228.14 144.917 1223.56 Q141.862 1218.95 141.862 1210.22 Q141.862 1201.47 144.917 1196.89 Q147.996 1192.28 153.806 1192.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M170.82 1221.59 L175.704 1221.59 L175.704 1227.47 L170.82 1227.47 L170.82 1221.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M190.774 1195.99 Q187.163 1195.99 185.334 1199.55 Q183.528 1203.09 183.528 1210.22 Q183.528 1217.33 185.334 1220.89 Q187.163 1224.43 190.774 1224.43 Q194.408 1224.43 196.213 1220.89 Q198.042 1217.33 198.042 1210.22 Q198.042 1203.09 196.213 1199.55 Q194.408 1195.99 190.774 1195.99 M190.774 1192.28 Q196.584 1192.28 199.639 1196.89 Q202.718 1201.47 202.718 1210.22 Q202.718 1218.95 199.639 1223.56 Q196.584 1228.14 190.774 1228.14 Q184.964 1228.14 181.885 1223.56 Q178.829 1218.95 178.829 1210.22 Q178.829 1201.47 181.885 1196.89 Q184.964 1192.28 190.774 1192.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M208.598 1223.53 L216.237 1223.53 L216.237 1197.17 L207.926 1198.83 L207.926 1194.57 L216.19 1192.91 L220.866 1192.91 L220.866 1223.53 L228.505 1223.53 L228.505 1227.47 L208.598 1227.47 L208.598 1223.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M154.177 1137.63 Q150.566 1137.63 148.737 1141.2 Q146.931 1144.74 146.931 1151.87 Q146.931 1158.97 148.737 1162.54 Q150.566 1166.08 154.177 1166.08 Q157.811 1166.08 159.616 1162.54 Q161.445 1158.97 161.445 1151.87 Q161.445 1144.74 159.616 1141.2 Q157.811 1137.63 154.177 1137.63 M154.177 1133.93 Q159.987 1133.93 163.042 1138.53 Q166.121 1143.12 166.121 1151.87 Q166.121 1160.59 163.042 1165.2 Q159.987 1169.78 154.177 1169.78 Q148.367 1169.78 145.288 1165.2 Q142.232 1160.59 142.232 1151.87 Q142.232 1143.12 145.288 1138.53 Q148.367 1133.93 154.177 1133.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M171.19 1163.23 L176.075 1163.23 L176.075 1169.11 L171.19 1169.11 L171.19 1163.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M191.144 1137.63 Q187.533 1137.63 185.704 1141.2 Q183.899 1144.74 183.899 1151.87 Q183.899 1158.97 185.704 1162.54 Q187.533 1166.08 191.144 1166.08 Q194.778 1166.08 196.584 1162.54 Q198.413 1158.97 198.413 1151.87 Q198.413 1144.74 196.584 1141.2 Q194.778 1137.63 191.144 1137.63 M191.144 1133.93 Q196.954 1133.93 200.01 1138.53 Q203.088 1143.12 203.088 1151.87 Q203.088 1160.59 200.01 1165.2 Q196.954 1169.78 191.144 1169.78 Q185.334 1169.78 182.255 1165.2 Q179.2 1160.59 179.2 1151.87 Q179.2 1143.12 182.255 1138.53 Q185.334 1133.93 191.144 1133.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M212.186 1165.18 L228.505 1165.18 L228.505 1169.11 L206.561 1169.11 L206.561 1165.18 Q209.223 1162.42 213.806 1157.79 Q218.412 1153.14 219.593 1151.8 Q221.838 1149.27 222.718 1147.54 Q223.621 1145.78 223.621 1144.09 Q223.621 1141.33 221.676 1139.6 Q219.755 1137.86 216.653 1137.86 Q214.454 1137.86 212 1138.63 Q209.57 1139.39 206.792 1140.94 L206.792 1136.22 Q209.616 1135.08 212.07 1134.51 Q214.524 1133.93 216.561 1133.93 Q221.931 1133.93 225.125 1136.61 Q228.32 1139.3 228.32 1143.79 Q228.32 1145.92 227.51 1147.84 Q226.723 1149.74 224.616 1152.33 Q224.037 1153 220.936 1156.22 Q217.834 1159.41 212.186 1165.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1185.02 1508.52 L1225.22 1508.52 L1225.22 1513.93 L1208.35 1513.93 L1208.35 1556.04 L1201.89 1556.04 L1201.89 1513.93 L1185.02 1513.93 L1185.02 1508.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1229.36 1520.4 L1235.22 1520.4 L1235.22 1556.04 L1229.36 1556.04 L1229.36 1520.4 M1229.36 1506.52 L1235.22 1506.52 L1235.22 1513.93 L1229.36 1513.93 L1229.36 1506.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1269.11 1527.24 Q1271.31 1523.29 1274.37 1521.41 Q1277.42 1519.54 1281.56 1519.54 Q1287.13 1519.54 1290.15 1523.45 Q1293.18 1527.33 1293.18 1534.53 L1293.18 1556.04 L1287.29 1556.04 L1287.29 1534.72 Q1287.29 1529.59 1285.47 1527.11 Q1283.66 1524.63 1279.94 1524.63 Q1275.39 1524.63 1272.74 1527.65 Q1270.1 1530.68 1270.1 1535.9 L1270.1 1556.04 L1264.21 1556.04 L1264.21 1534.72 Q1264.21 1529.56 1262.4 1527.11 Q1260.58 1524.63 1256.8 1524.63 Q1252.31 1524.63 1249.67 1527.68 Q1247.03 1530.71 1247.03 1535.9 L1247.03 1556.04 L1241.14 1556.04 L1241.14 1520.4 L1247.03 1520.4 L1247.03 1525.93 Q1249.03 1522.66 1251.83 1521.1 Q1254.63 1519.54 1258.48 1519.54 Q1262.37 1519.54 1265.07 1521.51 Q1267.81 1523.48 1269.11 1527.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1329.81 1536.76 L1329.81 1539.62 L1302.89 1539.62 Q1303.27 1545.67 1306.51 1548.85 Q1309.79 1552 1315.62 1552 Q1318.99 1552 1322.14 1551.17 Q1325.32 1550.35 1328.44 1548.69 L1328.44 1554.23 Q1325.29 1555.57 1321.98 1556.27 Q1318.67 1556.97 1315.27 1556.97 Q1306.74 1556.97 1301.74 1552 Q1296.77 1547.04 1296.77 1538.57 Q1296.77 1529.82 1301.48 1524.69 Q1306.23 1519.54 1314.25 1519.54 Q1321.44 1519.54 1325.61 1524.18 Q1329.81 1528.8 1329.81 1536.76 M1323.96 1535.04 Q1323.89 1530.23 1321.25 1527.37 Q1318.64 1524.5 1314.31 1524.5 Q1309.41 1524.5 1306.45 1527.27 Q1303.52 1530.04 1303.08 1535.07 L1323.96 1535.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1356.13 1506.52 L1369.63 1506.52 L1369.63 1511.07 L1361.99 1511.07 L1361.99 1560.09 L1369.63 1560.09 L1369.63 1564.64 L1356.13 1564.64 L1356.13 1506.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1398.5 1521.45 L1398.5 1526.98 Q1396.02 1525.71 1393.34 1525.07 Q1390.67 1524.44 1387.8 1524.44 Q1383.44 1524.44 1381.25 1525.77 Q1379.08 1527.11 1379.08 1529.79 Q1379.08 1531.82 1380.64 1533 Q1382.2 1534.15 1386.91 1535.2 L1388.92 1535.64 Q1395.16 1536.98 1397.77 1539.43 Q1400.41 1541.85 1400.41 1546.21 Q1400.41 1551.17 1396.46 1554.07 Q1392.55 1556.97 1385.67 1556.97 Q1382.81 1556.97 1379.69 1556.39 Q1376.6 1555.85 1373.16 1554.74 L1373.16 1548.69 Q1376.41 1550.38 1379.56 1551.24 Q1382.71 1552.07 1385.8 1552.07 Q1389.94 1552.07 1392.16 1550.66 Q1394.39 1549.23 1394.39 1546.65 Q1394.39 1544.27 1392.77 1542.99 Q1391.18 1541.72 1385.73 1540.54 L1383.7 1540.07 Q1378.26 1538.92 1375.84 1536.56 Q1373.42 1534.18 1373.42 1530.04 Q1373.42 1525.01 1376.98 1522.27 Q1380.55 1519.54 1387.1 1519.54 Q1390.35 1519.54 1393.21 1520.01 Q1396.08 1520.49 1398.5 1521.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M1420.24 1506.52 L1420.24 1564.64 L1406.74 1564.64 L1406.74 1560.09 L1414.35 1560.09 L1414.35 1511.07 L1406.74 1511.07 L1406.74 1506.52 L1420.24 1506.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M40.4842 1367.83 L40.4842 1327.63 L45.895 1327.63 L45.895 1344.5 L88.0042 1344.5 L88.0042 1350.97 L45.895 1350.97 L45.895 1367.83 L40.4842 1367.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M56.4621 1318.75 Q56.4621 1323.47 60.1542 1326.2 Q63.8145 1328.94 70.212 1328.94 Q76.6095 1328.94 80.3017 1326.23 Q83.9619 1323.5 83.9619 1318.75 Q83.9619 1314.08 80.2698 1311.34 Q76.5777 1308.6 70.212 1308.6 Q63.8781 1308.6 60.186 1311.34 Q56.4621 1314.08 56.4621 1318.75 M51.4968 1318.75 Q51.4968 1311.12 56.4621 1306.76 Q61.4273 1302.39 70.212 1302.39 Q78.9649 1302.39 83.9619 1306.76 Q88.9272 1311.12 88.9272 1318.75 Q88.9272 1326.43 83.9619 1330.79 Q78.9649 1335.11 70.212 1335.11 Q61.4273 1335.11 56.4621 1330.79 Q51.4968 1326.43 51.4968 1318.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M57.8307 1275.6 Q57.2578 1276.58 57.0032 1277.76 Q56.7167 1278.91 56.7167 1280.31 Q56.7167 1285.27 59.9632 1287.94 Q63.1779 1290.59 69.2253 1290.59 L88.0042 1290.59 L88.0042 1296.47 L52.3562 1296.47 L52.3562 1290.59 L57.8944 1290.59 Q54.6479 1288.74 53.0883 1285.78 Q51.4968 1282.82 51.4968 1278.59 Q51.4968 1277.98 51.5923 1277.25 Q51.656 1276.52 51.8151 1275.63 L57.8307 1275.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M70.212 1267.1 Q76.6732 1267.1 80.3653 1264.46 Q84.0256 1261.78 84.0256 1257.13 Q84.0256 1252.49 80.3653 1249.81 Q76.6732 1247.14 70.212 1247.14 Q63.7508 1247.14 60.0905 1249.81 Q56.3984 1252.49 56.3984 1257.13 Q56.3984 1261.78 60.0905 1264.46 Q63.7508 1267.1 70.212 1267.1 M82.657 1247.14 Q85.8398 1248.99 87.3994 1251.82 Q88.9272 1254.62 88.9272 1258.57 Q88.9272 1265.03 83.771 1269.1 Q78.6147 1273.14 70.212 1273.14 Q61.8093 1273.14 56.6531 1269.1 Q51.4968 1265.03 51.4968 1258.57 Q51.4968 1254.62 53.0564 1251.82 Q54.5842 1248.99 57.7671 1247.14 L52.3562 1247.14 L52.3562 1241.28 L101.563 1241.28 L101.563 1247.14 L82.657 1247.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M73.9359 1235.75 L52.3562 1235.75 L52.3562 1229.89 L73.7131 1229.89 Q78.7739 1229.89 81.3202 1227.92 Q83.8346 1225.94 83.8346 1222 Q83.8346 1217.25 80.8109 1214.52 Q77.7872 1211.75 72.5673 1211.75 L52.3562 1211.75 L52.3562 1205.89 L88.0042 1205.89 L88.0042 1211.75 L82.5296 1211.75 Q85.7762 1213.88 87.3676 1216.71 Q88.9272 1219.51 88.9272 1223.24 Q88.9272 1229.38 85.1078 1232.56 Q81.2883 1235.75 73.9359 1235.75 M51.4968 1221.01 L51.4968 1221.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M68.7161 1169.26 L71.5806 1169.26 L71.5806 1196.18 Q77.6281 1195.8 80.8109 1192.55 Q83.9619 1189.28 83.9619 1183.45 Q83.9619 1180.08 83.1344 1176.93 Q82.3069 1173.74 80.6518 1170.62 L86.1899 1170.62 Q87.5267 1173.78 88.227 1177.09 Q88.9272 1180.4 88.9272 1183.8 Q88.9272 1192.33 83.9619 1197.33 Q78.9967 1202.29 70.5303 1202.29 Q61.7774 1202.29 56.6531 1197.58 Q51.4968 1192.84 51.4968 1184.82 Q51.4968 1177.63 56.1438 1173.46 Q60.7589 1169.26 68.7161 1169.26 M66.9973 1175.11 Q62.1912 1175.18 59.3266 1177.82 Q56.4621 1180.43 56.4621 1184.76 Q56.4621 1189.66 59.2312 1192.62 Q62.0002 1195.55 67.0292 1195.99 L66.9973 1175.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip894)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  311.946,1268.54 316.137,1237.88 319.099,1216.95 322.065,1197.16 325.041,1178.9 328.011,1162.7 331.178,1148.06 334.16,1137.08 337.302,1128.73 340.277,1124.07 \n",
+       "  343.253,1122.66 346.414,1124.78 349.381,1130.09 352.351,1138.52 355.346,1149.99 358.467,1164.81 361.419,1181.21 364.415,1199.82 367.377,1219.78 370.353,1240.93 \n",
+       "  373.326,1262.68 376.295,1284.53 379.452,1307.36 382.395,1327.76 385.353,1346.96 388.361,1364.68 391.332,1380.01 394.13,1392.16 397.274,1402.86 400.448,1410.23 \n",
+       "  403.608,1413.95 406.775,1413.97 409.945,1410.27 413.112,1402.95 416.275,1392.22 419.441,1378.31 422.606,1361.61 425.576,1343.77 428.743,1322.89 431.91,1300.62 \n",
+       "  434.91,1278.76 438.045,1255.68 441.206,1232.73 444.372,1210.66 447.334,1191.34 450.309,1173.67 453.501,1157.11 456.635,1143.65 459.603,1133.79 462.573,1126.95 \n",
+       "  465.542,1123.29 468.51,1122.89 471.479,1125.76 474.675,1132.44 477.818,1142.46 480.789,1154.85 483.947,1170.82 486.918,1188.12 489.884,1207.2 492.877,1227.83 \n",
+       "  496.015,1250.46 498.989,1272.34 501.953,1294.06 504.925,1315.26 507.889,1335.36 510.858,1353.99 513.86,1370.88 516.994,1385.99 519.962,1397.6 522.931,1406.32 \n",
+       "  525.899,1411.94 528.867,1414.34 531.837,1413.47 535.004,1408.95 537.979,1401.43 541.145,1390.15 544.312,1375.75 547.479,1358.61 550.641,1339.21 553.649,1319.07 \n",
+       "  556.778,1296.9 559.943,1273.75 563.11,1250.45 566.078,1229.02 569.046,1208.49 572.213,1188.07 575.191,1170.74 578.343,1154.81 581.307,1142.45 584.242,1132.99 \n",
+       "  587.232,1126.42 590.222,1123.08 593.414,1123.18 596.548,1126.94 599.528,1133.81 602.691,1144.44 605.857,1158.24 608.822,1173.72 611.791,1191.36 614.962,1212.1 \n",
+       "  618.125,1234.22 621.092,1255.79 624.061,1277.65 627.228,1300.73 630.19,1321.59 633.198,1341.55 636.333,1360.56 639.499,1377.42 642.468,1390.71 645.64,1401.87 \n",
+       "  648.8,1409.59 651.768,1413.57 654.743,1414.3 657.905,1411.47 661.068,1405 664.039,1395.75 667.206,1382.74 670.373,1366.81 673.568,1348.2 676.702,1327.94 \n",
+       "  679.875,1305.9 683.039,1282.98 686.204,1259.68 689.367,1236.61 692.569,1214.1 695.705,1193.43 698.871,1174.47 702.041,1157.89 705.204,1144.17 708.377,1133.59 \n",
+       "  711.539,1126.49 714.702,1123.01 717.865,1123.24 721.032,1127.18 724.198,1134.73 727.362,1145.69 730.33,1158.82 733.331,1174.61 736.456,1193.32 739.423,1212.84 \n",
+       "  742.388,1233.59 745.364,1255.2 748.333,1277.06 751.304,1298.75 754.275,1319.75 757.437,1340.83 760.407,1358.97 763.376,1375.06 766.343,1388.76 769.314,1399.76 \n",
+       "  772.318,1407.89 775.44,1412.95 778.39,1414.43 781.339,1412.67 784.326,1407.64 787.304,1399.47 790.293,1388.31 793.289,1374.37 796.433,1357.15 799.605,1337.52 \n",
+       "  802.764,1316.21 805.933,1293.62 809.099,1270.41 812.298,1246.91 815.427,1224.46 818.601,1202.82 821.762,1182.94 824.917,1165.28 827.888,1151.02 830.854,1139.44 \n",
+       "  833.826,1130.72 836.793,1125.13 839.761,1122.74 842.727,1123.63 845.697,1127.77 848.665,1135.07 851.666,1145.5 854.801,1159.41 857.77,1175.1 860.741,1192.9 \n",
+       "  863.708,1212.39 866.677,1233.14 869.645,1254.68 872.646,1276.78 875.78,1299.64 878.75,1320.6 881.714,1340.35 884.682,1358.52 887.656,1374.7 890.609,1388.39 \n",
+       "  893.593,1399.53 896.554,1407.64 899.524,1412.65 902.493,1414.43 905.461,1412.92 908.433,1408.17 911.43,1400.2 914.565,1388.64 917.533,1374.91 920.505,1358.78 \n",
+       "  923.472,1340.65 926.443,1320.87 929.41,1299.95 932.406,1278.1 935.544,1254.99 938.487,1233.62 941.47,1212.75 944.444,1193.2 947.417,1175.36 950.386,1159.63 \n",
+       "  953.344,1146.39 956.293,1135.9 959.285,1128.27 962.251,1123.86 965.227,1122.69 968.197,1124.81 971.196,1130.23 974.324,1139.25 977.274,1150.72 980.228,1164.83 \n",
+       "  983.207,1181.38 986.205,1200.03 989.171,1220.04 992.165,1241.32 995.301,1264.28 998.273,1286.14 1001.24,1307.6 1004.21,1328.16 1007.18,1347.39 1010.15,1364.85 \n",
+       "  1013.12,1380.16 1016.09,1392.93 1019.05,1402.92 1022.02,1409.9 1024.99,1413.7 1027.96,1414.25 1030.96,1411.47 1034.1,1405.07 1037.06,1395.85 1040.03,1383.77 \n",
+       "  1043,1369.11 1045.96,1352.26 1048.94,1333.38 1051.94,1312.92 1055.07,1290.45 1058.04,1268.66 1061.01,1246.85 1063.98,1225.54 1066.95,1205.18 1069.91,1186.26 \n",
+       "  1072.89,1169.15 1075.85,1154.33 1078.82,1142.05 1081.79,1132.61 1084.75,1126.24 1087.73,1123.03 1090.73,1123.12 1093.86,1126.78 1096.83,1133.51 1099.8,1143.29 \n",
+       "  1102.76,1155.86 1105.73,1170.97 1108.7,1188.26 1111.7,1207.59 1114.84,1229.28 1117.81,1250.72 1120.77,1272.55 1123.74,1294.3 1126.71,1315.48 1129.68,1335.59 \n",
+       "  1132.65,1354.23 1135.8,1371.84 1138.78,1386.11 1141.74,1397.69 1144.71,1406.38 1147.69,1411.98 1150.69,1414.36 1153.82,1413.26 1156.79,1408.89 1159.76,1401.37 \n",
+       "  1162.73,1390.86 1165.7,1377.6 1168.66,1361.89 1171.66,1343.94 1174.77,1323.42 1177.73,1302.71 1180.72,1280.98 1183.71,1258.97 1186.68,1237.31 1189.64,1216.37 \n",
+       "  1192.62,1196.52 1195.94,1176.35 1198.95,1160.3 1202.11,1146.12 1205.08,1135.63 1208.05,1128.15 1211.05,1123.77 1214.18,1122.74 1217.15,1125.14 1220.12,1130.76 \n",
+       "  1223.29,1140.15 1226.26,1151.95 1229.23,1166.37 1232.4,1184.29 1235.56,1204.31 1238.53,1224.6 1241.69,1247.33 1244.86,1270.58 1248.03,1293.8 1251.03,1315.21 \n",
+       "  1254.16,1336.44 1257.32,1356.12 1260.3,1372.59 1263.46,1387.55 1266.63,1399.47 1269.6,1407.63 1272.77,1412.86 1275.89,1414.42 1278.87,1412.53 1281.84,1407.4 \n",
+       "  1284.83,1399.08 1287.79,1387.9 1290.79,1373.91 1293.94,1356.59 1296.9,1338.25 1299.87,1318.31 1302.84,1297.25 1305.81,1275.55 1308.78,1253.69 1311.78,1231.94 \n",
+       "  1314.91,1210.16 1317.88,1190.82 1320.85,1173.24 1323.81,1157.82 1326.78,1144.86 1329.75,1134.7 1332.72,1127.51 1335.68,1123.53 1338.66,1122.78 1341.63,1125.31 \n",
+       "  1344.6,1131.07 1347.57,1139.91 1350.57,1151.77 1353.7,1167.03 1356.87,1185.02 1359.84,1203.82 1363,1225.48 1366.17,1248.21 1369.14,1270.08 1372.41,1294 \n",
+       "  1375.43,1315.55 1378.39,1335.65 1381.38,1354.33 1384.35,1371.04 1387.34,1385.5 1390.34,1397.32 1393.48,1406.54 1396.65,1412.31 1399.61,1414.4 1402.58,1413.21 \n",
+       "  1405.75,1408.36 1408.92,1399.93 1411.89,1388.98 1415.05,1374.34 1418.22,1356.98 1421.19,1338.66 1424.16,1318.75 1427.32,1296.29 1430.52,1272.9 1433.65,1249.85 \n",
+       "  1436.62,1228.46 1439.59,1207.93 1442.76,1187.55 1445.92,1169.26 1449.09,1153.51 1452.26,1140.66 1455.43,1131.11 1458.59,1125.07 1461.76,1122.69 1464.92,1124.03 \n",
+       "  1468.09,1129.07 1471.29,1137.77 1474.42,1149.61 1477.39,1163.59 1480.56,1181.09 1483.72,1200.74 1486.69,1220.8 1489.66,1241.97 1492.82,1265.12 1495.99,1288.41 \n",
+       "  1498.96,1309.79 1502.12,1331.54 1505.09,1350.51 1508.26,1368.68 1511.26,1383.56 1514.39,1396.27 1517.56,1405.87 1520.53,1411.69 1523.7,1414.34 1526.86,1413.28 \n",
+       "  1529.86,1408.86 1533,1400.8 1536.15,1389.34 1539.12,1375.78 1542.08,1359.82 1545.06,1341.74 1548,1322.28 1551.03,1300.96 1554.16,1278.15 1557.12,1256.32 \n",
+       "  1560.09,1234.77 1563.07,1213.82 1566.04,1194.19 1569.23,1175.05 1572.33,1158.72 1575.31,1145.55 1578.3,1135.15 1581.27,1127.82 1584.24,1123.65 1587.21,1122.74 \n",
+       "  1590.22,1125.15 1593.35,1131.17 1596.31,1140.06 1599.28,1151.82 1602.25,1166.21 1605.22,1182.91 1608.19,1201.51 1611.16,1221.67 1614.32,1244.24 1617.3,1266.02 \n",
+       "  1620.26,1287.84 1623.23,1309.23 1626.2,1329.7 1629.2,1349.02 1632.34,1367.21 1635.3,1382.14 1638.27,1394.53 1641.24,1404.11 1644.21,1410.65 1647.17,1413.98 \n",
+       "  1650.17,1414.04 1653.31,1410.53 1656.28,1403.94 1659.25,1394.29 1662.22,1381.83 1665.18,1366.82 1668.15,1349.61 1671.13,1330.53 1674.09,1310.13 1677.06,1288.78 \n",
+       "  1680.03,1266.95 1683,1245.18 1685.97,1223.91 1688.96,1203.46 1692.1,1183.68 1695.07,1166.9 1698.04,1152.4 1701,1140.52 1703.97,1131.51 1706.94,1125.57 \n",
+       "  1709.95,1122.82 1713.08,1123.54 1716.05,1127.56 1719.02,1134.75 1722.18,1145.73 1725.35,1159.85 1728.33,1175.64 1731.49,1194.76 1734.66,1215.72 1737.79,1237.83 \n",
+       "  1740.78,1259.62 1743.76,1281.55 1746.72,1303.12 1749.73,1324.14 1752.86,1344.69 1756.02,1363.54 1758.99,1379.03 1762.16,1392.78 1765.13,1402.82 1768.28,1410.16 \n",
+       "  1771.22,1413.79 1774.18,1414.2 1777.19,1411.29 1780.15,1405.21 1783.12,1396.03 1786.11,1383.94 1789.31,1368.05 1792.44,1350 1795.61,1329.68 1798.77,1307.79 \n",
+       "  1801.74,1286.35 1804.9,1263.13 1807.9,1241.14 1811.04,1218.9 1814.01,1198.95 1817.17,1179.41 1820.34,1162.14 1823.31,1148.43 1826.28,1137.4 1829.45,1128.89 \n",
+       "  1832.61,1123.95 1835.58,1122.67 1838.57,1124.7 1841.71,1130.35 1844.67,1138.87 1847.67,1150.46 1850.81,1165.47 1853.78,1182.04 1856.75,1200.56 1859.72,1220.63 \n",
+       "  1862.68,1241.73 1865.65,1263.46 1868.66,1285.57 1871.79,1308.24 1874.96,1330.09 1877.92,1349.13 1880.89,1366.39 1883.86,1381.49 1887.06,1394.88 1890.2,1404.8 \n",
+       "  1893.36,1411.36 1896.33,1414.21 1899.3,1413.78 1902.47,1409.72 1905.63,1402.07 1908.81,1390.97 1911.96,1376.83 1914.93,1360.98 1918.1,1341.83 1921.07,1322.15 \n",
+       "  1924.04,1301.28 1927.24,1277.97 1930.36,1254.99 1933.34,1233.33 1936.51,1211.21 1939.64,1190.77 1942.62,1173.13 1945.61,1157.63 1948.77,1143.95 1951.94,1133.45 \n",
+       "  1954.9,1126.75 1957.88,1123.21 1961.04,1123.04 1964.02,1126.27 1967.16,1133.15 1970.1,1142.68 1973.08,1155.17 1976.09,1170.4 1979.25,1188.82 1982.22,1207.96 \n",
+       "  1985.2,1228.57 1988.36,1251.38 1991.53,1274.69 1994.69,1297.85 1997.86,1320.22 2001.02,1341.29 2004.19,1360.52 2007.39,1377.54 2010.52,1391.47 2013.69,1402.4 \n",
+       "  2016.86,1409.94 2020.02,1413.85 2023.19,1414.06 2026.39,1410.5 2029.52,1403.42 2032.69,1392.83 2036.04,1378.18 2039.01,1362.53 2041.98,1344.8 2044.95,1325.36 \n",
+       "  2048.12,1303.22 2051.08,1281.68 2054.06,1259.78 2057.22,1236.68 2060.39,1214.4 2063.56,1193.52 2066.75,1174.4 2069.89,1157.99 2072.85,1145.01 2075.82,1134.8 \n",
+       "  2079.03,1127.15 2082.16,1123.25 2085.33,1123.01 2088.5,1126.49 2091.66,1133.57 2094.83,1144.11 2098,1157.86 2101.16,1174.39 2104.33,1193.35 2107.53,1214.46 \n",
+       "  2110.66,1236.51 2113.83,1259.58 2117,1282.92 2120.15,1305.8 2123.33,1327.83 2126.52,1348.5 2129.65,1366.73 2132.82,1382.68 2136.2,1396.46 2139.33,1405.91 \n",
+       "  2142.29,1411.69 2145.29,1414.3 2148.25,1413.59 2151.22,1409.63 2154.39,1401.91 2157.56,1390.79 2160.53,1377.51 2163.68,1360.72 2166.64,1342.84 2169.57,1323.54 \n",
+       "  2172.56,1302.59 2175.56,1280.75 2178.53,1258.9 2181.49,1237.31 2184.47,1216.31 2187.47,1196.3 2190.61,1177.21 2193.77,1160.27 2196.94,1146.07 2200.11,1135 \n",
+       "  2203.27,1127.35 2206.47,1123.28 2209.6,1122.97 2212.57,1126.03 2215.74,1132.83 2218.91,1143.09 2222.08,1156.56 2225.25,1172.9 2228.41,1191.68 2231.56,1212.3 \n",
+       "  2234.53,1233.07 2237.5,1254.63 2240.66,1277.89 2243.64,1299.58 2246.64,1320.75 2249.77,1341.59 2252.94,1360.76 2255.91,1376.62 2258.88,1390.07 2262.04,1401.37 \n",
+       "  2265.24,1409.35 2268.38,1413.61 2271.54,1414.22 2274.71,1411.11 2277.88,1404.36 2281.06,1394.09 2284.2,1380.75 2287.18,1365.52 2290.34,1346.94 2293.31,1327.65 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"\n",
+       "M1982.72 1245.18 L2282.75 1245.18 L2282.75 1124.22 L1982.72 1124.22  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1982.72,1245.18 2282.75,1245.18 2282.75,1124.22 1982.72,1124.22 1982.72,1245.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip890)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2006.06,1184.7 2146.07,1184.7 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip890)\" d=\"M 0 0 M2176.82 1168.69 L2176.82 1176.05 L2185.59 1176.05 L2185.59 1179.36 L2176.82 1179.36 L2176.82 1193.44 Q2176.82 1196.61 2177.67 1197.51 Q2178.55 1198.41 2181.21 1198.41 L2185.59 1198.41 L2185.59 1201.98 L2181.21 1201.98 Q2176.28 1201.98 2174.41 1200.15 Q2172.53 1198.3 2172.53 1193.44 L2172.53 1179.36 L2169.41 1179.36 L2169.41 1176.05 L2172.53 1176.05 L2172.53 1168.69 L2176.82 1168.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2201.84 1188.95 Q2196.68 1188.95 2194.69 1190.13 Q2192.7 1191.31 2192.7 1194.16 Q2192.7 1196.42 2194.18 1197.77 Q2195.68 1199.09 2198.25 1199.09 Q2201.79 1199.09 2203.92 1196.59 Q2206.08 1194.06 2206.08 1189.9 L2206.08 1188.95 L2201.84 1188.95 M2210.33 1187.19 L2210.33 1201.98 L2206.08 1201.98 L2206.08 1198.04 Q2204.62 1200.41 2202.44 1201.54 Q2200.27 1202.65 2197.12 1202.65 Q2193.14 1202.65 2190.77 1200.43 Q2188.44 1198.18 2188.44 1194.43 Q2188.44 1190.06 2191.35 1187.84 Q2194.29 1185.61 2200.1 1185.61 L2206.08 1185.61 L2206.08 1185.2 Q2206.08 1182.26 2204.13 1180.66 Q2202.21 1179.04 2198.71 1179.04 Q2196.49 1179.04 2194.39 1179.57 Q2192.28 1180.1 2190.33 1181.17 L2190.33 1177.23 Q2192.67 1176.33 2194.87 1175.89 Q2197.07 1175.43 2199.15 1175.43 Q2204.78 1175.43 2207.56 1178.35 Q2210.33 1181.26 2210.33 1187.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip890)\" d=\"M 0 0 M2214.36 1191.75 L2214.36 1176.05 L2218.62 1176.05 L2218.62 1191.59 Q2218.62 1195.27 2220.06 1197.12 Q2221.49 1198.95 2224.36 1198.95 Q2227.81 1198.95 2229.8 1196.75 Q2231.82 1194.55 2231.82 1190.75 L2231.82 1176.05 L2236.08 1176.05 L2236.08 1201.98 L2231.82 1201.98 L2231.82 1198 Q2230.27 1200.36 2228.2 1201.52 Q2226.17 1202.65 2223.46 1202.65 Q2218.99 1202.65 2216.68 1199.87 Q2214.36 1197.1 2214.36 1191.75 M2225.08 1175.43 L2225.08 1175.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "execution_count": 7,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "plot_result(xs, τs, ts)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Keeping a constant angular velocity"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We see that the respose of the system is not at all the one I expect, given the torque, so we try some more experiments, to understand what is going on.\n",
+    "\n",
+    "Assuming that, at low torques, the angular velocity is proportional to the torque, we sweep a range of torques, and plot the angular velocity as a function of torque."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "τs = range(-0.02, 0.02, length=30)\n",
+    "qs = []\n",
+    "for τ in ProgressBar(τs)\n",
+    "    f(x, t) = τ\n",
+    "    xs, _, ts = experiment(f, T=5);\n",
+    "    dϕs = [x[2] for x in xs]\n",
+    "    q = quantile(dϕs[ts .> 1], [0.05, 0.25, 0.5, 0.75, 0.95])\n",
+    "    push!(qs, q)\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "low = [ q[1] for q in qs ]\n",
+    "med = [ q[3] for q in qs ]\n",
+    "hi = [ q[5] for q in qs ]\n",
+    "\n",
+    "plot(τs, med, ribbon = (med .- low, hi .- med), xlabel = \"Torque\", ylabel = \"Base Angular Velocity\")"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We see that there is a strong asymmetry, and that the experiment is aborted when the angular velocity gets above a threshold. For positive torques, we see that the angular velocity jumps around a torque of 0.01."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Let's try to slowly change the torque until we get to a predefined angular velocity.\n",
+    "\n",
+    "Every second, we observe the angular velocity, and increment or decrement the torque."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "function policy(dϕ_target)\n",
+    "    τ = 0.0\n",
+    "    dτ_max = 0.001\n",
+    "    dt = 1\n",
+    "    t_mod = 0.0\n",
+    "    function f(x, t)\n",
+    "        if t - t_mod > dt\n",
+    "            dϕ = x[2]\n",
+    "            err = dϕ_target - dϕ\n",
+    "            τ += clamp(err, -dτ_max, dτ_max)\n",
+    "            t_mod = t\n",
+    "        end\n",
+    "        τ\n",
+    "    end\n",
+    "    f\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "When I run the following experiment on my device, I see jumps of angular velocity from 0 to 20 for very small changes in torque.\n",
+    "\n",
+    "If this is correct, then we need a better friction model."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "xs, τs, ts = experiment(policy(5), T=100);"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "dϕs = [ x[2] for x in xs ]\n",
+    "plt_a = plot(ts, dϕs, label=\"Observation\", xlabel=\"Time\", ylabel=\"BaseAngularVelocity\")\n",
+    "hline!(plt_a, [5], label = \"Target\", color=:green, legend = :topleft)\n",
+    "plt_b = plot(ts, τs, xlabel = \"Time\", ylabel=\"Torque\", legend = nothing)\n",
+    "plot(plt_a, plt_b, layout = (2, 1))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Doing the same experiment in the other direction, I see a sudden jump to a very large velocity, whereafter the experiment is aborted by the firmware (is that right?), and nothing more happens, despite increases in torque."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "xs, τs, ts = experiment(policy(-5), T=100);"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "dϕs = [ x[2] for x in xs ]\n",
+    "plt_a = plot(ts, dϕs, label=\"Observation\", xlabel=\"Time\", ylabel=\"BaseAngularVelocity\")\n",
+    "hline!(plt_a, [-5], label = \"Target\", color=:green, legend = :bottomright)\n",
+    "plt_b = plot(ts, τs, xlabel = \"Time\", ylabel=\"Torque\", legend = nothing)\n",
+    "plot(plt_a, plt_b, layout = (2, 1))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    " * If the firmware ends the experiment early (which is consistent with the plots from the sine-wave experiment above), then it would be nice to have a message. Probably in the form of an \"Experiment ended ok\" signal to poll after the disable at the end.\n",
+    " * If the firmware had problems computing the derivatives, then it would be good to fix that.\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Occasionally, I start getting errors from Moberg with error code 110, and the fix seems to be to reset everything and start again."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.4.2",
+   "language": "julia",
+   "name": "julia-1.4"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.4.2"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/Furuta/simulate.ipynb b/Furuta/simulate.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..590dd98a3261b97b58af9bf19c50bae74910a19c
--- /dev/null
+++ b/Furuta/simulate.ipynb
@@ -0,0 +1,3686 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Note to the reader\n",
+    "\n",
+    "This notebook was created as a sample of things one might want to combine into something useful for a course, and it is not intended to be"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# Furuta Pendulum"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Introduction"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "The furuta pendulum is a system with a pendulum fixed to a point on a rotating cylinder. The aim is to control the pendulum using the motor that can cause the cylinder to rotate.\n",
+    "\n",
+    "We will use this system for several problems in automatic control, and this first notebook introduces the system and the software environment we use for our experiments.\n",
+    "\n",
+    "This is a jupyter notebook, and it is normally viewed and run from a web-browser. It communicates with a jupyter server, which runs the computations. If the server is a lab computer with a Furuta-pendulum connected to it, then the experiments can be run, regardless of what computer the web-browser is running on."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Jupyter and Julia\n",
+    "\n",
+    "**TODO:** A brief text about jupyter and julia."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "**Note:** I tried using units, but that did not work well with DifferentialEquations, as it needed a generic `zero`, and gave me the error messge \"ArgumentError: zero(Quantity{Float64,D,U} where U where D) not defined.\""
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Loading modules\n",
+    "\n",
+    "The julia packages we will use must be loaded to be made avaialble to the Julia process."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "\"utf-8\""
+      ]
+     },
+     "execution_count": 1,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ENV[\"GKS_ENCODING\"] = \"utf-8\""
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Due to the special way Julia handles compilation, loading packages typically takes longer than in other programming languages."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "using LinearAlgebra\n",
+    "using OrdinaryDiffEq\n",
+    "using Plots\n",
+    "using LaTeXStrings\n",
+    "using ProgressBars\n",
+    "using Optim\n",
+    "using Zygote\n",
+    "using BenchmarkTools"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Furuta Pendulum\n",
+    "\n",
+    "The dynamics of the system is described in a [report](http://lup.lub.lu.se/search/ws/files/4453844/8727127.pdf) by Magnus Gäfvert, and we will base our investigations on that report and follow the notation introduces there.\n",
+    "\n",
+    "The parameters of the system are \n",
+    "  * $M$: The mass of the pendulum\n",
+    "  * ...\n",
+    "  \n",
+    " \n",
+    "For the dynamical equations, derived in the report, the following combinations of parameters are used\n",
+    "  * $\\alpha = J + (M + m_a +m_p)l_a^2$\n",
+    "  * $\\beta = (M + \\frac{m_p}{3})l_p^2$\n",
+    "  * $\\gamma = (M + \\frac{m_p}{2})l_a l_p$\n",
+    "  * $\\delta = (M + \\frac{m_p}{2}) g l_p$\n",
+    "\n",
+    "Our state contains $\\phi, \\dot{\\phi}, \\theta, \\dot{\\theta}$"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "0.05"
+      ]
+     },
+     "execution_count": 3,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "g = 10\n",
+    "\n",
+    "J = 1\n",
+    "M = 0.0\n",
+    "m_p = 10^-1\n",
+    "l_p = 10^-1\n",
+    "m_a = 10^-2\n",
+    "l_a = 10^-2\n",
+    "\n",
+    "α = J + (m_a/3 + m_p)*l_a^2\n",
+    "β = (M + m_p/3)*l_p^2\n",
+    "γ = (M + m_p/2)*l_a*l_p\n",
+    "δ = (M + m_p/2)*g*l_p"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Simulating the system\n",
+    "\n",
+    "We assume that we have chosen a control policy, and that we want to solve the equations of motion.\n",
+    "\n",
+    "With our control policy given in terms of the two function determining the external torques from the motors $\\tau\\phi$ and $\\tau\\theta$ as functions of the state and the current time, \n",
+    "$$f_{\\tau\\phi}(x, t)$$\n",
+    "$$f_{\\tau\\theta}(x, t)$$\n",
+    "\n",
+    "we can write, for our state $x = [\\phi, \\phi', \\theta, \\theta']$, the equations as a function $dx(x, p, t)$, where the parameter values in $p$ contain the physical parameters $\\alpha, \\beta, \\gamma, \\delta$, as well as the policies $f_{\\tau\\phi}$ and $f_{\\tau\\theta}$"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "dx (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 4,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function dx(x, p, t)\n",
+    "    (ϕ, ϕ′, θ, θ′) = x\n",
+    "    (α, β, γ, δ, fτϕ, fτθ) = p\n",
+    "    τϕ = fτϕ(x, t)\n",
+    "    τθ = fτθ(x, t)\n",
+    "    cosθ = cos(θ)\n",
+    "    sinθ = sin(θ)\n",
+    "    denominator = α*β - γ^2 + (β^2 + γ^2)*sinθ^2\n",
+    "    @assert denominator != 0.0\n",
+    "    dϕ = ϕ′\n",
+    "    dϕ′ = (β*γ*(sinθ^2-1)*sinθ*ϕ′^2 - 2*β^2*cosθ*sinθ*ϕ′*θ′+β*γ*sinθ*θ′^2-γ*δ*cosθ*sinθ+β*τϕ-γ*cosθ*τθ) / denominator\n",
+    "    dθ = θ′\n",
+    "    dθ′ = (β*(α + β*sinθ^2)*cosθ*sinθ*ϕ′^2+2*β*γ*(1 - sinθ^2)*sinθ*ϕ′*θ′-γ^2*cosθ*sinθ*θ′^2+δ*(α+β*sinθ^2)*sinθ-γ*cosθ*τϕ + (α + β*sinθ^2)*τθ)/denominator\n",
+    "\n",
+    "    [dϕ, dϕ′, dθ, dθ′]\n",
+    "end    "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "4-element Array{Float64,1}:\n",
+       "  0.0\n",
+       "  0.9999971666746945\n",
+       "  0.0\n",
+       " -0.1499995750012042"
+      ]
+     },
+     "execution_count": 5,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "fτϕ(x, t) = 1\n",
+    "fτθ(x, t) = 0\n",
+    "\n",
+    "dx([0.0, 0.0, 0.0, 0.0], (α, β, γ, δ, fτϕ, fτθ), 0.0)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We begin with an arbitrary choice of paramters, including a constant control signal"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "fτθ (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 6,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# α = 1.0\n",
+    "# β = 1.2\n",
+    "# γ = 0.1\n",
+    "# δ = 0.85\n",
+    "\n",
+    "fτϕ(x, t) = 0.2 # constant control policy\n",
+    "fτθ(x, t) = 0.0 # No motor for pendulum"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Adding a timespan and an initial condition, we can run a simulated run."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "t_max = 5\n",
+    "t_span = (0.0, t_max)\n",
+    "x_init = [0.0, 0.0, π, 0.0];"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "ode_problem = ODEProblem(dx, x_init, t_span)\n",
+    "ode_sol = solve(ode_problem, Tsit5(), reltol=1e-8, abstol=1e-8, p=(α, β, γ, δ, fτϕ, fτθ));"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We extract the states as function of time, and plot the result"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "ts = range(0, t_max, length=800)\n",
+    "xs = ode_sol.(ts);"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "ϕs = [ x[1] for x in xs ]\n",
+    "θs = [ x[3] for x in xs ];"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 11,
+   "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip630\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip631\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"\n",
+       "M211.116 1423.18 L1113.71 1423.18 L1113.71 47.2441 L211.116 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip632\">\n",
+       "    <rect x=\"211\" y=\"47\" width=\"904\" height=\"1377\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  236.661,1423.18 236.661,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  406.961,1423.18 406.961,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  577.261,1423.18 577.261,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  747.561,1423.18 747.561,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  917.86,1423.18 917.86,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1088.16,1423.18 1088.16,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,1384.24 1113.71,1384.24 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,1124.63 1113.71,1124.63 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,865.012 1113.71,865.012 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,605.399 1113.71,605.399 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,345.785 1113.71,345.785 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip632)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  211.116,86.1723 1113.71,86.1723 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,1423.18 1113.71,1423.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,1423.18 211.116,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  236.661,1423.18 236.661,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  406.961,1423.18 406.961,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  577.261,1423.18 577.261,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  747.561,1423.18 747.561,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  917.86,1423.18 917.86,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1088.16,1423.18 1088.16,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,1384.24 221.947,1384.24 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,1124.63 221.947,1124.63 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,865.012 221.947,865.012 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,605.399 221.947,605.399 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,345.785 221.947,345.785 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  211.116,86.1723 221.947,86.1723 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"M 0 0 M236.661 1445.17 Q233.05 1445.17 231.221 1448.74 Q229.416 1452.28 229.416 1459.41 Q229.416 1466.51 231.221 1470.08 Q233.05 1473.62 236.661 1473.62 Q240.296 1473.62 242.101 1470.08 Q243.93 1466.51 243.93 1459.41 Q243.93 1452.28 242.101 1448.74 Q240.296 1445.17 236.661 1445.17 M236.661 1441.47 Q242.471 1441.47 245.527 1446.07 Q248.606 1450.66 248.606 1459.41 Q248.606 1468.13 245.527 1472.74 Q242.471 1477.32 236.661 1477.32 Q230.851 1477.32 227.772 1472.74 Q224.717 1468.13 224.717 1459.41 Q224.717 1450.66 227.772 1446.07 Q230.851 1441.47 236.661 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M397.343 1472.72 L404.982 1472.72 L404.982 1446.35 L396.672 1448.02 L396.672 1443.76 L404.936 1442.09 L409.612 1442.09 L409.612 1472.72 L417.25 1472.72 L417.25 1476.65 L397.343 1476.65 L397.343 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M571.914 1472.72 L588.233 1472.72 L588.233 1476.65 L566.289 1476.65 L566.289 1472.72 Q568.951 1469.96 573.534 1465.33 Q578.14 1460.68 579.321 1459.34 Q581.566 1456.81 582.446 1455.08 Q583.349 1453.32 583.349 1451.63 Q583.349 1448.87 581.404 1447.14 Q579.483 1445.4 576.381 1445.4 Q574.182 1445.4 571.728 1446.17 Q569.298 1446.93 566.52 1448.48 L566.52 1443.76 Q569.344 1442.62 571.798 1442.05 Q574.252 1441.47 576.289 1441.47 Q581.659 1441.47 584.853 1444.15 Q588.048 1446.84 588.048 1451.33 Q588.048 1453.46 587.238 1455.38 Q586.451 1457.28 584.344 1459.87 Q583.765 1460.54 580.664 1463.76 Q577.562 1466.95 571.914 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M751.808 1458.02 Q755.165 1458.74 757.04 1461 Q758.938 1463.27 758.938 1466.61 Q758.938 1471.72 755.419 1474.52 Q751.901 1477.32 745.419 1477.32 Q743.244 1477.32 740.929 1476.88 Q738.637 1476.47 736.183 1475.61 L736.183 1471.1 Q738.128 1472.23 740.443 1472.81 Q742.757 1473.39 745.281 1473.39 Q749.679 1473.39 751.97 1471.65 Q754.285 1469.92 754.285 1466.61 Q754.285 1463.55 752.132 1461.84 Q750.003 1460.1 746.183 1460.1 L742.156 1460.1 L742.156 1456.26 L746.369 1456.26 Q749.818 1456.26 751.646 1454.89 Q753.475 1453.5 753.475 1450.91 Q753.475 1448.25 751.577 1446.84 Q749.702 1445.4 746.183 1445.4 Q744.262 1445.4 742.063 1445.82 Q739.864 1446.24 737.225 1447.11 L737.225 1442.95 Q739.887 1442.21 742.202 1441.84 Q744.54 1441.47 746.6 1441.47 Q751.924 1441.47 755.026 1443.9 Q758.128 1446.3 758.128 1450.43 Q758.128 1453.3 756.484 1455.29 Q754.841 1457.25 751.808 1458.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M920.87 1446.17 L909.064 1464.61 L920.87 1464.61 L920.87 1446.17 M919.643 1442.09 L925.522 1442.09 L925.522 1464.61 L930.453 1464.61 L930.453 1468.5 L925.522 1468.5 L925.522 1476.65 L920.87 1476.65 L920.87 1468.5 L905.268 1468.5 L905.268 1463.99 L919.643 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1078.44 1442.09 L1096.79 1442.09 L1096.79 1446.03 L1082.72 1446.03 L1082.72 1454.5 Q1083.74 1454.15 1084.76 1453.99 Q1085.78 1453.8 1086.79 1453.8 Q1092.58 1453.8 1095.96 1456.98 Q1099.34 1460.15 1099.34 1465.56 Q1099.34 1471.14 1095.87 1474.24 Q1092.4 1477.32 1086.08 1477.32 Q1083.9 1477.32 1081.63 1476.95 Q1079.39 1476.58 1076.98 1475.84 L1076.98 1471.14 Q1079.06 1472.28 1081.29 1472.83 Q1083.51 1473.39 1085.98 1473.39 Q1089.99 1473.39 1092.33 1471.28 Q1094.66 1469.18 1094.66 1465.56 Q1094.66 1461.95 1092.33 1459.85 Q1089.99 1457.74 1085.98 1457.74 Q1084.11 1457.74 1082.23 1458.16 Q1080.38 1458.57 1078.44 1459.45 L1078.44 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M138.205 1370.04 Q134.593 1370.04 132.765 1373.6 Q130.959 1377.14 130.959 1384.27 Q130.959 1391.38 132.765 1394.94 Q134.593 1398.49 138.205 1398.49 Q141.839 1398.49 143.644 1394.94 Q145.473 1391.38 145.473 1384.27 Q145.473 1377.14 143.644 1373.6 Q141.839 1370.04 138.205 1370.04 M138.205 1366.33 Q144.015 1366.33 147.07 1370.94 Q150.149 1375.52 150.149 1384.27 Q150.149 1393 147.07 1397.61 Q144.015 1402.19 138.205 1402.19 Q132.394 1402.19 129.316 1397.61 Q126.26 1393 126.26 1384.27 Q126.26 1375.52 129.316 1370.94 Q132.394 1366.33 138.205 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M155.218 1395.64 L160.103 1395.64 L160.103 1401.52 L155.218 1401.52 L155.218 1395.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M175.172 1370.04 Q171.561 1370.04 169.732 1373.6 Q167.927 1377.14 167.927 1384.27 Q167.927 1391.38 169.732 1394.94 Q171.561 1398.49 175.172 1398.49 Q178.806 1398.49 180.612 1394.94 Q182.44 1391.38 182.44 1384.27 Q182.44 1377.14 180.612 1373.6 Q178.806 1370.04 175.172 1370.04 M175.172 1366.33 Q180.982 1366.33 184.038 1370.94 Q187.116 1375.52 187.116 1384.27 Q187.116 1393 184.038 1397.61 Q180.982 1402.19 175.172 1402.19 Q169.362 1402.19 166.283 1397.61 Q163.228 1393 163.228 1384.27 Q163.228 1375.52 166.283 1370.94 Q169.362 1366.33 175.172 1366.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M139.2 1110.42 Q135.589 1110.42 133.76 1113.99 Q131.955 1117.53 131.955 1124.66 Q131.955 1131.77 133.76 1135.33 Q135.589 1138.87 139.2 1138.87 Q142.834 1138.87 144.64 1135.33 Q146.468 1131.77 146.468 1124.66 Q146.468 1117.53 144.64 1113.99 Q142.834 1110.42 139.2 1110.42 M139.2 1106.72 Q145.01 1106.72 148.066 1111.33 Q151.144 1115.91 151.144 1124.66 Q151.144 1133.39 148.066 1137.99 Q145.01 1142.58 139.2 1142.58 Q133.39 1142.58 130.311 1137.99 Q127.256 1133.39 127.256 1124.66 Q127.256 1115.91 130.311 1111.33 Q133.39 1106.72 139.2 1106.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M156.214 1136.03 L161.098 1136.03 L161.098 1141.91 L156.214 1141.91 L156.214 1136.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M166.214 1107.35 L184.57 1107.35 L184.57 1111.28 L170.496 1111.28 L170.496 1119.75 Q171.515 1119.41 172.533 1119.24 Q173.552 1119.06 174.57 1119.06 Q180.357 1119.06 183.737 1122.23 Q187.116 1125.4 187.116 1130.82 Q187.116 1136.4 183.644 1139.5 Q180.172 1142.58 173.852 1142.58 Q171.677 1142.58 169.408 1142.21 Q167.163 1141.84 164.755 1141.09 L164.755 1136.4 Q166.839 1137.53 169.061 1138.09 Q171.283 1138.64 173.76 1138.64 Q177.765 1138.64 180.102 1136.53 Q182.44 1134.43 182.44 1130.82 Q182.44 1127.21 180.102 1125.1 Q177.765 1122.99 173.76 1122.99 Q171.885 1122.99 170.01 1123.41 Q168.158 1123.83 166.214 1124.71 L166.214 1107.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M130.242 878.357 L137.88 878.357 L137.88 851.991 L129.57 853.658 L129.57 849.399 L137.834 847.732 L142.51 847.732 L142.51 878.357 L150.149 878.357 L150.149 882.292 L130.242 882.292 L130.242 878.357 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M155.218 876.412 L160.103 876.412 L160.103 882.292 L155.218 882.292 L155.218 876.412 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M175.172 850.811 Q171.561 850.811 169.732 854.375 Q167.927 857.917 167.927 865.047 Q167.927 872.153 169.732 875.718 Q171.561 879.259 175.172 879.259 Q178.806 879.259 180.612 875.718 Q182.44 872.153 182.44 865.047 Q182.44 857.917 180.612 854.375 Q178.806 850.811 175.172 850.811 M175.172 847.107 Q180.982 847.107 184.038 851.713 Q187.116 856.297 187.116 865.047 Q187.116 873.773 184.038 878.38 Q180.982 882.963 175.172 882.963 Q169.362 882.963 166.283 878.38 Q163.228 873.773 163.228 865.047 Q163.228 856.297 166.283 851.713 Q169.362 847.107 175.172 847.107 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M131.237 618.744 L138.876 618.744 L138.876 592.378 L130.566 594.045 L130.566 589.785 L138.83 588.119 L143.505 588.119 L143.505 618.744 L151.144 618.744 L151.144 622.679 L131.237 622.679 L131.237 618.744 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M156.214 616.799 L161.098 616.799 L161.098 622.679 L156.214 622.679 L156.214 616.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M166.214 588.119 L184.57 588.119 L184.57 592.054 L170.496 592.054 L170.496 600.526 Q171.515 600.179 172.533 600.017 Q173.552 599.832 174.57 599.832 Q180.357 599.832 183.737 603.003 Q187.116 606.174 187.116 611.591 Q187.116 617.169 183.644 620.271 Q180.172 623.35 173.852 623.35 Q171.677 623.35 169.408 622.98 Q167.163 622.609 164.755 621.868 L164.755 617.169 Q166.839 618.304 169.061 618.859 Q171.283 619.415 173.76 619.415 Q177.765 619.415 180.102 617.308 Q182.44 615.202 182.44 611.591 Q182.44 607.98 180.102 605.873 Q177.765 603.767 173.76 603.767 Q171.885 603.767 170.01 604.183 Q168.158 604.6 166.214 605.48 L166.214 588.119 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M133.83 359.13 L150.149 359.13 L150.149 363.065 L128.205 363.065 L128.205 359.13 Q130.867 356.376 135.45 351.746 Q140.056 347.093 141.237 345.751 Q143.482 343.228 144.362 341.492 Q145.265 339.732 145.265 338.042 Q145.265 335.288 143.32 333.552 Q141.399 331.816 138.297 331.816 Q136.098 331.816 133.644 332.58 Q131.214 333.343 128.436 334.894 L128.436 330.172 Q131.26 329.038 133.714 328.459 Q136.168 327.88 138.205 327.88 Q143.575 327.88 146.769 330.566 Q149.964 333.251 149.964 337.742 Q149.964 339.871 149.154 341.792 Q148.367 343.691 146.26 346.283 Q145.681 346.954 142.58 350.172 Q139.478 353.366 133.83 359.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M155.218 357.186 L160.103 357.186 L160.103 363.065 L155.218 363.065 L155.218 357.186 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M175.172 331.584 Q171.561 331.584 169.732 335.149 Q167.927 338.691 167.927 345.82 Q167.927 352.927 169.732 356.491 Q171.561 360.033 175.172 360.033 Q178.806 360.033 180.612 356.491 Q182.44 352.927 182.44 345.82 Q182.44 338.691 180.612 335.149 Q178.806 331.584 175.172 331.584 M175.172 327.88 Q180.982 327.88 184.038 332.487 Q187.116 337.07 187.116 345.82 Q187.116 354.547 184.038 359.153 Q180.982 363.737 175.172 363.737 Q169.362 363.737 166.283 359.153 Q163.228 354.547 163.228 345.82 Q163.228 337.07 166.283 332.487 Q169.362 327.88 175.172 327.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M134.825 99.5171 L151.144 99.5171 L151.144 103.452 L129.2 103.452 L129.2 99.5171 Q131.862 96.7625 136.445 92.1329 Q141.052 87.4801 142.232 86.1375 Q144.478 83.6144 145.357 81.8783 Q146.26 80.1191 146.26 78.4293 Q146.26 75.6746 144.316 73.9385 Q142.394 72.2024 139.292 72.2024 Q137.093 72.2024 134.64 72.9663 Q132.209 73.7302 129.431 75.2811 L129.431 70.5589 Q132.255 69.4247 134.709 68.846 Q137.163 68.2673 139.2 68.2673 Q144.57 68.2673 147.765 70.9524 Q150.959 73.6376 150.959 78.1283 Q150.959 80.2579 150.149 82.1792 Q149.362 84.0774 147.255 86.6699 Q146.677 87.3412 143.575 90.5588 Q140.473 93.7532 134.825 99.5171 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M156.214 97.5727 L161.098 97.5727 L161.098 103.452 L156.214 103.452 L156.214 97.5727 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M166.214 68.8923 L184.57 68.8923 L184.57 72.8274 L170.496 72.8274 L170.496 81.2996 Q171.515 80.9524 172.533 80.7903 Q173.552 80.6052 174.57 80.6052 Q180.357 80.6052 183.737 83.7764 Q187.116 86.9477 187.116 92.3644 Q187.116 97.943 183.644 101.045 Q180.172 104.124 173.852 104.124 Q171.677 104.124 169.408 103.753 Q167.163 103.383 164.755 102.642 L164.755 97.943 Q166.839 99.0773 169.061 99.6328 Q171.283 100.188 173.76 100.188 Q177.765 100.188 180.102 98.0819 Q182.44 95.9755 182.44 92.3644 Q182.44 88.7533 180.102 86.6468 Q177.765 84.5403 173.76 84.5403 Q171.885 84.5403 170.01 84.957 Q168.158 85.3737 166.214 86.2533 L166.214 68.8923 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M608.175 1510.27 L608.175 1520.4 L620.238 1520.4 L620.238 1524.95 L608.175 1524.95 L608.175 1544.3 Q608.175 1548.66 609.353 1549.9 Q610.562 1551.14 614.222 1551.14 L620.238 1551.14 L620.238 1556.04 L614.222 1556.04 Q607.443 1556.04 604.865 1553.53 Q602.287 1550.98 602.287 1544.3 L602.287 1524.95 L597.99 1524.95 L597.99 1520.4 L602.287 1520.4 L602.287 1510.27 L608.175 1510.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M626.381 1520.4 L632.237 1520.4 L632.237 1556.04 L626.381 1556.04 L626.381 1520.4 M626.381 1506.52 L632.237 1506.52 L632.237 1513.93 L626.381 1513.93 L626.381 1506.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M666.135 1527.24 Q668.331 1523.29 671.386 1521.41 Q674.442 1519.54 678.58 1519.54 Q684.15 1519.54 687.173 1523.45 Q690.197 1527.33 690.197 1534.53 L690.197 1556.04 L684.309 1556.04 L684.309 1534.72 Q684.309 1529.59 682.495 1527.11 Q680.68 1524.63 676.956 1524.63 Q672.405 1524.63 669.763 1527.65 Q667.121 1530.68 667.121 1535.9 L667.121 1556.04 L661.233 1556.04 L661.233 1534.72 Q661.233 1529.56 659.419 1527.11 Q657.605 1524.63 653.817 1524.63 Q649.329 1524.63 646.687 1527.68 Q644.046 1530.71 644.046 1535.9 L644.046 1556.04 L638.157 1556.04 L638.157 1520.4 L644.046 1520.4 L644.046 1525.93 Q646.051 1522.66 648.852 1521.1 Q651.653 1519.54 655.504 1519.54 Q659.387 1519.54 662.092 1521.51 Q664.83 1523.48 666.135 1527.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M726.832 1536.76 L726.832 1539.62 L699.905 1539.62 Q700.287 1545.67 703.533 1548.85 Q706.812 1552 712.636 1552 Q716.01 1552 719.161 1551.17 Q722.344 1550.35 725.463 1548.69 L725.463 1554.23 Q722.312 1555.57 719.002 1556.27 Q715.692 1556.97 712.286 1556.97 Q703.756 1556.97 698.759 1552 Q693.794 1547.04 693.794 1538.57 Q693.794 1529.82 698.504 1524.69 Q703.247 1519.54 711.268 1519.54 Q718.461 1519.54 722.63 1524.18 Q726.832 1528.8 726.832 1536.76 M720.975 1535.04 Q720.912 1530.23 718.27 1527.37 Q715.66 1524.5 711.331 1524.5 Q706.43 1524.5 703.47 1527.27 Q700.541 1530.04 700.096 1535.07 L720.975 1535.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M70.0847 791.771 Q70.0847 798.869 71.7079 801.606 Q73.3312 804.344 77.2461 804.344 Q80.3653 804.344 82.2114 802.307 Q84.0256 800.238 84.0256 796.705 Q84.0256 791.835 80.5881 788.907 Q77.1188 785.947 71.3897 785.947 L70.0847 785.947 L70.0847 791.771 M67.6657 780.09 L88.0042 780.09 L88.0042 785.947 L82.5933 785.947 Q85.8398 787.952 87.3994 790.944 Q88.9272 793.936 88.9272 798.264 Q88.9272 803.739 85.8716 806.985 Q82.7843 810.2 77.6281 810.2 Q71.6125 810.2 68.5569 806.19 Q65.5014 802.147 65.5014 794.158 L65.5014 785.947 L64.9285 785.947 Q60.8862 785.947 58.6901 788.62 Q56.4621 791.262 56.4621 796.068 Q56.4621 799.124 57.1941 802.02 Q57.9262 804.916 59.3903 807.59 L53.9795 807.59 Q52.7381 804.375 52.1334 801.352 Q51.4968 798.328 51.4968 795.463 Q51.4968 787.729 55.5072 783.91 Q59.5176 780.09 67.6657 780.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M66.4881 744.315 L88.0042 744.315 L88.0042 750.171 L66.679 750.171 Q61.6183 750.171 59.1038 752.145 Q56.5894 754.118 56.5894 758.065 Q56.5894 762.807 59.6131 765.545 Q62.6368 768.282 67.8567 768.282 L88.0042 768.282 L88.0042 774.17 L52.3562 774.17 L52.3562 768.282 L57.8944 768.282 Q54.6797 766.181 53.0883 763.348 Q51.4968 760.484 51.4968 756.76 Q51.4968 750.617 55.3163 747.466 Q59.1038 744.315 66.4881 744.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M69.7664 714.714 Q63.4007 714.714 59.8996 717.356 Q56.3984 719.966 56.3984 724.709 Q56.3984 729.419 59.8996 732.061 Q63.4007 734.671 69.7664 734.671 Q76.1003 734.671 79.6014 732.061 Q83.1026 729.419 83.1026 724.709 Q83.1026 719.966 79.6014 717.356 Q76.1003 714.714 69.7664 714.714 M83.58 708.858 Q92.683 708.858 97.1071 712.9 Q101.563 716.942 101.563 725.281 Q101.563 728.369 101.086 731.106 Q100.64 733.843 99.6852 736.421 L93.9879 736.421 Q95.3884 733.843 96.0568 731.329 Q96.7252 728.814 96.7252 726.204 Q96.7252 720.444 93.7015 717.579 Q90.7096 714.714 84.6303 714.714 L81.7339 714.714 Q84.885 716.529 86.4446 719.361 Q88.0042 722.194 88.0042 726.141 Q88.0042 732.698 83.0071 736.708 Q78.01 740.718 69.7664 740.718 Q61.491 740.718 56.4939 736.708 Q51.4968 732.698 51.4968 726.141 Q51.4968 722.194 53.0564 719.361 Q54.616 716.529 57.7671 714.714 L52.3562 714.714 L52.3562 708.858 L83.58 708.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M38.479 702.715 L38.479 696.859 L88.0042 696.859 L88.0042 702.715 L38.479 702.715 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M68.7161 660.224 L71.5806 660.224 L71.5806 687.151 Q77.6281 686.769 80.8109 683.522 Q83.9619 680.244 83.9619 674.419 Q83.9619 671.046 83.1344 667.895 Q82.3069 664.712 80.6518 661.593 L86.1899 661.593 Q87.5267 664.744 88.227 668.054 Q88.9272 671.364 88.9272 674.77 Q88.9272 683.3 83.9619 688.297 Q78.9967 693.262 70.5303 693.262 Q61.7774 693.262 56.6531 688.551 Q51.4968 683.809 51.4968 675.788 Q51.4968 668.595 56.1438 664.425 Q60.7589 660.224 68.7161 660.224 M66.9973 666.08 Q62.1912 666.144 59.3266 668.786 Q56.4621 671.396 56.4621 675.724 Q56.4621 680.626 59.2312 683.586 Q62.0002 686.514 67.0292 686.96 L66.9973 666.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip632)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  236.661,1384.24 237.727,1384.24 238.793,1384.23 239.858,1384.22 240.924,1384.21 241.99,1384.19 243.056,1384.17 244.121,1384.14 245.187,1384.11 246.253,1384.07 \n",
+       "  247.318,1384.03 248.384,1383.99 249.45,1383.95 250.515,1383.89 251.581,1383.84 252.647,1383.78 253.713,1383.72 254.778,1383.65 255.844,1383.58 256.91,1383.5 \n",
+       "  257.975,1383.42 259.041,1383.34 260.107,1383.25 261.173,1383.16 262.238,1383.07 263.304,1382.97 264.37,1382.86 265.435,1382.76 266.501,1382.64 267.567,1382.53 \n",
+       "  268.632,1382.41 269.698,1382.28 270.764,1382.16 271.83,1382.02 272.895,1381.89 273.961,1381.75 275.027,1381.6 276.092,1381.45 277.158,1381.3 278.224,1381.15 \n",
+       "  279.29,1380.98 280.355,1380.82 281.421,1380.65 282.487,1380.48 283.552,1380.3 284.618,1380.12 285.684,1379.94 286.749,1379.75 287.815,1379.55 288.881,1379.36 \n",
+       "  289.947,1379.16 291.012,1378.95 292.078,1378.74 293.144,1378.53 294.209,1378.31 295.275,1378.09 296.341,1377.86 297.407,1377.63 298.472,1377.4 299.538,1377.16 \n",
+       "  300.604,1376.92 301.669,1376.67 302.735,1376.42 303.801,1376.17 304.866,1375.91 305.932,1375.65 306.998,1375.38 308.064,1375.11 309.129,1374.84 310.195,1374.56 \n",
+       "  311.261,1374.28 312.326,1373.99 313.392,1373.7 314.458,1373.4 315.524,1373.1 316.589,1372.8 317.655,1372.49 318.721,1372.18 319.786,1371.87 320.852,1371.55 \n",
+       "  321.918,1371.23 322.983,1370.9 324.049,1370.57 325.115,1370.23 326.181,1369.89 327.246,1369.55 328.312,1369.2 329.378,1368.85 330.443,1368.49 331.509,1368.13 \n",
+       "  332.575,1367.77 333.641,1367.4 334.706,1367.03 335.772,1366.65 336.838,1366.27 337.903,1365.89 338.969,1365.5 340.035,1365.11 341.1,1364.71 342.166,1364.31 \n",
+       "  343.232,1363.91 344.298,1363.5 345.363,1363.08 346.429,1362.67 347.495,1362.25 348.56,1361.82 349.626,1361.39 350.692,1360.96 351.758,1360.52 352.823,1360.08 \n",
+       "  353.889,1359.64 354.955,1359.19 356.02,1358.73 357.086,1358.28 358.152,1357.81 359.217,1357.35 360.283,1356.88 361.349,1356.4 362.415,1355.93 363.48,1355.44 \n",
+       "  364.546,1354.96 365.612,1354.47 366.677,1353.97 367.743,1353.48 368.809,1352.97 369.875,1352.47 370.94,1351.96 372.006,1351.44 373.072,1350.92 374.137,1350.4 \n",
+       "  375.203,1349.88 376.269,1349.35 377.334,1348.81 378.4,1348.27 379.466,1347.73 380.532,1347.18 381.597,1346.63 382.663,1346.08 383.729,1345.52 384.794,1344.95 \n",
+       "  385.86,1344.39 386.926,1343.81 387.992,1343.24 389.057,1342.66 390.123,1342.08 391.189,1341.49 392.254,1340.9 393.32,1340.3 394.386,1339.7 395.451,1339.1 \n",
+       "  396.517,1338.49 397.583,1337.88 398.649,1337.26 399.714,1336.64 400.78,1336.02 401.846,1335.39 402.911,1334.76 403.977,1334.12 405.043,1333.48 406.109,1332.83 \n",
+       "  407.174,1332.19 408.24,1331.53 409.306,1330.88 410.371,1330.22 411.437,1329.55 412.503,1328.88 413.568,1328.21 414.634,1327.53 415.7,1326.85 416.766,1326.17 \n",
+       "  417.831,1325.48 418.897,1324.78 419.963,1324.09 421.028,1323.38 422.094,1322.68 423.16,1321.97 424.226,1321.26 425.291,1320.54 426.357,1319.82 427.423,1319.09 \n",
+       "  428.488,1318.36 429.554,1317.63 430.62,1316.89 431.685,1316.15 432.751,1315.4 433.817,1314.65 434.883,1313.89 435.948,1313.14 437.014,1312.37 438.08,1311.61 \n",
+       "  439.145,1310.84 440.211,1310.06 441.277,1309.28 442.343,1308.5 443.408,1307.71 444.474,1306.92 445.54,1306.13 446.605,1305.33 447.671,1304.53 448.737,1303.72 \n",
+       "  449.802,1302.91 450.868,1302.09 451.934,1301.27 453,1300.45 454.065,1299.62 455.131,1298.79 456.197,1297.95 457.262,1297.11 458.328,1296.27 459.394,1295.42 \n",
+       "  460.46,1294.57 461.525,1293.71 462.591,1292.85 463.657,1291.99 464.722,1291.12 465.788,1290.25 466.854,1289.37 467.919,1288.49 468.985,1287.61 470.051,1286.72 \n",
+       "  471.117,1285.83 472.182,1284.93 473.248,1284.03 474.314,1283.12 475.379,1282.22 476.445,1281.3 477.511,1280.39 478.576,1279.47 479.642,1278.54 480.708,1277.61 \n",
+       "  481.774,1276.68 482.839,1275.74 483.905,1274.8 484.971,1273.85 486.036,1272.9 487.102,1271.95 488.168,1270.99 489.234,1270.03 490.299,1269.06 491.365,1268.09 \n",
+       "  492.431,1267.12 493.496,1266.14 494.562,1265.16 495.628,1264.17 496.693,1263.18 497.759,1262.19 498.825,1261.19 499.891,1260.19 500.956,1259.18 502.022,1258.17 \n",
+       "  503.088,1257.16 504.153,1256.14 505.219,1255.12 506.285,1254.09 507.351,1253.06 508.416,1252.02 509.482,1250.98 510.548,1249.94 511.613,1248.89 512.679,1247.84 \n",
+       "  513.745,1246.79 514.81,1245.73 515.876,1244.67 516.942,1243.6 518.008,1242.53 519.073,1241.45 520.139,1240.37 521.205,1239.29 522.27,1238.2 523.336,1237.11 \n",
+       "  524.402,1236.01 525.468,1234.91 526.533,1233.81 527.599,1232.7 528.665,1231.59 529.73,1230.47 530.796,1229.35 531.862,1228.23 532.927,1227.1 533.993,1225.97 \n",
+       "  535.059,1224.83 536.125,1223.69 537.19,1222.54 538.256,1221.39 539.322,1220.24 540.387,1219.08 541.453,1217.92 542.519,1216.76 543.585,1215.59 544.65,1214.42 \n",
+       "  545.716,1213.24 546.782,1212.06 547.847,1210.87 548.913,1209.68 549.979,1208.49 551.044,1207.29 552.11,1206.09 553.176,1204.88 554.242,1203.67 555.307,1202.46 \n",
+       "  556.373,1201.24 557.439,1200.02 558.504,1198.79 559.57,1197.56 560.636,1196.33 561.702,1195.09 562.767,1193.85 563.833,1192.6 564.899,1191.35 565.964,1190.1 \n",
+       "  567.03,1188.84 568.096,1187.58 569.161,1186.31 570.227,1185.04 571.293,1183.76 572.359,1182.49 573.424,1181.2 574.49,1179.92 575.556,1178.62 576.621,1177.33 \n",
+       "  577.687,1176.03 578.753,1174.73 579.819,1173.42 580.884,1172.11 581.95,1170.79 583.016,1169.47 584.081,1168.15 585.147,1166.82 586.213,1165.49 587.278,1164.15 \n",
+       "  588.344,1162.81 589.41,1161.47 590.476,1160.12 591.541,1158.77 592.607,1157.41 593.673,1156.05 594.738,1154.69 595.804,1153.32 596.87,1151.95 597.936,1150.57 \n",
+       "  599.001,1149.19 600.067,1147.81 601.133,1146.42 602.198,1145.02 603.264,1143.63 604.33,1142.23 605.395,1140.82 606.461,1139.41 607.527,1138 608.593,1136.58 \n",
+       "  609.658,1135.16 610.724,1133.74 611.79,1132.31 612.855,1130.87 613.921,1129.43 614.987,1127.99 616.053,1126.55 617.118,1125.1 618.184,1123.64 619.25,1122.19 \n",
+       "  620.315,1120.72 621.381,1119.26 622.447,1117.79 623.512,1116.31 624.578,1114.84 625.644,1113.35 626.71,1111.87 627.775,1110.38 628.841,1108.88 629.907,1107.38 \n",
+       "  630.972,1105.88 632.038,1104.37 633.104,1102.86 634.17,1101.35 635.235,1099.83 636.301,1098.31 637.367,1096.78 638.432,1095.25 639.498,1093.71 640.564,1092.17 \n",
+       "  641.629,1090.63 642.695,1089.08 643.761,1087.53 644.827,1085.98 645.892,1084.42 646.958,1082.85 648.024,1081.29 649.089,1079.71 650.155,1078.14 651.221,1076.56 \n",
+       "  652.287,1074.98 653.352,1073.39 654.418,1071.8 655.484,1070.2 656.549,1068.6 657.615,1066.99 658.681,1065.39 659.746,1063.77 660.812,1062.16 661.878,1060.54 \n",
+       "  662.944,1058.91 664.009,1057.28 665.075,1055.65 666.141,1054.01 667.206,1052.37 668.272,1050.73 669.338,1049.08 670.404,1047.43 671.469,1045.77 672.535,1044.11 \n",
+       "  673.601,1042.44 674.666,1040.77 675.732,1039.1 676.798,1037.42 677.863,1035.74 678.929,1034.06 679.995,1032.37 681.061,1030.67 682.126,1028.97 683.192,1027.27 \n",
+       "  684.258,1025.57 685.323,1023.86 686.389,1022.14 687.455,1020.42 688.521,1018.7 689.586,1016.98 690.652,1015.25 691.718,1013.51 692.783,1011.77 693.849,1010.03 \n",
+       "  694.915,1008.28 695.98,1006.53 697.046,1004.78 698.112,1003.02 699.178,1001.26 700.243,999.489 701.309,997.718 702.375,995.943 703.44,994.164 704.506,992.381 \n",
+       "  705.572,990.594 706.638,988.803 707.703,987.007 708.769,985.208 709.835,983.404 710.9,981.597 711.966,979.785 713.032,977.969 714.097,976.149 715.163,974.326 \n",
+       "  716.229,972.498 717.295,970.666 718.36,968.83 719.426,966.989 720.492,965.145 721.557,963.297 722.623,961.445 723.689,959.588 724.755,957.728 725.82,955.863 \n",
+       "  726.886,953.995 727.952,952.122 729.017,950.245 730.083,948.365 731.149,946.48 732.214,944.591 733.28,942.698 734.346,940.801 735.412,938.9 736.477,936.994 \n",
+       "  737.543,935.085 738.609,933.172 739.674,931.254 740.74,929.333 741.806,927.407 742.872,925.478 743.937,923.544 745.003,921.606 746.069,919.665 747.134,917.719 \n",
+       "  748.2,915.769 749.266,913.815 750.331,911.857 751.397,909.895 752.463,907.929 753.529,905.958 754.594,903.984 755.66,902.006 756.726,900.023 757.791,898.037 \n",
+       "  758.857,896.046 759.923,894.051 760.989,892.053 762.054,890.05 763.12,888.043 764.186,886.032 765.251,884.017 766.317,881.998 767.383,879.975 768.448,877.948 \n",
+       "  769.514,875.916 770.58,873.881 771.646,871.842 772.711,869.798 773.777,867.751 774.843,865.699 775.908,863.644 776.974,861.584 778.04,859.52 779.106,857.452 \n",
+       "  780.171,855.38 781.237,853.304 782.303,851.224 783.368,849.14 784.434,847.052 785.5,844.96 786.565,842.863 787.631,840.763 788.697,838.659 789.763,836.55 \n",
+       "  790.828,834.437 791.894,832.321 792.96,830.2 794.025,828.075 795.091,825.946 796.157,823.813 797.223,821.676 798.288,819.535 799.354,817.39 800.42,815.241 \n",
+       "  801.485,813.088 802.551,810.931 803.617,808.769 804.682,806.604 805.748,804.434 806.814,802.261 807.88,800.083 808.945,797.901 810.011,795.715 811.077,793.526 \n",
+       "  812.142,791.332 813.208,789.134 814.274,786.932 815.34,784.726 816.405,782.515 817.471,780.301 818.537,778.083 819.602,775.86 820.668,773.634 821.734,771.403 \n",
+       "  822.799,769.169 823.865,766.93 824.931,764.688 825.997,762.441 827.062,760.19 828.128,757.935 829.194,755.676 830.259,753.413 831.325,751.146 832.391,748.875 \n",
+       "  833.457,746.599 834.522,744.32 835.588,742.037 836.654,739.749 837.719,737.458 838.785,735.162 839.851,732.863 840.916,730.559 841.982,728.251 843.048,725.939 \n",
+       "  844.114,723.623 845.179,721.303 846.245,718.979 847.311,716.651 848.376,714.319 849.442,711.983 850.508,709.642 851.574,707.298 852.639,704.95 853.705,702.597 \n",
+       "  854.771,700.24 855.836,697.88 856.902,695.515 857.968,693.146 859.033,690.773 860.099,688.397 861.165,686.016 862.231,683.631 863.296,681.241 864.362,678.848 \n",
+       "  865.428,676.451 866.493,674.05 867.559,671.644 868.625,669.235 869.691,666.821 870.756,664.404 871.822,661.982 872.888,659.556 873.953,657.127 875.019,654.693 \n",
+       "  876.085,652.255 877.15,649.813 878.216,647.367 879.282,644.917 880.348,642.463 881.413,640.004 882.479,637.542 883.545,635.076 884.61,632.605 885.676,630.131 \n",
+       "  886.742,627.652 887.808,625.169 888.873,622.683 889.939,620.192 891.005,617.697 892.07,615.198 893.136,612.695 894.202,610.188 895.267,607.677 896.333,605.162 \n",
+       "  897.399,602.643 898.465,600.119 899.53,597.592 900.596,595.061 901.662,592.525 902.727,589.985 903.793,587.442 904.859,584.894 905.925,582.342 906.99,579.786 \n",
+       "  908.056,577.227 909.122,574.663 910.187,572.095 911.253,569.522 912.319,566.946 913.384,564.366 914.45,561.782 915.516,559.193 916.582,556.601 917.647,554.004 \n",
+       "  918.713,551.404 919.779,548.799 920.844,546.19 921.91,543.578 922.976,540.961 924.042,538.34 925.107,535.715 926.173,533.086 927.239,530.453 928.304,527.816 \n",
+       "  929.37,525.174 930.436,522.529 931.501,519.88 932.567,517.226 933.633,514.569 934.699,511.907 935.764,509.242 936.83,506.572 937.896,503.898 938.961,501.22 \n",
+       "  940.027,498.538 941.093,495.852 942.159,493.162 943.224,490.468 944.29,487.77 945.356,485.068 946.421,482.362 947.487,479.651 948.553,476.937 949.618,474.218 \n",
+       "  950.684,471.496 951.75,468.769 952.816,466.038 953.881,463.304 954.947,460.565 956.013,457.822 957.078,455.075 958.144,452.324 959.21,449.569 960.276,446.809 \n",
+       "  961.341,444.046 962.407,441.279 963.473,438.508 964.538,435.732 965.604,432.953 966.67,430.169 967.735,427.381 968.801,424.59 969.867,421.794 970.933,418.994 \n",
+       "  971.998,416.19 973.064,413.382 974.13,410.57 975.195,407.754 976.261,404.934 977.327,402.11 978.393,399.281 979.458,396.449 980.524,393.613 981.59,390.772 \n",
+       "  982.655,387.928 983.721,385.079 984.787,382.226 985.852,379.369 986.918,376.509 987.984,373.644 989.05,370.775 990.115,367.902 991.181,365.025 992.247,362.143 \n",
+       "  993.312,359.258 994.378,356.369 995.444,353.476 996.51,350.578 997.575,347.677 998.641,344.771 999.707,341.861 1000.77,338.948 1001.84,336.03 1002.9,333.108 \n",
+       "  1003.97,330.182 1005.04,327.252 1006.1,324.318 1007.17,321.38 1008.23,318.438 1009.3,315.492 1010.36,312.541 1011.43,309.587 1012.5,306.629 1013.56,303.666 \n",
+       "  1014.63,300.7 1015.69,297.729 1016.76,294.754 1017.82,291.775 1018.89,288.793 1019.96,285.806 1021.02,282.815 1022.09,279.82 1023.15,276.821 1024.22,273.817 \n",
+       "  1025.28,270.81 1026.35,267.799 1027.41,264.784 1028.48,261.764 1029.55,258.741 1030.61,255.713 1031.68,252.681 1032.74,249.646 1033.81,246.606 1034.87,243.562 \n",
+       "  1035.94,240.514 1037.01,237.462 1038.07,234.406 1039.14,231.346 1040.2,228.282 1041.27,225.214 1042.33,222.141 1043.4,219.065 1044.47,215.985 1045.53,212.9 \n",
+       "  1046.6,209.812 1047.66,206.719 1048.73,203.622 1049.79,200.521 1050.86,197.417 1051.93,194.308 1052.99,191.195 1054.06,188.078 1055.12,184.957 1056.19,181.831 \n",
+       "  1057.25,178.702 1058.32,175.569 1059.39,172.432 1060.45,169.29 1061.52,166.145 1062.58,162.995 1063.65,159.841 1064.71,156.684 1065.78,153.522 1066.85,150.356 \n",
+       "  1067.91,147.186 1068.98,144.012 1070.04,140.834 1071.11,137.652 1072.17,134.466 1073.24,131.276 1074.31,128.082 1075.37,124.883 1076.44,121.681 1077.5,118.474 \n",
+       "  1078.57,115.264 1079.63,112.049 1080.7,108.83 1081.77,105.608 1082.83,102.381 1083.9,99.1499 1084.96,95.915 1086.03,92.6759 1087.09,89.4328 1088.16,86.1857 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"\n",
+       "M955.035 1377.32 L1083.62 1377.32 L1083.62 1256.36 L955.035 1256.36  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  955.035,1377.32 1083.62,1377.32 1083.62,1256.36 955.035,1256.36 955.035,1377.32 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  965.064,1316.84 1025.24,1316.84 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"M 0 0 M1060.42 1315.99 Q1060.42 1318.36 1059.2 1320.72 Q1057.99 1323.09 1055.99 1324.92 Q1054 1326.72 1051.29 1327.89 Q1048.57 1329.06 1045.74 1329.16 L1043.91 1336.3 Q1043.56 1338.03 1043.37 1338.22 Q1043.18 1338.41 1042.9 1338.41 Q1042.32 1338.41 1042.32 1337.87 Q1042.32 1337.7 1043.37 1333.65 L1044.49 1329.16 Q1040.23 1328.92 1037.75 1326.46 Q1035.27 1324 1035.27 1320.47 Q1035.27 1318.08 1036.48 1315.71 Q1037.72 1313.32 1039.72 1311.52 Q1041.73 1309.71 1044.45 1308.57 Q1047.16 1307.42 1049.95 1307.33 L1052.74 1296.25 Q1052.88 1295.61 1053 1295.45 Q1053.11 1295.29 1053.46 1295.29 Q1053.72 1295.29 1053.86 1295.4 Q1054 1295.52 1054 1295.64 L1054.03 1295.75 L1053.89 1296.43 L1051.19 1307.33 Q1053.58 1307.49 1055.43 1308.33 Q1057.28 1309.18 1058.34 1310.44 Q1059.39 1311.68 1059.91 1313.09 Q1060.42 1314.49 1060.42 1315.99 M1049.67 1308.38 Q1047.09 1308.61 1044.92 1309.88 Q1042.74 1311.14 1041.33 1313.02 Q1039.93 1314.87 1039.15 1317.09 Q1038.38 1319.29 1038.38 1321.47 Q1038.38 1323.18 1038.94 1324.49 Q1039.53 1325.81 1040.49 1326.56 Q1041.45 1327.28 1042.5 1327.68 Q1043.58 1328.05 1044.73 1328.1 L1049.67 1308.38 M1057.28 1314.98 Q1057.28 1311.94 1055.53 1310.23 Q1053.77 1308.52 1050.91 1308.38 L1045.97 1328.1 Q1048.05 1327.94 1049.88 1327.07 Q1051.73 1326.18 1053.07 1324.87 Q1054.4 1323.53 1055.36 1321.89 Q1056.32 1320.23 1056.79 1318.47 Q1057.28 1316.69 1057.28 1314.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"\n",
+       "M1450.17 1423.18 L2352.76 1423.18 L2352.76 47.2441 L1450.17 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip633\">\n",
+       "    <rect x=\"1450\" y=\"47\" width=\"904\" height=\"1377\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1475.71,1423.18 1475.71,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1646.01,1423.18 1646.01,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1816.31,1423.18 1816.31,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1986.61,1423.18 1986.61,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2156.91,1423.18 2156.91,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2327.21,1423.18 2327.21,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1450.17,1360.49 2352.76,1360.49 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1450.17,1037.2 2352.76,1037.2 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1450.17,713.91 2352.76,713.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1450.17,390.621 2352.76,390.621 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip633)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1450.17,67.3314 2352.76,67.3314 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,1423.18 2352.76,1423.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,1423.18 1450.17,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1475.71,1423.18 1475.71,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1646.01,1423.18 1646.01,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1816.31,1423.18 1816.31,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1986.61,1423.18 1986.61,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2156.91,1423.18 2156.91,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2327.21,1423.18 2327.21,1406.67 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,1360.49 1461,1360.49 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,1037.2 1461,1037.2 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,713.91 1461,713.91 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,390.621 1461,390.621 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1450.17,67.3314 1461,67.3314 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"M 0 0 M1475.71 1445.17 Q1472.1 1445.17 1470.27 1448.74 Q1468.47 1452.28 1468.47 1459.41 Q1468.47 1466.51 1470.27 1470.08 Q1472.1 1473.62 1475.71 1473.62 Q1479.35 1473.62 1481.15 1470.08 Q1482.98 1466.51 1482.98 1459.41 Q1482.98 1452.28 1481.15 1448.74 Q1479.35 1445.17 1475.71 1445.17 M1475.71 1441.47 Q1481.52 1441.47 1484.58 1446.07 Q1487.66 1450.66 1487.66 1459.41 Q1487.66 1468.13 1484.58 1472.74 Q1481.52 1477.32 1475.71 1477.32 Q1469.9 1477.32 1466.82 1472.74 Q1463.77 1468.13 1463.77 1459.41 Q1463.77 1450.66 1466.82 1446.07 Q1469.9 1441.47 1475.71 1441.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1636.39 1472.72 L1644.03 1472.72 L1644.03 1446.35 L1635.72 1448.02 L1635.72 1443.76 L1643.99 1442.09 L1648.66 1442.09 L1648.66 1472.72 L1656.3 1472.72 L1656.3 1476.65 L1636.39 1476.65 L1636.39 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1810.96 1472.72 L1827.28 1472.72 L1827.28 1476.65 L1805.34 1476.65 L1805.34 1472.72 Q1808 1469.96 1812.58 1465.33 Q1817.19 1460.68 1818.37 1459.34 Q1820.62 1456.81 1821.5 1455.08 Q1822.4 1453.32 1822.4 1451.63 Q1822.4 1448.87 1820.46 1447.14 Q1818.53 1445.4 1815.43 1445.4 Q1813.23 1445.4 1810.78 1446.17 Q1808.35 1446.93 1805.57 1448.48 L1805.57 1443.76 Q1808.39 1442.62 1810.85 1442.05 Q1813.3 1441.47 1815.34 1441.47 Q1820.71 1441.47 1823.9 1444.15 Q1827.1 1446.84 1827.1 1451.33 Q1827.1 1453.46 1826.29 1455.38 Q1825.5 1457.28 1823.39 1459.87 Q1822.82 1460.54 1819.71 1463.76 Q1816.61 1466.95 1810.96 1472.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1990.86 1458.02 Q1994.22 1458.74 1996.09 1461 Q1997.99 1463.27 1997.99 1466.61 Q1997.99 1471.72 1994.47 1474.52 Q1990.95 1477.32 1984.47 1477.32 Q1982.29 1477.32 1979.98 1476.88 Q1977.69 1476.47 1975.23 1475.61 L1975.23 1471.1 Q1977.18 1472.23 1979.49 1472.81 Q1981.81 1473.39 1984.33 1473.39 Q1988.73 1473.39 1991.02 1471.65 Q1993.34 1469.92 1993.34 1466.61 Q1993.34 1463.55 1991.18 1461.84 Q1989.05 1460.1 1985.23 1460.1 L1981.21 1460.1 L1981.21 1456.26 L1985.42 1456.26 Q1988.87 1456.26 1990.7 1454.89 Q1992.53 1453.5 1992.53 1450.91 Q1992.53 1448.25 1990.63 1446.84 Q1988.75 1445.4 1985.23 1445.4 Q1983.31 1445.4 1981.11 1445.82 Q1978.91 1446.24 1976.28 1447.11 L1976.28 1442.95 Q1978.94 1442.21 1981.25 1441.84 Q1983.59 1441.47 1985.65 1441.47 Q1990.97 1441.47 1994.08 1443.9 Q1997.18 1446.3 1997.18 1450.43 Q1997.18 1453.3 1995.53 1455.29 Q1993.89 1457.25 1990.86 1458.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M2159.92 1446.17 L2148.11 1464.61 L2159.92 1464.61 L2159.92 1446.17 M2158.69 1442.09 L2164.57 1442.09 L2164.57 1464.61 L2169.5 1464.61 L2169.5 1468.5 L2164.57 1468.5 L2164.57 1476.65 L2159.92 1476.65 L2159.92 1468.5 L2144.32 1468.5 L2144.32 1463.99 L2158.69 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M2317.49 1442.09 L2335.85 1442.09 L2335.85 1446.03 L2321.77 1446.03 L2321.77 1454.5 Q2322.79 1454.15 2323.81 1453.99 Q2324.83 1453.8 2325.85 1453.8 Q2331.63 1453.8 2335.01 1456.98 Q2338.39 1460.15 2338.39 1465.56 Q2338.39 1471.14 2334.92 1474.24 Q2331.45 1477.32 2325.13 1477.32 Q2322.95 1477.32 2320.68 1476.95 Q2318.44 1476.58 2316.03 1475.84 L2316.03 1471.14 Q2318.11 1472.28 2320.34 1472.83 Q2322.56 1473.39 2325.04 1473.39 Q2329.04 1473.39 2331.38 1471.28 Q2333.72 1469.18 2333.72 1465.56 Q2333.72 1461.95 2331.38 1459.85 Q2329.04 1457.74 2325.04 1457.74 Q2323.16 1457.74 2321.29 1458.16 Q2319.43 1458.57 2317.49 1459.45 L2317.49 1442.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1302.83 1359.13 Q1306.19 1359.85 1308.07 1362.12 Q1309.96 1364.39 1309.96 1367.72 Q1309.96 1372.84 1306.45 1375.64 Q1302.93 1378.44 1296.45 1378.44 Q1294.27 1378.44 1291.95 1378 Q1289.66 1377.58 1287.21 1376.73 L1287.21 1372.21 Q1289.15 1373.35 1291.47 1373.93 Q1293.78 1374.5 1296.31 1374.5 Q1300.7 1374.5 1303 1372.77 Q1305.31 1371.03 1305.31 1367.72 Q1305.31 1364.67 1303.16 1362.95 Q1301.03 1361.22 1297.21 1361.22 L1293.18 1361.22 L1293.18 1357.37 L1297.39 1357.37 Q1300.84 1357.37 1302.67 1356.01 Q1304.5 1354.62 1304.5 1352.03 Q1304.5 1349.37 1302.6 1347.95 Q1300.73 1346.52 1297.21 1346.52 Q1295.29 1346.52 1293.09 1346.93 Q1290.89 1347.35 1288.25 1348.23 L1288.25 1344.06 Q1290.91 1343.32 1293.23 1342.95 Q1295.57 1342.58 1297.63 1342.58 Q1302.95 1342.58 1306.05 1345.01 Q1309.15 1347.42 1309.15 1351.54 Q1309.15 1354.41 1307.51 1356.4 Q1305.87 1358.37 1302.83 1359.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1315.03 1371.89 L1319.92 1371.89 L1319.92 1377.77 L1315.03 1377.77 L1315.03 1371.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1325.8 1373.83 L1333.44 1373.83 L1333.44 1347.47 L1325.13 1349.13 L1325.13 1344.87 L1333.39 1343.21 L1338.07 1343.21 L1338.07 1373.83 L1345.7 1373.83 L1345.7 1377.77 L1325.8 1377.77 L1325.8 1373.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1363.62 1347.28 L1351.82 1365.73 L1363.62 1365.73 L1363.62 1347.28 M1362.39 1343.21 L1368.27 1343.21 L1368.27 1365.73 L1373.2 1365.73 L1373.2 1369.62 L1368.27 1369.62 L1368.27 1377.77 L1363.62 1377.77 L1363.62 1369.62 L1348.02 1369.62 L1348.02 1365.11 L1362.39 1343.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1379.08 1373.83 L1386.72 1373.83 L1386.72 1347.47 L1378.41 1349.13 L1378.41 1344.87 L1386.68 1343.21 L1391.35 1343.21 L1391.35 1373.83 L1398.99 1373.83 L1398.99 1377.77 L1379.08 1377.77 L1379.08 1373.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1414.64 1358.62 Q1411.49 1358.62 1409.64 1360.78 Q1407.81 1362.93 1407.81 1366.68 Q1407.81 1370.41 1409.64 1372.58 Q1411.49 1374.74 1414.64 1374.74 Q1417.79 1374.74 1419.62 1372.58 Q1421.47 1370.41 1421.47 1366.68 Q1421.47 1362.93 1419.62 1360.78 Q1417.79 1358.62 1414.64 1358.62 M1423.92 1343.97 L1423.92 1348.23 Q1422.16 1347.4 1420.36 1346.96 Q1418.57 1346.52 1416.82 1346.52 Q1412.19 1346.52 1409.73 1349.64 Q1407.3 1352.77 1406.95 1359.09 Q1408.32 1357.07 1410.38 1356.01 Q1412.44 1354.92 1414.92 1354.92 Q1420.13 1354.92 1423.13 1358.09 Q1426.17 1361.24 1426.17 1366.68 Q1426.17 1372 1423.02 1375.22 Q1419.87 1378.44 1414.64 1378.44 Q1408.64 1378.44 1405.47 1373.86 Q1402.3 1369.25 1402.3 1360.52 Q1402.3 1352.33 1406.19 1347.47 Q1410.08 1342.58 1416.63 1342.58 Q1418.39 1342.58 1420.17 1342.93 Q1421.98 1343.28 1423.92 1343.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1303.9 1035.84 Q1307.26 1036.56 1309.13 1038.83 Q1311.03 1041.1 1311.03 1044.43 Q1311.03 1049.55 1307.51 1052.35 Q1303.99 1055.15 1297.51 1055.15 Q1295.33 1055.15 1293.02 1054.71 Q1290.73 1054.29 1288.27 1053.44 L1288.27 1048.92 Q1290.22 1050.06 1292.53 1050.64 Q1294.85 1051.22 1297.37 1051.22 Q1301.77 1051.22 1304.06 1049.48 Q1306.38 1047.74 1306.38 1044.43 Q1306.38 1041.38 1304.22 1039.66 Q1302.09 1037.93 1298.27 1037.93 L1294.25 1037.93 L1294.25 1034.09 L1298.46 1034.09 Q1301.91 1034.09 1303.74 1032.72 Q1305.57 1031.33 1305.57 1028.74 Q1305.57 1026.08 1303.67 1024.66 Q1301.79 1023.23 1298.27 1023.23 Q1296.35 1023.23 1294.15 1023.65 Q1291.95 1024.06 1289.32 1024.94 L1289.32 1020.78 Q1291.98 1020.03 1294.29 1019.66 Q1296.63 1019.29 1298.69 1019.29 Q1304.01 1019.29 1307.12 1021.72 Q1310.22 1024.13 1310.22 1028.25 Q1310.22 1031.12 1308.58 1033.11 Q1306.93 1035.08 1303.9 1035.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1316.1 1048.6 L1320.98 1048.6 L1320.98 1054.48 L1316.1 1054.48 L1316.1 1048.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1326.86 1050.54 L1334.5 1050.54 L1334.5 1024.18 L1326.19 1025.84 L1326.19 1021.59 L1334.45 1019.92 L1339.13 1019.92 L1339.13 1050.54 L1346.77 1050.54 L1346.77 1054.48 L1326.86 1054.48 L1326.86 1050.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1364.69 1023.99 L1352.88 1042.44 L1364.69 1042.44 L1364.69 1023.99 M1363.46 1019.92 L1369.34 1019.92 L1369.34 1042.44 L1374.27 1042.44 L1374.27 1046.33 L1369.34 1046.33 L1369.34 1054.48 L1364.69 1054.48 L1364.69 1046.33 L1349.08 1046.33 L1349.08 1041.82 L1363.46 1019.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1380.15 1050.54 L1387.79 1050.54 L1387.79 1024.18 L1379.48 1025.84 L1379.48 1021.59 L1387.74 1019.92 L1392.42 1019.92 L1392.42 1050.54 L1400.06 1050.54 L1400.06 1054.48 L1380.15 1054.48 L1380.15 1050.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1403.94 1019.92 L1426.17 1019.92 L1426.17 1021.91 L1413.62 1054.48 L1408.74 1054.48 L1420.54 1023.85 L1403.94 1023.85 L1403.94 1019.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1303.09 712.556 Q1306.45 713.273 1308.32 715.542 Q1310.22 717.81 1310.22 721.144 Q1310.22 726.259 1306.7 729.06 Q1303.18 731.861 1296.7 731.861 Q1294.52 731.861 1292.21 731.421 Q1289.92 731.005 1287.46 730.148 L1287.46 725.634 Q1289.41 726.768 1291.72 727.347 Q1294.04 727.926 1296.56 727.926 Q1300.96 727.926 1303.25 726.19 Q1305.57 724.454 1305.57 721.144 Q1305.57 718.088 1303.41 716.375 Q1301.28 714.639 1297.46 714.639 L1293.44 714.639 L1293.44 710.796 L1297.65 710.796 Q1301.1 710.796 1302.93 709.431 Q1304.76 708.042 1304.76 705.449 Q1304.76 702.787 1302.86 701.375 Q1300.98 699.94 1297.46 699.94 Q1295.54 699.94 1293.34 700.357 Q1291.14 700.773 1288.51 701.653 L1288.51 697.486 Q1291.17 696.745 1293.48 696.375 Q1295.82 696.005 1297.88 696.005 Q1303.2 696.005 1306.31 698.435 Q1309.41 700.843 1309.41 704.963 Q1309.41 707.833 1307.76 709.824 Q1306.12 711.792 1303.09 712.556 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1315.29 725.31 L1320.17 725.31 L1320.17 731.19 L1315.29 731.19 L1315.29 725.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1326.05 727.255 L1333.69 727.255 L1333.69 700.889 L1325.38 702.556 L1325.38 698.296 L1333.64 696.63 L1338.32 696.63 L1338.32 727.255 L1345.96 727.255 L1345.96 731.19 L1326.05 731.19 L1326.05 727.255 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1363.88 700.704 L1352.07 719.153 L1363.88 719.153 L1363.88 700.704 M1362.65 696.63 L1368.53 696.63 L1368.53 719.153 L1373.46 719.153 L1373.46 723.042 L1368.53 723.042 L1368.53 731.19 L1363.88 731.19 L1363.88 723.042 L1348.27 723.042 L1348.27 718.528 L1362.65 696.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1379.34 727.255 L1386.98 727.255 L1386.98 700.889 L1378.67 702.556 L1378.67 698.296 L1386.93 696.63 L1391.61 696.63 L1391.61 727.255 L1399.25 727.255 L1399.25 731.19 L1379.34 731.19 L1379.34 727.255 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1414.32 714.778 Q1410.98 714.778 1409.06 716.56 Q1407.16 718.343 1407.16 721.468 Q1407.16 724.593 1409.06 726.375 Q1410.98 728.157 1414.32 728.157 Q1417.65 728.157 1419.57 726.375 Q1421.49 724.569 1421.49 721.468 Q1421.49 718.343 1419.57 716.56 Q1417.67 714.778 1414.32 714.778 M1409.64 712.787 Q1406.63 712.046 1404.94 709.986 Q1403.27 707.926 1403.27 704.963 Q1403.27 700.82 1406.21 698.412 Q1409.18 696.005 1414.32 696.005 Q1419.48 696.005 1422.42 698.412 Q1425.36 700.82 1425.36 704.963 Q1425.36 707.926 1423.67 709.986 Q1422 712.046 1419.01 712.787 Q1422.39 713.574 1424.27 715.866 Q1426.17 718.157 1426.17 721.468 Q1426.17 726.491 1423.09 729.176 Q1420.03 731.861 1414.32 731.861 Q1408.6 731.861 1405.52 729.176 Q1402.46 726.491 1402.46 721.468 Q1402.46 718.157 1404.36 715.866 Q1406.26 713.574 1409.64 712.787 M1407.93 705.403 Q1407.93 708.088 1409.59 709.593 Q1411.28 711.097 1414.32 711.097 Q1417.32 711.097 1419.01 709.593 Q1420.73 708.088 1420.73 705.403 Q1420.73 702.718 1419.01 701.213 Q1417.32 699.708 1414.32 699.708 Q1411.28 699.708 1409.59 701.213 Q1407.93 702.718 1407.93 705.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1303.18 389.266 Q1306.54 389.984 1308.41 392.252 Q1310.31 394.521 1310.31 397.854 Q1310.31 402.97 1306.79 405.771 Q1303.27 408.572 1296.79 408.572 Q1294.62 408.572 1292.3 408.132 Q1290.01 407.715 1287.56 406.859 L1287.56 402.345 Q1289.5 403.479 1291.82 404.058 Q1294.13 404.637 1296.65 404.637 Q1301.05 404.637 1303.34 402.901 Q1305.66 401.164 1305.66 397.854 Q1305.66 394.799 1303.51 393.086 Q1301.38 391.35 1297.56 391.35 L1293.53 391.35 L1293.53 387.507 L1297.74 387.507 Q1301.19 387.507 1303.02 386.141 Q1304.85 384.753 1304.85 382.16 Q1304.85 379.498 1302.95 378.086 Q1301.08 376.651 1297.56 376.651 Q1295.64 376.651 1293.44 377.067 Q1291.24 377.484 1288.6 378.364 L1288.6 374.197 Q1291.26 373.456 1293.58 373.086 Q1295.91 372.716 1297.97 372.716 Q1303.3 372.716 1306.4 375.146 Q1309.5 377.553 1309.5 381.674 Q1309.5 384.544 1307.86 386.535 Q1306.21 388.503 1303.18 389.266 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1315.38 402.021 L1320.26 402.021 L1320.26 407.901 L1315.38 407.901 L1315.38 402.021 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1326.14 403.965 L1333.78 403.965 L1333.78 377.6 L1325.47 379.266 L1325.47 375.007 L1333.74 373.341 L1338.41 373.341 L1338.41 403.965 L1346.05 403.965 L1346.05 407.901 L1326.14 407.901 L1326.14 403.965 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1363.97 377.415 L1352.16 395.864 L1363.97 395.864 L1363.97 377.415 M1362.74 373.341 L1368.62 373.341 L1368.62 395.864 L1373.55 395.864 L1373.55 399.752 L1368.62 399.752 L1368.62 407.901 L1363.97 407.901 L1363.97 399.752 L1348.37 399.752 L1348.37 395.239 L1362.74 373.341 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1379.43 403.965 L1387.07 403.965 L1387.07 377.6 L1378.76 379.266 L1378.76 375.007 L1387.02 373.341 L1391.7 373.341 L1391.7 403.965 L1399.34 403.965 L1399.34 407.901 L1379.43 407.901 L1379.43 403.965 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1404.55 407.183 L1404.55 402.924 Q1406.31 403.757 1408.11 404.197 Q1409.92 404.637 1411.65 404.637 Q1416.28 404.637 1418.71 401.535 Q1421.17 398.41 1421.51 392.067 Q1420.17 394.058 1418.11 395.123 Q1416.05 396.188 1413.55 396.188 Q1408.37 396.188 1405.33 393.063 Q1402.32 389.915 1402.32 384.475 Q1402.32 379.151 1405.47 375.933 Q1408.62 372.716 1413.85 372.716 Q1419.85 372.716 1423 377.322 Q1426.17 381.905 1426.17 390.655 Q1426.17 398.827 1422.28 403.711 Q1418.41 408.572 1411.86 408.572 Q1410.1 408.572 1408.3 408.225 Q1406.49 407.877 1404.55 407.183 M1413.85 392.53 Q1417 392.53 1418.83 390.378 Q1420.68 388.225 1420.68 384.475 Q1420.68 380.748 1418.83 378.595 Q1417 376.419 1413.85 376.419 Q1410.7 376.419 1408.85 378.595 Q1407.02 380.748 1407.02 384.475 Q1407.02 388.225 1408.85 390.378 Q1410.7 392.53 1413.85 392.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1303.37 65.9772 Q1306.72 66.6948 1308.6 68.9633 Q1310.5 71.2318 1310.5 74.5651 Q1310.5 79.6808 1306.98 82.4818 Q1303.46 85.2827 1296.98 85.2827 Q1294.8 85.2827 1292.49 84.8429 Q1290.2 84.4262 1287.74 83.5697 L1287.74 79.0558 Q1289.69 80.1901 1292 80.7688 Q1294.32 81.3475 1296.84 81.3475 Q1301.24 81.3475 1303.53 79.6114 Q1305.84 77.8753 1305.84 74.5651 Q1305.84 71.5096 1303.69 69.7966 Q1301.56 68.0605 1297.74 68.0605 L1293.71 68.0605 L1293.71 64.218 L1297.93 64.218 Q1301.38 64.218 1303.2 62.8522 Q1305.03 61.4633 1305.03 58.8708 Q1305.03 56.2087 1303.14 54.7967 Q1301.26 53.3615 1297.74 53.3615 Q1295.82 53.3615 1293.62 53.7782 Q1291.42 54.1949 1288.78 55.0745 L1288.78 50.9078 Q1291.45 50.1671 1293.76 49.7967 Q1296.1 49.4264 1298.16 49.4264 Q1303.48 49.4264 1306.58 51.8569 Q1309.69 54.2643 1309.69 58.3847 Q1309.69 61.255 1308.04 63.2457 Q1306.4 65.2133 1303.37 65.9772 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1315.57 78.7318 L1320.45 78.7318 L1320.45 84.6114 L1315.57 84.6114 L1315.57 78.7318 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1326.33 80.6762 L1333.97 80.6762 L1333.97 54.3106 L1325.66 55.9773 L1325.66 51.718 L1333.92 50.0514 L1338.6 50.0514 L1338.6 80.6762 L1346.24 80.6762 L1346.24 84.6114 L1326.33 84.6114 L1326.33 80.6762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1364.15 54.1254 L1352.35 72.5744 L1364.15 72.5744 L1364.15 54.1254 M1362.93 50.0514 L1368.81 50.0514 L1368.81 72.5744 L1373.74 72.5744 L1373.74 76.4633 L1368.81 76.4633 L1368.81 84.6114 L1364.15 84.6114 L1364.15 76.4633 L1348.55 76.4633 L1348.55 71.9494 L1362.93 50.0514 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1382.83 80.6762 L1399.15 80.6762 L1399.15 84.6114 L1377.21 84.6114 L1377.21 80.6762 Q1379.87 77.9216 1384.45 73.292 Q1389.06 68.6392 1390.24 67.2966 Q1392.49 64.7735 1393.37 63.0374 Q1394.27 61.2782 1394.27 59.5884 Q1394.27 56.8337 1392.32 55.0976 Q1390.4 53.3615 1387.3 53.3615 Q1385.1 53.3615 1382.65 54.1254 Q1380.22 54.8893 1377.44 56.4402 L1377.44 51.718 Q1380.26 50.5838 1382.72 50.0051 Q1385.17 49.4264 1387.21 49.4264 Q1392.58 49.4264 1395.77 52.1115 Q1398.97 54.7967 1398.97 59.2874 Q1398.97 61.4171 1398.16 63.3383 Q1397.37 65.2365 1395.26 67.8291 Q1394.69 68.5003 1391.58 71.7179 Q1388.48 74.9123 1382.83 80.6762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1414.22 53.1301 Q1410.61 53.1301 1408.78 56.6949 Q1406.98 60.2365 1406.98 67.3661 Q1406.98 74.4725 1408.78 78.0373 Q1410.61 81.579 1414.22 81.579 Q1417.86 81.579 1419.66 78.0373 Q1421.49 74.4725 1421.49 67.3661 Q1421.49 60.2365 1419.66 56.6949 Q1417.86 53.1301 1414.22 53.1301 M1414.22 49.4264 Q1420.03 49.4264 1423.09 54.0328 Q1426.17 58.6161 1426.17 67.3661 Q1426.17 76.0929 1423.09 80.6994 Q1420.03 85.2827 1414.22 85.2827 Q1408.41 85.2827 1405.33 80.6994 Q1402.28 76.0929 1402.28 67.3661 Q1402.28 58.6161 1405.33 54.0328 Q1408.41 49.4264 1414.22 49.4264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1847.23 1510.27 L1847.23 1520.4 L1859.29 1520.4 L1859.29 1524.95 L1847.23 1524.95 L1847.23 1544.3 Q1847.23 1548.66 1848.4 1549.9 Q1849.61 1551.14 1853.27 1551.14 L1859.29 1551.14 L1859.29 1556.04 L1853.27 1556.04 Q1846.49 1556.04 1843.92 1553.53 Q1841.34 1550.98 1841.34 1544.3 L1841.34 1524.95 L1837.04 1524.95 L1837.04 1520.4 L1841.34 1520.4 L1841.34 1510.27 L1847.23 1510.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1865.43 1520.4 L1871.29 1520.4 L1871.29 1556.04 L1865.43 1556.04 L1865.43 1520.4 M1865.43 1506.52 L1871.29 1506.52 L1871.29 1513.93 L1865.43 1513.93 L1865.43 1506.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1905.19 1527.24 Q1907.38 1523.29 1910.44 1521.41 Q1913.49 1519.54 1917.63 1519.54 Q1923.2 1519.54 1926.22 1523.45 Q1929.25 1527.33 1929.25 1534.53 L1929.25 1556.04 L1923.36 1556.04 L1923.36 1534.72 Q1923.36 1529.59 1921.55 1527.11 Q1919.73 1524.63 1916.01 1524.63 Q1911.46 1524.63 1908.81 1527.65 Q1906.17 1530.68 1906.17 1535.9 L1906.17 1556.04 L1900.28 1556.04 L1900.28 1534.72 Q1900.28 1529.56 1898.47 1527.11 Q1896.66 1524.63 1892.87 1524.63 Q1888.38 1524.63 1885.74 1527.68 Q1883.1 1530.71 1883.1 1535.9 L1883.1 1556.04 L1877.21 1556.04 L1877.21 1520.4 L1883.1 1520.4 L1883.1 1525.93 Q1885.1 1522.66 1887.9 1521.1 Q1890.7 1519.54 1894.55 1519.54 Q1898.44 1519.54 1901.14 1521.51 Q1903.88 1523.48 1905.19 1527.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1965.88 1536.76 L1965.88 1539.62 L1938.96 1539.62 Q1939.34 1545.67 1942.58 1548.85 Q1945.86 1552 1951.69 1552 Q1955.06 1552 1958.21 1551.17 Q1961.39 1550.35 1964.51 1548.69 L1964.51 1554.23 Q1961.36 1555.57 1958.05 1556.27 Q1954.74 1556.97 1951.34 1556.97 Q1942.81 1556.97 1937.81 1552 Q1932.84 1547.04 1932.84 1538.57 Q1932.84 1529.82 1937.56 1524.69 Q1942.3 1519.54 1950.32 1519.54 Q1957.51 1519.54 1961.68 1524.18 Q1965.88 1528.8 1965.88 1536.76 M1960.03 1535.04 Q1959.96 1530.23 1957.32 1527.37 Q1954.71 1524.5 1950.38 1524.5 Q1945.48 1524.5 1942.52 1527.27 Q1939.59 1530.04 1939.15 1535.07 L1960.03 1535.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1231.03 791.771 Q1231.03 798.869 1232.66 801.606 Q1234.28 804.344 1238.2 804.344 Q1241.31 804.344 1243.16 802.307 Q1244.97 800.238 1244.97 796.705 Q1244.97 791.835 1241.54 788.907 Q1238.07 785.947 1232.34 785.947 L1231.03 785.947 L1231.03 791.771 M1228.62 780.09 L1248.95 780.09 L1248.95 785.947 L1243.54 785.947 Q1246.79 787.952 1248.35 790.944 Q1249.88 793.936 1249.88 798.264 Q1249.88 803.739 1246.82 806.985 Q1243.73 810.2 1238.58 810.2 Q1232.56 810.2 1229.51 806.19 Q1226.45 802.147 1226.45 794.158 L1226.45 785.947 L1225.88 785.947 Q1221.84 785.947 1219.64 788.62 Q1217.41 791.262 1217.41 796.068 Q1217.41 799.124 1218.14 802.02 Q1218.88 804.916 1220.34 807.59 L1214.93 807.59 Q1213.69 804.375 1213.08 801.352 Q1212.45 798.328 1212.45 795.463 Q1212.45 787.729 1216.46 783.91 Q1220.47 780.09 1228.62 780.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1227.44 744.315 L1248.95 744.315 L1248.95 750.171 L1227.63 750.171 Q1222.57 750.171 1220.05 752.145 Q1217.54 754.118 1217.54 758.065 Q1217.54 762.807 1220.56 765.545 Q1223.59 768.282 1228.81 768.282 L1248.95 768.282 L1248.95 774.17 L1213.31 774.17 L1213.31 768.282 L1218.84 768.282 Q1215.63 766.181 1214.04 763.348 Q1212.45 760.484 1212.45 756.76 Q1212.45 750.617 1216.27 747.466 Q1220.05 744.315 1227.44 744.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1230.72 714.714 Q1224.35 714.714 1220.85 717.356 Q1217.35 719.966 1217.35 724.709 Q1217.35 729.419 1220.85 732.061 Q1224.35 734.671 1230.72 734.671 Q1237.05 734.671 1240.55 732.061 Q1244.05 729.419 1244.05 724.709 Q1244.05 719.966 1240.55 717.356 Q1237.05 714.714 1230.72 714.714 M1244.53 708.858 Q1253.63 708.858 1258.06 712.9 Q1262.51 716.942 1262.51 725.281 Q1262.51 728.369 1262.03 731.106 Q1261.59 733.843 1260.63 736.421 L1254.94 736.421 Q1256.34 733.843 1257.01 731.329 Q1257.67 728.814 1257.67 726.204 Q1257.67 720.444 1254.65 717.579 Q1251.66 714.714 1245.58 714.714 L1242.68 714.714 Q1245.83 716.529 1247.39 719.361 Q1248.95 722.194 1248.95 726.141 Q1248.95 732.698 1243.96 736.708 Q1238.96 740.718 1230.72 740.718 Q1222.44 740.718 1217.44 736.708 Q1212.45 732.698 1212.45 726.141 Q1212.45 722.194 1214.01 719.361 Q1215.57 716.529 1218.72 714.714 L1213.31 714.714 L1213.31 708.858 L1244.53 708.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1199.43 702.715 L1199.43 696.859 L1248.95 696.859 L1248.95 702.715 L1199.43 702.715 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip630)\" d=\"M 0 0 M1229.67 660.224 L1232.53 660.224 L1232.53 687.151 Q1238.58 686.769 1241.76 683.522 Q1244.91 680.244 1244.91 674.419 Q1244.91 671.046 1244.08 667.895 Q1243.26 664.712 1241.6 661.593 L1247.14 661.593 Q1248.48 664.744 1249.18 668.054 Q1249.88 671.364 1249.88 674.77 Q1249.88 683.3 1244.91 688.297 Q1239.95 693.262 1231.48 693.262 Q1222.73 693.262 1217.6 688.551 Q1212.45 683.809 1212.45 675.788 Q1212.45 668.595 1217.09 664.425 Q1221.71 660.224 1229.67 660.224 M1227.95 666.08 Q1223.14 666.144 1220.28 668.786 Q1217.41 671.396 1217.41 675.724 Q1217.41 680.626 1220.18 683.586 Q1222.95 686.514 1227.98 686.96 L1227.95 666.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip633)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1475.71,1384.24 1476.78,1382.34 1477.84,1376.66 1478.91,1367.22 1479.97,1354.09 1481.04,1337.34 1482.11,1317.07 1483.17,1293.4 1484.24,1266.46 1485.3,1236.42 \n",
+       "  1486.37,1203.45 1487.43,1167.75 1488.5,1129.52 1489.57,1088.99 1490.63,1046.4 1491.7,1002 1492.76,956.039 1493.83,908.801 1494.89,860.557 1495.96,811.593 \n",
+       "  1497.03,762.194 1498.09,712.65 1499.16,663.254 1500.22,614.295 1501.29,566.061 1502.35,518.833 1503.42,472.89 1504.49,428.502 1505.55,385.93 1506.62,345.422 \n",
+       "  1507.68,307.216 1508.75,271.538 1509.81,238.598 1510.88,208.587 1511.95,181.682 1513.01,158.041 1514.08,137.804 1515.14,121.089 1516.21,107.993 1517.27,98.5939 \n",
+       "  1518.34,92.9469 1519.41,91.0853 1520.47,93.02 1521.54,98.7391 1522.6,108.209 1523.67,121.375 1524.73,138.159 1525.8,158.463 1526.87,182.167 1527.93,209.132 \n",
+       "  1529,239.201 1530.06,272.196 1531.13,307.924 1532.19,346.174 1533.26,386.723 1534.33,429.332 1535.39,473.752 1536.46,519.72 1537.52,566.968 1538.59,615.218 \n",
+       "  1539.65,664.187 1540.72,713.588 1541.79,763.129 1542.85,812.52 1543.92,861.472 1544.98,909.698 1546.05,956.913 1547.11,1002.84 1548.18,1047.21 1549.25,1089.76 \n",
+       "  1550.31,1130.25 1551.38,1168.43 1552.44,1204.08 1553.51,1237 1554.57,1266.98 1555.64,1293.85 1556.71,1317.46 1557.77,1337.66 1558.84,1354.34 1559.9,1367.4 \n",
+       "  1560.97,1376.77 1562.03,1382.38 1563.1,1384.2 1564.17,1382.23 1565.23,1376.48 1566.3,1366.97 1567.36,1353.77 1568.43,1336.96 1569.49,1316.62 1570.56,1292.88 \n",
+       "  1571.63,1265.89 1572.69,1235.79 1573.76,1202.77 1574.82,1167.02 1575.89,1128.75 1576.95,1088.18 1578.02,1045.55 1579.09,1001.12 1580.15,955.133 1581.22,907.874 \n",
+       "  1582.28,859.615 1583.35,810.641 1584.41,761.237 1585.48,711.694 1586.55,662.303 1587.61,613.355 1588.68,565.136 1589.74,517.929 1590.81,472.011 1591.87,427.652 \n",
+       "  1592.94,385.114 1594.01,344.645 1595.07,306.482 1596.14,270.85 1597.2,237.957 1598.27,207.997 1599.33,181.147 1600.4,157.564 1601.47,137.385 1602.53,120.729 \n",
+       "  1603.6,107.694 1604.66,98.3574 1605.73,92.7731 1606.79,90.9735 1607.86,92.9694 1608.93,98.7494 1609.99,108.28 1611.06,121.504 1612.12,138.345 1613.19,158.702 \n",
+       "  1614.25,182.458 1615.32,209.473 1616.39,239.588 1617.45,272.625 1618.52,308.392 1619.58,346.677 1620.65,387.258 1621.71,429.895 1622.78,474.337 1623.85,520.324 \n",
+       "  1624.91,567.587 1625.98,615.847 1627.04,664.821 1628.11,714.222 1629.17,763.76 1630.24,813.144 1631.31,862.085 1632.37,910.293 1633.44,957.488 1634.5,1003.39 \n",
+       "  1635.57,1047.73 1636.63,1090.26 1637.7,1130.71 1638.76,1168.85 1639.83,1204.46 1640.9,1237.33 1641.96,1267.27 1643.03,1294.1 1644.09,1317.66 1645.16,1337.81 \n",
+       "  1646.22,1354.44 1647.29,1367.45 1648.36,1376.77 1649.42,1382.33 1650.49,1384.1 1651.55,1382.08 1652.62,1376.27 1653.68,1366.72 1654.75,1353.47 1655.82,1336.61 \n",
+       "  1656.88,1316.23 1657.95,1292.46 1659.01,1265.42 1660.08,1235.29 1661.14,1202.24 1662.21,1166.45 1663.28,1128.15 1664.34,1087.56 1665.41,1044.91 1666.47,1000.46 \n",
+       "  1667.54,954.464 1668.6,907.194 1669.67,858.928 1670.74,809.948 1671.8,760.543 1672.87,711.002 1673.93,661.617 1675,612.677 1676.06,564.469 1677.13,517.275 \n",
+       "  1678.2,471.373 1679.26,427.034 1680.33,384.516 1681.39,344.07 1682.46,305.931 1683.52,270.325 1684.59,237.459 1685.66,207.529 1686.72,180.709 1687.79,157.155 \n",
+       "  1688.85,137.007 1689.92,120.382 1690.98,107.378 1692.05,98.0719 1693.12,92.5177 1694.18,90.7476 1695.25,92.7723 1696.31,98.5803 1697.38,108.137 1698.44,121.387 \n",
+       "  1699.51,138.251 1700.58,158.631 1701.64,182.408 1702.71,209.442 1703.77,239.573 1704.84,272.626 1705.9,308.406 1706.97,346.703 1708.04,387.293 1709.1,429.936 \n",
+       "  1710.17,474.384 1711.23,520.375 1712.3,567.639 1713.36,615.899 1714.43,664.871 1715.5,714.268 1716.56,763.801 1717.63,813.179 1718.69,862.112 1719.76,910.311 \n",
+       "  1720.82,957.496 1721.89,1003.39 1722.96,1047.72 1724.02,1090.23 1725.09,1130.67 1726.15,1168.8 1727.22,1204.4 1728.28,1237.26 1729.35,1267.18 1730.42,1294 \n",
+       "  1731.48,1317.54 1732.55,1337.69 1733.61,1354.31 1734.68,1367.31 1735.74,1376.61 1736.81,1382.16 1737.88,1383.93 1738.94,1381.9 1740.01,1376.09 1741.07,1366.53 \n",
+       "  1742.14,1353.28 1743.2,1336.42 1744.27,1316.04 1745.34,1292.26 1746.4,1265.23 1747.47,1235.1 1748.53,1202.05 1749.6,1166.27 1750.66,1127.97 1751.73,1087.38 \n",
+       "  1752.8,1044.74 1753.86,1000.29 1754.93,954.302 1755.99,907.037 1757.06,858.776 1758.12,809.801 1759.19,760.4 1760.26,710.863 1761.32,661.481 1762.39,612.543 \n",
+       "  1763.45,564.335 1764.52,517.141 1765.58,471.239 1766.65,426.898 1767.72,384.376 1768.78,343.923 1769.85,305.777 1770.91,270.162 1771.98,237.287 1773.04,207.345 \n",
+       "  1774.11,180.511 1775.18,156.941 1776.24,136.775 1777.31,120.131 1778.37,107.107 1779.44,97.7792 1780.5,92.2011 1781.57,90.406 1782.64,92.4049 1783.7,98.1861 \n",
+       "  1784.77,107.715 1785.83,120.936 1786.9,137.771 1787.96,158.122 1789.03,181.869 1790.1,208.873 1791.16,238.975 1792.23,271.999 1793.29,307.751 1794.36,346.021 \n",
+       "  1795.42,386.586 1796.49,429.205 1797.56,473.631 1798.62,519.602 1799.69,566.848 1800.75,615.092 1801.82,664.052 1802.88,713.439 1803.95,762.966 1805.02,812.34 \n",
+       "  1806.08,861.272 1807.15,909.475 1808.21,956.667 1809.28,1002.57 1810.34,1046.92 1811.41,1089.45 1812.48,1129.91 1813.54,1168.06 1814.61,1203.69 1815.67,1236.58 \n",
+       "  1816.74,1266.54 1817.8,1293.4 1818.87,1316.99 1819.93,1337.18 1821,1353.85 1822.07,1366.9 1823.13,1376.26 1824.2,1381.87 1825.26,1383.69 1826.33,1381.72 \n",
+       "  1827.39,1375.97 1828.46,1366.48 1829.53,1353.29 1830.59,1336.49 1831.66,1316.17 1832.72,1292.45 1833.79,1265.48 1834.85,1235.4 1835.92,1202.4 1836.99,1166.68 \n",
+       "  1838.05,1128.43 1839.12,1087.89 1840.18,1045.28 1841.25,1000.87 1842.31,954.916 1843.38,907.679 1844.45,859.44 1845.51,810.482 1846.58,761.092 1847.64,711.561 \n",
+       "  1848.71,662.178 1849.77,613.232 1850.84,565.011 1851.91,517.798 1852.97,471.869 1854.04,427.494 1855.1,384.931 1856.17,344.43 1857.23,306.231 1858.3,270.558 \n",
+       "  1859.37,237.62 1860.43,207.608 1861.5,180.698 1862.56,157.048 1863.63,136.797 1864.69,120.064 1865.76,106.947 1866.83,97.523 1867.89,91.8458 1868.96,89.9497 \n",
+       "  1870.02,91.846 1871.09,97.5236 1872.15,106.949 1873.22,120.066 1874.29,136.798 1875.35,157.047 1876.42,180.695 1877.48,207.603 1878.55,237.612 1879.61,270.547 \n",
+       "  1880.68,306.215 1881.75,344.407 1882.81,384.899 1883.88,427.452 1884.94,471.818 1886.01,517.737 1887.07,564.939 1888.14,613.148 1889.21,662.081 1890.27,711.451 \n",
+       "  1891.34,760.969 1892.4,810.344 1893.47,859.287 1894.53,907.511 1895.6,954.733 1896.67,1000.68 1897.73,1045.07 1898.8,1087.66 1899.86,1128.19 1900.93,1166.43 \n",
+       "  1901.99,1202.14 1903.06,1235.13 1904.13,1265.19 1905.19,1292.16 1906.26,1315.87 1907.32,1336.18 1908.39,1352.98 1909.45,1366.17 1910.52,1375.66 1911.59,1381.41 \n",
+       "  1912.65,1383.38 1913.72,1381.56 1914.78,1375.96 1915.85,1366.61 1916.91,1353.57 1917.98,1336.91 1919.05,1316.74 1920.11,1293.16 1921.18,1266.32 1922.24,1236.37 \n",
+       "  1923.31,1203.5 1924.37,1167.89 1925.44,1129.75 1926.51,1089.3 1927.57,1046.79 1928.64,1002.46 1929.7,956.571 1930.77,909.392 1931.83,861.198 1932.9,812.273 \n",
+       "  1933.97,762.904 1935.03,713.38 1936.1,663.991 1937.16,615.026 1938.23,566.772 1939.29,519.512 1940.36,473.523 1941.43,429.075 1942.49,386.426 1943.56,345.827 \n",
+       "  1944.62,307.516 1945.69,271.72 1946.75,238.646 1947.82,208.489 1948.89,181.424 1949.95,157.61 1951.02,137.186 1952.08,120.274 1953.15,106.97 1954.21,97.3541 \n",
+       "  1955.28,91.481 1956.35,89.3856 1957.41,91.0808 1958.48,96.5563 1959.54,105.78 1960.61,118.696 1961.67,135.231 1962.74,155.287 1963.81,178.747 1964.87,205.473 \n",
+       "  1965.94,235.307 1967,268.077 1968.07,303.589 1969.13,341.636 1970.2,381.994 1971.27,424.427 1972.33,468.686 1973.4,514.513 1974.46,561.638 1975.53,609.785 \n",
+       "  1976.59,658.673 1977.66,708.015 1978.73,757.522 1979.79,806.904 1980.86,855.871 1981.92,904.136 1982.99,951.418 1984.05,997.439 1985.12,1041.93 1986.19,1084.63 \n",
+       "  1987.25,1125.29 1988.32,1163.66 1989.38,1199.54 1990.45,1232.7 1991.51,1262.95 1992.58,1290.12 1993.65,1314.04 1994.71,1334.57 1995.78,1351.6 1996.84,1365.03 \n",
+       "  1997.91,1374.77 1998.97,1380.77 2000.04,1382.99 2001.1,1381.43 2002.17,1376.08 2003.24,1366.99 2004.3,1354.2 2005.37,1337.8 2006.43,1317.87 2007.5,1294.53 \n",
+       "  2008.56,1267.92 2009.63,1238.19 2010.7,1205.52 2011.76,1170.11 2012.83,1132.15 2013.89,1091.87 2014.96,1049.51 2016.02,1005.31 2017.09,959.536 2018.16,912.451 \n",
+       "  2019.22,864.332 2020.29,815.461 2021.35,766.124 2022.42,716.611 2023.48,667.21 2024.55,618.211 2025.62,569.9 2026.68,522.562 2027.75,476.473 2028.81,431.902 \n",
+       "  2029.88,389.11 2030.94,348.346 2032.01,309.852 2033.08,273.853 2034.14,240.56 2035.21,210.166 2036.27,182.849 2037.34,158.768 2038.4,138.065 2039.47,120.861 \n",
+       "  2040.54,107.258 2041.6,97.3333 2042.67,91.1457 2043.73,88.7313 2044.8,90.1048 2045.86,95.2581 2046.93,104.161 2048,116.759 2049.06,132.981 2050.13,152.731 \n",
+       "  2051.19,175.894 2052.26,202.333 2053.32,231.894 2054.39,264.404 2055.46,299.672 2056.52,337.492 2057.59,377.643 2058.65,419.888 2059.72,463.982 2060.78,509.666 \n",
+       "  2061.85,556.672 2062.92,604.726 2063.98,653.546 2065.05,702.845 2066.11,752.337 2067.18,801.731 2068.24,850.738 2069.31,899.07 2070.38,946.445 2071.44,992.587 \n",
+       "  2072.51,1037.22 2073.57,1080.1 2074.64,1120.95 2075.7,1159.55 2076.77,1195.67 2077.84,1229.1 2078.9,1259.63 2079.97,1287.1 2081.03,1311.35 2082.1,1332.22 \n",
+       "  2083.16,1349.6 2084.23,1363.39 2085.3,1373.5 2086.36,1379.88 2087.43,1382.49 2088.49,1381.32 2089.56,1376.36 2090.62,1367.66 2091.69,1355.25 2092.76,1339.22 \n",
+       "  2093.82,1319.65 2094.89,1296.67 2095.95,1270.41 2097.02,1241.01 2098.08,1208.65 2099.15,1173.53 2100.22,1135.84 2101.28,1095.81 2102.35,1053.67 2103.41,1009.67 \n",
+       "  2104.48,964.067 2105.54,917.123 2106.61,869.115 2107.68,820.323 2108.74,771.035 2109.81,721.537 2110.87,672.12 2111.94,623.072 2113,574.68 2114.07,527.227 \n",
+       "  2115.14,480.991 2116.2,436.243 2117.27,393.242 2118.33,352.242 2119.4,313.48 2120.46,277.186 2121.53,243.572 2122.6,212.834 2123.66,185.149 2124.73,160.682 \n",
+       "  2125.79,139.573 2126.86,121.948 2127.92,107.91 2128.99,97.5396 2130.06,90.8975 2131.12,88.0227 2132.19,88.9323 2133.25,93.6211 2134.32,102.061 2135.38,114.202 \n",
+       "  2136.45,129.974 2137.52,149.285 2138.58,172.021 2139.65,198.049 2140.71,227.217 2141.78,259.354 2142.84,294.273 2143.91,331.769 2144.98,371.623 2146.04,413.601 \n",
+       "  2147.11,457.458 2148.17,502.938 2149.24,549.775 2150.3,597.694 2151.37,646.416 2152.44,695.655 2153.5,745.124 2154.57,794.534 2155.63,843.595 2156.7,892.02 \n",
+       "  2157.76,939.527 2158.83,985.837 2159.9,1030.68 2160.96,1073.8 2162.03,1114.93 2163.09,1153.84 2164.16,1190.3 2165.22,1224.1 2166.29,1255.04 2167.36,1282.94 \n",
+       "  2168.42,1307.63 2169.49,1328.98 2170.55,1346.85 2171.62,1361.14 2172.68,1371.78 2173.75,1378.69 2174.82,1381.83 2175.88,1381.2 2176.95,1376.79 2178.01,1368.62 \n",
+       "  2179.08,1356.75 2180.14,1341.24 2181.21,1322.19 2182.27,1299.7 2183.34,1273.92 2184.41,1244.98 2185.47,1213.06 2186.54,1178.34 2187.6,1141.03 2188.67,1101.34 \n",
+       "  2189.73,1059.52 2190.8,1015.79 2191.87,970.42 2192.93,923.673 2194,875.821 2195.06,827.143 2196.13,777.924 2197.19,728.453 2198.26,679.016 2199.33,629.905 \n",
+       "  2200.39,581.404 2201.46,533.798 2202.52,487.366 2203.59,442.377 2204.65,399.094 2205.72,357.769 2206.79,318.645 2207.85,281.953 2208.92,247.905 2209.98,216.701 \n",
+       "  2211.05,188.521 2212.11,163.529 2213.18,141.872 2214.25,123.677 2215.31,109.049 2216.38,98.0753 2217.44,90.818 2218.51,87.3197 2219.57,87.6013 2220.64,91.6614 \n",
+       "  2221.71,99.4758 2222.77,110.998 2223.84,126.161 2224.9,144.877 2225.97,167.035 2227.03,192.507 2228.1,221.143 2229.17,252.776 2230.23,287.222 2231.3,324.279 \n",
+       "  2232.36,363.73 2233.43,405.345 2234.49,448.88 2235.56,494.082 2236.63,540.687 2237.69,588.421 2238.76,637.007 2239.82,686.161 2240.89,735.594 2241.95,785.02 \n",
+       "  2243.02,834.149 2244.09,882.694 2245.15,930.37 2246.22,976.901 2247.28,1022.02 2248.35,1065.45 2249.41,1106.95 2250.48,1146.27 2251.55,1183.18 2252.61,1217.47 \n",
+       "  2253.68,1248.94 2254.74,1277.4 2255.81,1302.69 2256.87,1324.66 2257.94,1343.19 2259.01,1358.15 2260.07,1369.47 2261.14,1377.09 2262.2,1380.94 2263.27,1381.02 \n",
+       "  2264.33,1377.33 2265.4,1369.87 2266.47,1358.71 2267.53,1343.89 2268.6,1325.52 2269.66,1303.69 2270.73,1278.54 2271.79,1250.21 2272.86,1218.86 2273.93,1184.69 \n",
+       "  2274.99,1147.88 2276.06,1108.66 2277.12,1067.24 2278.19,1023.89 2279.25,978.834 2280.32,932.353 2281.39,884.713 2282.45,836.191 2283.52,787.072 2284.58,737.642 \n",
+       "  2285.65,688.19 2286.71,639.004 2287.78,590.369 2288.85,542.571 2289.91,495.889 2290.98,450.596 2292.04,406.954 2293.11,365.218 2294.17,325.631 2295.24,288.425 \n",
+       "  2296.31,253.818 2297.37,222.012 2298.44,193.19 2299.5,167.522 2300.57,145.155 2301.63,126.222 2302.7,110.833 2303.77,99.0778 2304.83,91.0237 2305.9,86.7178 \n",
+       "  2306.96,86.1857 2308.03,89.4305 2309.09,96.4331 2310.16,107.152 2311.23,121.524 2312.29,139.467 2313.36,160.875 2314.42,185.623 2315.49,213.566 2316.55,244.542 \n",
+       "  2317.62,278.37 2318.69,314.852 2319.75,353.776 2320.82,394.914 2321.88,438.026 2322.95,482.861 2324.01,529.157 2325.08,576.644 2326.15,625.045 2327.21,674.077 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"\n",
+       "M2200.12 1377.32 L2322.67 1377.32 L2322.67 1256.36 L2200.12 1256.36  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2200.12,1377.32 2322.67,1377.32 2322.67,1256.36 2200.12,1256.36 2200.12,1377.32 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip630)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2210.15,1316.84 2270.32,1316.84 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip630)\" d=\"M 0 0 M2300.16 1309.5 Q2300.16 1313.43 2298.9 1317.86 Q2297.66 1322.26 2295.69 1325.82 Q2293.72 1329.36 2291.14 1331.7 Q2288.57 1334.02 2286.11 1334.02 Q2284.54 1334.02 2283.37 1333.16 Q2282.22 1332.27 2281.59 1330.79 Q2280.96 1329.29 2280.65 1327.65 Q2280.35 1325.99 2280.35 1324.19 Q2280.35 1321.49 2280.93 1318.56 Q2281.52 1315.61 2282.5 1312.94 Q2283.49 1310.25 2284.87 1307.81 Q2286.25 1305.35 2287.77 1303.57 Q2289.32 1301.77 2291.05 1300.72 Q2292.78 1299.66 2294.4 1299.66 Q2295.57 1299.66 2296.51 1300.18 Q2297.47 1300.67 2298.08 1301.54 Q2298.69 1302.38 2299.11 1303.39 Q2299.55 1304.39 2299.76 1305.56 Q2299.97 1306.71 2300.07 1307.67 Q2300.16 1308.61 2300.16 1309.5 M2297 1306.52 Q2297 1305.33 2296.91 1304.44 Q2296.81 1303.53 2296.55 1302.61 Q2296.3 1301.7 2295.74 1301.21 Q2295.2 1300.72 2294.35 1300.72 Q2291.89 1300.72 2289.13 1305.75 Q2288.24 1307.32 2287.44 1309.45 Q2286.65 1311.58 2286.37 1312.59 Q2286.08 1313.6 2285.43 1316.08 L2295.45 1316.08 Q2297 1309.69 2297 1306.52 M2295.03 1317.6 L2285.05 1317.6 Q2283.51 1323.46 2283.51 1327.11 Q2283.51 1330.3 2284.16 1331.63 Q2284.84 1332.95 2286.11 1332.95 Q2287.56 1332.95 2288.92 1331.49 Q2290.28 1330.02 2291.66 1327.35 Q2293.49 1323.88 2295.03 1317.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "execution_count": 11,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "plt_ϕ = plot(ts, ϕs, label = L\"\\phi\")\n",
+    "plt_θ = plot(ts, θs, label = L\"\\theta\")\n",
+    "\n",
+    "plot(plt_ϕ, plt_θ, layout=(1, 2), xlabel = \"time\", ylabel = \"angle\", legend = :bottomright)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We see that $\\phi$ increases approximately quadratically with time, whereas $\\theta$ has an oscillatory behaviour (that looks different for different parameter values)."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Identifying parameters\n",
+    "\n",
+    "We will assume that the parameters are unknown, and try to identify them.\n",
+    "\n",
+    "We do this by running experiments with a number of different policies, gathering the data, and performing least-squares estimates of the parameters $\\alpha$, $\\beta$, $\\gamma$ and $\\delta$."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "**TODO:** Design experiment:\n",
+    "  1. Choose 10 different open-loop policies\n",
+    "  1. Run simulations, gather data\n",
+    "  1. Set up least-squares fit problem (matrices)\n",
+    "  1. Solve it \n",
+    "  1. Evaluate solution by plotting it"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "### A set of open-loop policies"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We choose 5 policies with constant torques of 0.1, 0.2, 0.3, 0.4, 0.5, and 5 policies of torques $\\sin \\omega t$ for angular velocities $\\omega$ set to 1, 2, 3, 4, 5."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "**TODO:** Consider other policies. As shown by the plots, I do not see many different kinds of behaviour from my policies."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We construct our set of policies as an an array of functions"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "fτϕs = vcat([ (x, t) -> k for k ∈ [0.1, 0.2, 0.3, 0.4, 0.5]], [ (x, t) -> sin(ω*t) for ω ∈ [1, 2, 3, 4, 5]]);"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "For each policy, we solve the dynamical system, and obtain the time evolution for that policy"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "sols = [ solve(ode_problem, Tsit5(), reltol=1e-8, abstol=1e-8, p=(α, β, γ, δ, fτϕ, fτθ)) for fτϕ ∈ fτϕs ];"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 14,
+   "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip670\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip671\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip672\">\n",
+       "    <rect x=\"1450\" y=\"47\" width=\"904\" height=\"1377\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"\n",
+       "M148.334 1486.45 L1100.44 1486.45 L1100.44 47.2441 L148.334 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip673\">\n",
+       "    <rect x=\"148\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  175.281,1486.45 175.281,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  354.924,1486.45 354.924,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  534.566,1486.45 534.566,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  714.209,1486.45 714.209,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  893.852,1486.45 893.852,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1073.49,1486.45 1073.49,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,1445.72 1100.44,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,1228.48 1100.44,1228.48 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,1011.23 1100.44,1011.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,793.994 1100.44,793.994 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,576.753 1100.44,576.753 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,359.513 1100.44,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip673)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  148.334,142.272 1100.44,142.272 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,1486.45 1100.44,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,1486.45 148.334,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.281,1486.45 175.281,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  354.924,1486.45 354.924,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  534.566,1486.45 534.566,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  714.209,1486.45 714.209,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  893.852,1486.45 893.852,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1073.49,1486.45 1073.49,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,1445.72 159.76,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,1228.48 159.76,1228.48 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,1011.23 159.76,1011.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,793.994 159.76,793.994 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,576.753 159.76,576.753 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,359.513 159.76,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  148.334,142.272 159.76,142.272 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"M 0 0 M175.281 1508.44 Q171.67 1508.44 169.841 1512 Q168.035 1515.55 168.035 1522.67 Q168.035 1529.78 169.841 1533.35 Q171.67 1536.89 175.281 1536.89 Q178.915 1536.89 180.721 1533.35 Q182.549 1529.78 182.549 1522.67 Q182.549 1515.55 180.721 1512 Q178.915 1508.44 175.281 1508.44 M175.281 1504.73 Q181.091 1504.73 184.147 1509.34 Q187.225 1513.92 187.225 1522.67 Q187.225 1531.4 184.147 1536.01 Q181.091 1540.59 175.281 1540.59 Q169.471 1540.59 166.392 1536.01 Q163.336 1531.4 163.336 1522.67 Q163.336 1513.92 166.392 1509.34 Q169.471 1504.73 175.281 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M345.306 1535.98 L352.944 1535.98 L352.944 1509.62 L344.634 1511.29 L344.634 1507.03 L352.898 1505.36 L357.574 1505.36 L357.574 1535.98 L365.213 1535.98 L365.213 1539.92 L345.306 1539.92 L345.306 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M529.219 1535.98 L545.539 1535.98 L545.539 1539.92 L523.594 1539.92 L523.594 1535.98 Q526.256 1533.23 530.84 1528.6 Q535.446 1523.95 536.627 1522.61 Q538.872 1520.08 539.752 1518.35 Q540.654 1516.59 540.654 1514.9 Q540.654 1512.14 538.71 1510.41 Q536.789 1508.67 533.687 1508.67 Q531.488 1508.67 529.034 1509.43 Q526.604 1510.2 523.826 1511.75 L523.826 1507.03 Q526.65 1505.89 529.104 1505.31 Q531.557 1504.73 533.594 1504.73 Q538.965 1504.73 542.159 1507.42 Q545.353 1510.11 545.353 1514.6 Q545.353 1516.73 544.543 1518.65 Q543.756 1520.54 541.65 1523.14 Q541.071 1523.81 537.969 1527.03 Q534.867 1530.22 529.219 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M718.457 1521.29 Q721.813 1522 723.688 1524.27 Q725.587 1526.54 725.587 1529.87 Q725.587 1534.99 722.068 1537.79 Q718.55 1540.59 712.068 1540.59 Q709.892 1540.59 707.577 1540.15 Q705.286 1539.73 702.832 1538.88 L702.832 1534.36 Q704.776 1535.5 707.091 1536.08 Q709.406 1536.66 711.929 1536.66 Q716.327 1536.66 718.619 1534.92 Q720.934 1533.18 720.934 1529.87 Q720.934 1526.82 718.781 1525.11 Q716.651 1523.37 712.832 1523.37 L708.804 1523.37 L708.804 1519.53 L713.017 1519.53 Q716.466 1519.53 718.295 1518.16 Q720.124 1516.77 720.124 1514.18 Q720.124 1511.52 718.225 1510.11 Q716.35 1508.67 712.832 1508.67 Q710.911 1508.67 708.712 1509.09 Q706.513 1509.5 703.874 1510.38 L703.874 1506.22 Q706.536 1505.48 708.851 1505.11 Q711.188 1504.73 713.249 1504.73 Q718.573 1504.73 721.675 1507.17 Q724.776 1509.57 724.776 1513.69 Q724.776 1516.56 723.133 1518.55 Q721.489 1520.52 718.457 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M896.861 1509.43 L885.056 1527.88 L896.861 1527.88 L896.861 1509.43 M895.635 1505.36 L901.514 1505.36 L901.514 1527.88 L906.445 1527.88 L906.445 1531.77 L901.514 1531.77 L901.514 1539.92 L896.861 1539.92 L896.861 1531.77 L881.26 1531.77 L881.26 1527.26 L895.635 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1063.77 1505.36 L1082.13 1505.36 L1082.13 1509.3 L1068.06 1509.3 L1068.06 1517.77 Q1069.07 1517.42 1070.09 1517.26 Q1071.11 1517.07 1072.13 1517.07 Q1077.92 1517.07 1081.3 1520.24 Q1084.68 1523.42 1084.68 1528.83 Q1084.68 1534.41 1081.2 1537.51 Q1077.73 1540.59 1071.41 1540.59 Q1069.24 1540.59 1066.97 1540.22 Q1064.72 1539.85 1062.31 1539.11 L1062.31 1534.41 Q1064.4 1535.54 1066.62 1536.1 Q1068.84 1536.66 1071.32 1536.66 Q1075.32 1536.66 1077.66 1534.55 Q1080 1532.44 1080 1528.83 Q1080 1525.22 1077.66 1523.11 Q1075.32 1521.01 1071.32 1521.01 Q1069.44 1521.01 1067.57 1521.42 Q1065.72 1521.84 1063.77 1522.72 L1063.77 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M75.4226 1431.51 Q71.8115 1431.51 69.9828 1435.08 Q68.1773 1438.62 68.1773 1445.75 Q68.1773 1452.86 69.9828 1456.42 Q71.8115 1459.96 75.4226 1459.96 Q79.0569 1459.96 80.8624 1456.42 Q82.6911 1452.86 82.6911 1445.75 Q82.6911 1438.62 80.8624 1435.08 Q79.0569 1431.51 75.4226 1431.51 M75.4226 1427.81 Q81.2328 1427.81 84.2883 1432.42 Q87.367 1437 87.367 1445.75 Q87.367 1454.48 84.2883 1459.08 Q81.2328 1463.67 75.4226 1463.67 Q69.6125 1463.67 66.5338 1459.08 Q63.4782 1454.48 63.4782 1445.75 Q63.4782 1437 66.5338 1432.42 Q69.6125 1427.81 75.4226 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M92.4364 1457.12 L97.3206 1457.12 L97.3206 1463 L92.4364 1463 L92.4364 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M112.39 1431.51 Q108.779 1431.51 106.95 1435.08 Q105.145 1438.62 105.145 1445.75 Q105.145 1452.86 106.95 1456.42 Q108.779 1459.96 112.39 1459.96 Q116.024 1459.96 117.83 1456.42 Q119.658 1452.86 119.658 1445.75 Q119.658 1438.62 117.83 1435.08 Q116.024 1431.51 112.39 1431.51 M112.39 1427.81 Q118.2 1427.81 121.256 1432.42 Q124.334 1437 124.334 1445.75 Q124.334 1454.48 121.256 1459.08 Q118.2 1463.67 112.39 1463.67 Q106.58 1463.67 103.501 1459.08 Q100.446 1454.48 100.446 1445.75 Q100.446 1437 103.501 1432.42 Q106.58 1427.81 112.39 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M77.0198 1214.27 Q73.4087 1214.27 71.58 1217.84 Q69.7745 1221.38 69.7745 1228.51 Q69.7745 1235.62 71.58 1239.18 Q73.4087 1242.72 77.0198 1242.72 Q80.6541 1242.72 82.4596 1239.18 Q84.2883 1235.62 84.2883 1228.51 Q84.2883 1221.38 82.4596 1217.84 Q80.6541 1214.27 77.0198 1214.27 M77.0198 1210.57 Q82.83 1210.57 85.8855 1215.18 Q88.9642 1219.76 88.9642 1228.51 Q88.9642 1237.24 85.8855 1241.84 Q82.83 1246.43 77.0198 1246.43 Q71.2097 1246.43 68.131 1241.84 Q65.0754 1237.24 65.0754 1228.51 Q65.0754 1219.76 68.131 1215.18 Q71.2097 1210.57 77.0198 1210.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M94.0336 1239.88 L98.9179 1239.88 L98.9179 1245.76 L94.0336 1245.76 L94.0336 1239.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M108.015 1241.82 L124.334 1241.82 L124.334 1245.76 L102.39 1245.76 L102.39 1241.82 Q105.052 1239.07 109.635 1234.44 Q114.242 1229.78 115.422 1228.44 Q117.668 1225.92 118.547 1224.18 Q119.45 1222.42 119.45 1220.73 Q119.45 1217.98 117.506 1216.24 Q115.584 1214.51 112.483 1214.51 Q110.284 1214.51 107.83 1215.27 Q105.399 1216.03 102.622 1217.58 L102.622 1212.86 Q105.446 1211.73 107.899 1211.15 Q110.353 1210.57 112.39 1210.57 Q117.76 1210.57 120.955 1213.26 Q124.149 1215.94 124.149 1220.43 Q124.149 1222.56 123.339 1224.48 Q122.552 1226.38 120.446 1228.97 Q119.867 1229.64 116.765 1232.86 Q113.663 1236.06 108.015 1241.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M74.9365 997.033 Q71.3254 997.033 69.4967 1000.6 Q67.6912 1004.14 67.6912 1011.27 Q67.6912 1018.38 69.4967 1021.94 Q71.3254 1025.48 74.9365 1025.48 Q78.5707 1025.48 80.3763 1021.94 Q82.205 1018.38 82.205 1011.27 Q82.205 1004.14 80.3763 1000.6 Q78.5707 997.033 74.9365 997.033 M74.9365 993.33 Q80.7467 993.33 83.8022 997.936 Q86.8809 1002.52 86.8809 1011.27 Q86.8809 1020 83.8022 1024.6 Q80.7467 1029.19 74.9365 1029.19 Q69.1264 1029.19 66.0477 1024.6 Q62.9921 1020 62.9921 1011.27 Q62.9921 1002.52 66.0477 997.936 Q69.1264 993.33 74.9365 993.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M91.9503 1022.63 L96.8345 1022.63 L96.8345 1028.51 L91.9503 1028.51 L91.9503 1022.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M114.751 998.029 L102.946 1016.48 L114.751 1016.48 L114.751 998.029 M113.524 993.955 L119.404 993.955 L119.404 1016.48 L124.334 1016.48 L124.334 1020.37 L119.404 1020.37 L119.404 1028.51 L114.751 1028.51 L114.751 1020.37 L99.1493 1020.37 L99.1493 1015.85 L113.524 993.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M75.2606 779.793 Q71.6495 779.793 69.8208 783.358 Q68.0152 786.899 68.0152 794.029 Q68.0152 801.135 69.8208 804.7 Q71.6495 808.242 75.2606 808.242 Q78.8948 808.242 80.7004 804.7 Q82.5291 801.135 82.5291 794.029 Q82.5291 786.899 80.7004 783.358 Q78.8948 779.793 75.2606 779.793 M75.2606 776.089 Q81.0707 776.089 84.1263 780.696 Q87.205 785.279 87.205 794.029 Q87.205 802.756 84.1263 807.362 Q81.0707 811.945 75.2606 811.945 Q69.4504 811.945 66.3717 807.362 Q63.3162 802.756 63.3162 794.029 Q63.3162 785.279 66.3717 780.696 Q69.4504 776.089 75.2606 776.089 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M92.2744 805.394 L97.1586 805.394 L97.1586 811.274 L92.2744 811.274 L92.2744 805.394 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M112.807 792.131 Q109.659 792.131 107.807 794.283 Q105.978 796.436 105.978 800.186 Q105.978 803.913 107.807 806.089 Q109.659 808.242 112.807 808.242 Q115.955 808.242 117.783 806.089 Q119.635 803.913 119.635 800.186 Q119.635 796.436 117.783 794.283 Q115.955 792.131 112.807 792.131 M122.089 777.478 L122.089 781.737 Q120.33 780.904 118.524 780.464 Q116.742 780.024 114.983 780.024 Q110.353 780.024 107.899 783.149 Q105.469 786.274 105.122 792.594 Q106.487 790.58 108.547 789.515 Q110.608 788.427 113.084 788.427 Q118.293 788.427 121.302 791.598 Q124.334 794.746 124.334 800.186 Q124.334 805.51 121.186 808.728 Q118.038 811.945 112.807 811.945 Q106.811 811.945 103.64 807.362 Q100.469 802.756 100.469 794.029 Q100.469 785.834 104.358 780.973 Q108.247 776.089 114.797 776.089 Q116.557 776.089 118.339 776.436 Q120.145 776.783 122.089 777.478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M75.5152 562.552 Q71.9041 562.552 70.0754 566.117 Q68.2699 569.659 68.2699 576.788 Q68.2699 583.895 70.0754 587.459 Q71.9041 591.001 75.5152 591.001 Q79.1494 591.001 80.955 587.459 Q82.7837 583.895 82.7837 576.788 Q82.7837 569.659 80.955 566.117 Q79.1494 562.552 75.5152 562.552 M75.5152 558.848 Q81.3254 558.848 84.3809 563.455 Q87.4596 568.038 87.4596 576.788 Q87.4596 585.515 84.3809 590.121 Q81.3254 594.705 75.5152 594.705 Q69.7051 594.705 66.6264 590.121 Q63.5708 585.515 63.5708 576.788 Q63.5708 568.038 66.6264 563.455 Q69.7051 558.848 75.5152 558.848 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M92.529 588.154 L97.4132 588.154 L97.4132 594.033 L92.529 594.033 L92.529 588.154 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M112.483 577.622 Q109.149 577.622 107.228 579.404 Q105.33 581.186 105.33 584.311 Q105.33 587.436 107.228 589.219 Q109.149 591.001 112.483 591.001 Q115.816 591.001 117.737 589.219 Q119.658 587.413 119.658 584.311 Q119.658 581.186 117.737 579.404 Q115.839 577.622 112.483 577.622 M107.807 575.631 Q104.797 574.89 103.108 572.83 Q101.441 570.77 101.441 567.807 Q101.441 563.663 104.381 561.256 Q107.344 558.848 112.483 558.848 Q117.645 558.848 120.584 561.256 Q123.524 563.663 123.524 567.807 Q123.524 570.77 121.834 572.83 Q120.168 574.89 117.182 575.631 Q120.561 576.418 122.436 578.709 Q124.334 581.001 124.334 584.311 Q124.334 589.334 121.256 592.02 Q118.2 594.705 112.483 594.705 Q106.765 594.705 103.686 592.02 Q100.631 589.334 100.631 584.311 Q100.631 581.001 102.529 578.709 Q104.427 576.418 107.807 575.631 M106.094 568.247 Q106.094 570.932 107.76 572.436 Q109.45 573.941 112.483 573.941 Q115.492 573.941 117.182 572.436 Q118.895 570.932 118.895 568.247 Q118.895 565.561 117.182 564.057 Q115.492 562.552 112.483 562.552 Q109.45 562.552 107.76 564.057 Q106.094 565.561 106.094 568.247 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M67.4597 372.858 L75.0985 372.858 L75.0985 346.492 L66.7884 348.159 L66.7884 343.9 L75.0522 342.233 L79.7281 342.233 L79.7281 372.858 L87.367 372.858 L87.367 376.793 L67.4597 376.793 L67.4597 372.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M92.4364 370.913 L97.3206 370.913 L97.3206 376.793 L92.4364 376.793 L92.4364 370.913 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M112.39 345.312 Q108.779 345.312 106.95 348.876 Q105.145 352.418 105.145 359.548 Q105.145 366.654 106.95 370.219 Q108.779 373.761 112.39 373.761 Q116.024 373.761 117.83 370.219 Q119.658 366.654 119.658 359.548 Q119.658 352.418 117.83 348.876 Q116.024 345.312 112.39 345.312 M112.39 341.608 Q118.2 341.608 121.256 346.214 Q124.334 350.798 124.334 359.548 Q124.334 368.274 121.256 372.881 Q118.2 377.464 112.39 377.464 Q106.58 377.464 103.501 372.881 Q100.446 368.274 100.446 359.548 Q100.446 350.798 103.501 346.214 Q106.58 341.608 112.39 341.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M69.0569 155.617 L76.6958 155.617 L76.6958 129.252 L68.3856 130.918 L68.3856 126.659 L76.6495 124.992 L81.3254 124.992 L81.3254 155.617 L88.9642 155.617 L88.9642 159.552 L69.0569 159.552 L69.0569 155.617 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M94.0336 153.673 L98.9179 153.673 L98.9179 159.552 L94.0336 159.552 L94.0336 153.673 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M108.015 155.617 L124.334 155.617 L124.334 159.552 L102.39 159.552 L102.39 155.617 Q105.052 152.863 109.635 148.233 Q114.242 143.58 115.422 142.238 Q117.668 139.715 118.547 137.978 Q119.45 136.219 119.45 134.529 Q119.45 131.775 117.506 130.039 Q115.584 128.303 112.483 128.303 Q110.284 128.303 107.83 129.066 Q105.399 129.83 102.622 131.381 L102.622 126.659 Q105.446 125.525 107.899 124.946 Q110.353 124.367 112.39 124.367 Q117.76 124.367 120.955 127.053 Q124.149 129.738 124.149 134.228 Q124.149 136.358 123.339 138.279 Q122.552 140.177 120.446 142.77 Q119.867 143.441 116.765 146.659 Q113.663 149.853 108.015 155.617 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip673)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.281,1445.72 184.354,1445.58 193.427,1445.16 202.499,1444.47 211.572,1443.5 220.645,1442.25 229.718,1440.73 238.791,1438.93 247.864,1436.85 256.937,1434.49 \n",
+       "  266.01,1431.86 275.082,1428.95 284.155,1425.77 293.228,1422.3 302.301,1418.56 311.374,1414.55 320.447,1410.25 329.52,1405.68 338.592,1400.83 347.665,1395.71 \n",
+       "  356.738,1390.3 365.811,1384.62 374.884,1378.67 383.957,1372.43 393.03,1365.92 402.103,1359.13 411.175,1352.07 420.248,1344.73 429.321,1337.11 438.394,1329.21 \n",
+       "  447.467,1321.04 456.54,1312.59 465.613,1303.86 474.686,1294.86 483.758,1285.57 492.831,1276.02 501.904,1266.18 510.977,1256.07 520.05,1245.68 529.123,1235.01 \n",
+       "  538.196,1224.07 547.268,1212.85 556.341,1201.35 565.414,1189.57 574.487,1177.52 583.56,1165.19 592.633,1152.58 601.706,1139.7 610.779,1126.54 619.851,1113.1 \n",
+       "  628.924,1099.39 637.997,1085.4 647.07,1071.13 656.143,1056.58 665.216,1041.76 674.289,1026.66 683.362,1011.28 692.434,995.629 701.507,979.698 710.58,963.49 \n",
+       "  719.653,947.005 728.726,930.243 737.799,913.204 746.872,895.887 755.944,878.294 765.017,860.423 774.09,842.276 783.163,823.851 792.236,805.15 801.309,786.171 \n",
+       "  810.382,766.915 819.455,747.382 828.527,727.573 837.6,707.486 846.673,687.122 855.746,666.48 864.819,645.562 873.892,624.367 882.965,602.895 892.038,581.146 \n",
+       "  901.11,559.119 910.183,536.816 919.256,514.235 928.329,491.378 937.402,468.243 946.475,444.831 955.548,421.143 964.621,397.177 973.693,372.934 982.766,348.414 \n",
+       "  991.839,323.617 1000.91,298.543 1009.98,273.192 1019.06,247.564 1028.13,221.658 1037.2,195.476 1046.28,169.017 1055.35,142.28 1064.42,115.267 1073.49,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"\n",
+       "M934.619 216.178 L1068.7 216.178 L1068.7 95.2176 L934.619 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  934.619,216.178 1068.7,216.178 1068.7,95.2176 934.619,95.2176 934.619,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  945.198,155.698 1008.67,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"M 0 0 M1044.41 154.854 Q1044.41 157.22 1043.19 159.585 Q1041.97 161.951 1039.98 163.778 Q1037.99 165.582 1035.27 166.753 Q1032.55 167.924 1029.72 168.017 L1027.89 175.161 Q1027.54 176.895 1027.35 177.082 Q1027.17 177.269 1026.89 177.269 Q1026.3 177.269 1026.3 176.731 Q1026.3 176.567 1027.35 172.515 L1028.48 168.017 Q1024.22 167.783 1021.73 165.324 Q1019.25 162.865 1019.25 159.328 Q1019.25 156.939 1020.47 154.573 Q1021.71 152.184 1023.7 150.38 Q1025.72 148.577 1028.43 147.429 Q1031.15 146.281 1033.94 146.188 L1036.72 135.109 Q1036.86 134.477 1036.98 134.313 Q1037.1 134.149 1037.45 134.149 Q1037.71 134.149 1037.85 134.266 Q1037.99 134.383 1037.99 134.5 L1038.01 134.617 L1037.87 135.296 L1035.18 146.188 Q1037.57 146.352 1039.42 147.195 Q1041.27 148.038 1042.32 149.303 Q1043.38 150.544 1043.89 151.95 Q1044.41 153.355 1044.41 154.854 M1033.66 147.242 Q1031.08 147.476 1028.9 148.741 Q1026.72 150.006 1025.32 151.879 Q1023.91 153.73 1023.14 155.955 Q1022.37 158.157 1022.37 160.335 Q1022.37 162.045 1022.93 163.356 Q1023.51 164.668 1024.47 165.418 Q1025.43 166.144 1026.49 166.542 Q1027.57 166.917 1028.71 166.963 L1033.66 147.242 M1041.27 153.847 Q1041.27 150.802 1039.51 149.092 Q1037.75 147.382 1034.9 147.242 L1029.95 166.963 Q1032.04 166.8 1033.87 165.933 Q1035.72 165.043 1037.05 163.731 Q1038.39 162.396 1039.35 160.757 Q1040.31 159.094 1040.78 157.337 Q1041.27 155.557 1041.27 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"\n",
+       "M1400.65 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1400.65 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip674\">\n",
+       "    <rect x=\"1400\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1427.6,1486.45 1427.6,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1607.24,1486.45 1607.24,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1786.88,1486.45 1786.88,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1966.52,1486.45 1966.52,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2146.17,1486.45 2146.17,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.81,1486.45 2325.81,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.65,1395.86 2352.76,1395.86 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.65,1056.54 2352.76,1056.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.65,717.225 2352.76,717.225 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip674)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.65,377.907 2352.76,377.907 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,1486.45 1400.65,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1427.6,1486.45 1427.6,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1607.24,1486.45 1607.24,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1786.88,1486.45 1786.88,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1966.52,1486.45 1966.52,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2146.17,1486.45 2146.17,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.81,1486.45 2325.81,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,1395.86 1412.07,1395.86 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,1056.54 1412.07,1056.54 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,717.225 1412.07,717.225 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.65,377.907 1412.07,377.907 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"M 0 0 M1427.6 1508.44 Q1423.98 1508.44 1422.16 1512 Q1420.35 1515.55 1420.35 1522.67 Q1420.35 1529.78 1422.16 1533.35 Q1423.98 1536.89 1427.6 1536.89 Q1431.23 1536.89 1433.04 1533.35 Q1434.86 1529.78 1434.86 1522.67 Q1434.86 1515.55 1433.04 1512 Q1431.23 1508.44 1427.6 1508.44 M1427.6 1504.73 Q1433.41 1504.73 1436.46 1509.34 Q1439.54 1513.92 1439.54 1522.67 Q1439.54 1531.4 1436.46 1536.01 Q1433.41 1540.59 1427.6 1540.59 Q1421.79 1540.59 1418.71 1536.01 Q1415.65 1531.4 1415.65 1522.67 Q1415.65 1513.92 1418.71 1509.34 Q1421.79 1504.73 1427.6 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1597.62 1535.98 L1605.26 1535.98 L1605.26 1509.62 L1596.95 1511.29 L1596.95 1507.03 L1605.21 1505.36 L1609.89 1505.36 L1609.89 1535.98 L1617.53 1535.98 L1617.53 1539.92 L1597.62 1539.92 L1597.62 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1781.53 1535.98 L1797.85 1535.98 L1797.85 1539.92 L1775.91 1539.92 L1775.91 1535.98 Q1778.57 1533.23 1783.15 1528.6 Q1787.76 1523.95 1788.94 1522.61 Q1791.19 1520.08 1792.07 1518.35 Q1792.97 1516.59 1792.97 1514.9 Q1792.97 1512.14 1791.02 1510.41 Q1789.1 1508.67 1786 1508.67 Q1783.8 1508.67 1781.35 1509.43 Q1778.92 1510.2 1776.14 1511.75 L1776.14 1507.03 Q1778.96 1505.89 1781.42 1505.31 Q1783.87 1504.73 1785.91 1504.73 Q1791.28 1504.73 1794.47 1507.42 Q1797.67 1510.11 1797.67 1514.6 Q1797.67 1516.73 1796.86 1518.65 Q1796.07 1520.54 1793.96 1523.14 Q1793.39 1523.81 1790.28 1527.03 Q1787.18 1530.22 1781.53 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1970.77 1521.29 Q1974.13 1522 1976 1524.27 Q1977.9 1526.54 1977.9 1529.87 Q1977.9 1534.99 1974.38 1537.79 Q1970.86 1540.59 1964.38 1540.59 Q1962.21 1540.59 1959.89 1540.15 Q1957.6 1539.73 1955.15 1538.88 L1955.15 1534.36 Q1957.09 1535.5 1959.41 1536.08 Q1961.72 1536.66 1964.24 1536.66 Q1968.64 1536.66 1970.93 1534.92 Q1973.25 1533.18 1973.25 1529.87 Q1973.25 1526.82 1971.1 1525.11 Q1968.97 1523.37 1965.15 1523.37 L1961.12 1523.37 L1961.12 1519.53 L1965.33 1519.53 Q1968.78 1519.53 1970.61 1518.16 Q1972.44 1516.77 1972.44 1514.18 Q1972.44 1511.52 1970.54 1510.11 Q1968.67 1508.67 1965.15 1508.67 Q1963.23 1508.67 1961.03 1509.09 Q1958.83 1509.5 1956.19 1510.38 L1956.19 1506.22 Q1958.85 1505.48 1961.17 1505.11 Q1963.5 1504.73 1965.56 1504.73 Q1970.89 1504.73 1973.99 1507.17 Q1977.09 1509.57 1977.09 1513.69 Q1977.09 1516.56 1975.45 1518.55 Q1973.8 1520.52 1970.77 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M2149.18 1509.43 L2137.37 1527.88 L2149.18 1527.88 L2149.18 1509.43 M2147.95 1505.36 L2153.83 1505.36 L2153.83 1527.88 L2158.76 1527.88 L2158.76 1531.77 L2153.83 1531.77 L2153.83 1539.92 L2149.18 1539.92 L2149.18 1531.77 L2133.57 1531.77 L2133.57 1527.26 L2147.95 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M2316.09 1505.36 L2334.44 1505.36 L2334.44 1509.3 L2320.37 1509.3 L2320.37 1517.77 Q2321.39 1517.42 2322.41 1517.26 Q2323.43 1517.07 2324.44 1517.07 Q2330.23 1517.07 2333.61 1520.24 Q2336.99 1523.42 2336.99 1528.83 Q2336.99 1534.41 2333.52 1537.51 Q2330.05 1540.59 2323.73 1540.59 Q2321.55 1540.59 2319.28 1540.22 Q2317.04 1539.85 2314.63 1539.11 L2314.63 1534.41 Q2316.71 1535.54 2318.93 1536.1 Q2321.16 1536.66 2323.63 1536.66 Q2327.64 1536.66 2329.98 1534.55 Q2332.31 1532.44 2332.31 1528.83 Q2332.31 1525.22 2329.98 1523.11 Q2327.64 1521.01 2323.63 1521.01 Q2321.76 1521.01 2319.88 1521.42 Q2318.03 1521.84 2316.09 1522.72 L2316.09 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1226.3 1394.51 Q1229.66 1395.22 1231.53 1397.49 Q1233.43 1399.76 1233.43 1403.09 Q1233.43 1408.21 1229.91 1411.01 Q1226.4 1413.81 1219.91 1413.81 Q1217.74 1413.81 1215.42 1413.37 Q1213.13 1412.96 1210.68 1412.1 L1210.68 1407.58 Q1212.62 1408.72 1214.94 1409.3 Q1217.25 1409.88 1219.77 1409.88 Q1224.17 1409.88 1226.46 1408.14 Q1228.78 1406.4 1228.78 1403.09 Q1228.78 1400.04 1226.63 1398.33 Q1224.5 1396.59 1220.68 1396.59 L1216.65 1396.59 L1216.65 1392.75 L1220.86 1392.75 Q1224.31 1392.75 1226.14 1391.38 Q1227.97 1389.99 1227.97 1387.4 Q1227.97 1384.74 1226.07 1383.33 Q1224.2 1381.89 1220.68 1381.89 Q1218.76 1381.89 1216.56 1382.31 Q1214.36 1382.72 1211.72 1383.6 L1211.72 1379.44 Q1214.38 1378.7 1216.7 1378.33 Q1219.03 1377.96 1221.09 1377.96 Q1226.42 1377.96 1229.52 1380.39 Q1232.62 1382.79 1232.62 1386.91 Q1232.62 1389.78 1230.98 1391.77 Q1229.33 1393.74 1226.3 1394.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1238.5 1407.26 L1243.39 1407.26 L1243.39 1413.14 L1238.5 1413.14 L1238.5 1407.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1249.27 1409.21 L1256.9 1409.21 L1256.9 1382.84 L1248.59 1384.51 L1248.59 1380.25 L1256.86 1378.58 L1261.53 1378.58 L1261.53 1409.21 L1269.17 1409.21 L1269.17 1413.14 L1249.27 1413.14 L1249.27 1409.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1287.09 1382.65 L1275.28 1401.1 L1287.09 1401.1 L1287.09 1382.65 M1285.86 1378.58 L1291.74 1378.58 L1291.74 1401.1 L1296.67 1401.1 L1296.67 1404.99 L1291.74 1404.99 L1291.74 1413.14 L1287.09 1413.14 L1287.09 1404.99 L1271.49 1404.99 L1271.49 1400.48 L1285.86 1378.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1302.55 1409.21 L1310.19 1409.21 L1310.19 1382.84 L1301.88 1384.51 L1301.88 1380.25 L1310.14 1378.58 L1314.82 1378.58 L1314.82 1409.21 L1322.46 1409.21 L1322.46 1413.14 L1302.55 1413.14 L1302.55 1409.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1338.11 1394 Q1334.96 1394 1333.11 1396.15 Q1331.28 1398.3 1331.28 1402.05 Q1331.28 1405.78 1333.11 1407.96 Q1334.96 1410.11 1338.11 1410.11 Q1341.26 1410.11 1343.08 1407.96 Q1344.94 1405.78 1344.94 1402.05 Q1344.94 1398.3 1343.08 1396.15 Q1341.26 1394 1338.11 1394 M1347.39 1379.34 L1347.39 1383.6 Q1345.63 1382.77 1343.83 1382.33 Q1342.04 1381.89 1340.28 1381.89 Q1335.65 1381.89 1333.2 1385.02 Q1330.77 1388.14 1330.42 1394.46 Q1331.79 1392.45 1333.85 1391.38 Q1335.91 1390.29 1338.39 1390.29 Q1343.59 1390.29 1346.6 1393.46 Q1349.64 1396.61 1349.64 1402.05 Q1349.64 1407.38 1346.49 1410.59 Q1343.34 1413.81 1338.11 1413.81 Q1332.11 1413.81 1328.94 1409.23 Q1325.77 1404.62 1325.77 1395.9 Q1325.77 1387.7 1329.66 1382.84 Q1333.55 1377.96 1340.1 1377.96 Q1341.86 1377.96 1343.64 1378.3 Q1345.45 1378.65 1347.39 1379.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1364.7 1381.66 Q1361.09 1381.66 1359.26 1385.22 Q1357.46 1388.77 1357.46 1395.9 Q1357.46 1403 1359.26 1406.57 Q1361.09 1410.11 1364.7 1410.11 Q1368.34 1410.11 1370.14 1406.57 Q1371.97 1403 1371.97 1395.9 Q1371.97 1388.77 1370.14 1385.22 Q1368.34 1381.66 1364.7 1381.66 M1364.7 1377.96 Q1370.51 1377.96 1373.57 1382.56 Q1376.65 1387.15 1376.65 1395.9 Q1376.65 1404.62 1373.57 1409.23 Q1370.51 1413.81 1364.7 1413.81 Q1358.89 1413.81 1355.82 1409.23 Q1352.76 1404.62 1352.76 1395.9 Q1352.76 1387.15 1355.82 1382.56 Q1358.89 1377.96 1364.7 1377.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1227.3 1055.19 Q1230.65 1055.91 1232.53 1058.17 Q1234.43 1060.44 1234.43 1063.78 Q1234.43 1068.89 1230.91 1071.69 Q1227.39 1074.49 1220.91 1074.49 Q1218.73 1074.49 1216.42 1074.05 Q1214.13 1073.64 1211.67 1072.78 L1211.67 1068.27 Q1213.62 1069.4 1215.93 1069.98 Q1218.25 1070.56 1220.77 1070.56 Q1225.17 1070.56 1227.46 1068.82 Q1229.77 1067.09 1229.77 1063.78 Q1229.77 1060.72 1227.62 1059.01 Q1225.49 1057.27 1221.67 1057.27 L1217.65 1057.27 L1217.65 1053.43 L1221.86 1053.43 Q1225.31 1053.43 1227.14 1052.06 Q1228.96 1050.67 1228.96 1048.08 Q1228.96 1045.42 1227.07 1044.01 Q1225.19 1042.57 1221.67 1042.57 Q1219.75 1042.57 1217.55 1042.99 Q1215.35 1043.41 1212.71 1044.29 L1212.71 1040.12 Q1215.38 1039.38 1217.69 1039.01 Q1220.03 1038.64 1222.09 1038.64 Q1227.41 1038.64 1230.52 1041.07 Q1233.62 1043.48 1233.62 1047.6 Q1233.62 1050.47 1231.97 1052.46 Q1230.33 1054.42 1227.3 1055.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1239.5 1067.94 L1244.38 1067.94 L1244.38 1073.82 L1239.5 1073.82 L1239.5 1067.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1250.26 1069.89 L1257.9 1069.89 L1257.9 1043.52 L1249.59 1045.19 L1249.59 1040.93 L1257.85 1039.26 L1262.53 1039.26 L1262.53 1069.89 L1270.17 1069.89 L1270.17 1073.82 L1250.26 1073.82 L1250.26 1069.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1288.08 1043.34 L1276.28 1061.79 L1288.08 1061.79 L1288.08 1043.34 M1286.86 1039.26 L1292.74 1039.26 L1292.74 1061.79 L1297.67 1061.79 L1297.67 1065.67 L1292.74 1065.67 L1292.74 1073.82 L1288.08 1073.82 L1288.08 1065.67 L1272.48 1065.67 L1272.48 1061.16 L1286.86 1039.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1303.55 1069.89 L1311.19 1069.89 L1311.19 1043.52 L1302.88 1045.19 L1302.88 1040.93 L1311.14 1039.26 L1315.82 1039.26 L1315.82 1069.89 L1323.45 1069.89 L1323.45 1073.82 L1303.55 1073.82 L1303.55 1069.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1339.1 1054.68 Q1335.95 1054.68 1334.1 1056.83 Q1332.27 1058.98 1332.27 1062.73 Q1332.27 1066.46 1334.1 1068.64 Q1335.95 1070.79 1339.1 1070.79 Q1342.25 1070.79 1344.08 1068.64 Q1345.93 1066.46 1345.93 1062.73 Q1345.93 1058.98 1344.08 1056.83 Q1342.25 1054.68 1339.1 1054.68 M1348.39 1040.03 L1348.39 1044.29 Q1346.63 1043.45 1344.82 1043.01 Q1343.04 1042.57 1341.28 1042.57 Q1336.65 1042.57 1334.2 1045.7 Q1331.76 1048.82 1331.42 1055.14 Q1332.78 1053.13 1334.84 1052.06 Q1336.9 1050.98 1339.38 1050.98 Q1344.59 1050.98 1347.6 1054.15 Q1350.63 1057.29 1350.63 1062.73 Q1350.63 1068.06 1347.48 1071.28 Q1344.33 1074.49 1339.1 1074.49 Q1333.11 1074.49 1329.94 1069.91 Q1326.76 1065.3 1326.76 1056.58 Q1326.76 1048.38 1330.65 1043.52 Q1334.54 1038.64 1341.09 1038.64 Q1342.85 1038.64 1344.64 1038.98 Q1346.44 1039.33 1348.39 1040.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1355.75 1039.26 L1374.1 1039.26 L1374.1 1043.2 L1360.03 1043.2 L1360.03 1051.67 Q1361.05 1051.32 1362.07 1051.16 Q1363.08 1050.98 1364.1 1050.98 Q1369.89 1050.98 1373.27 1054.15 Q1376.65 1057.32 1376.65 1062.73 Q1376.65 1068.31 1373.18 1071.42 Q1369.7 1074.49 1363.39 1074.49 Q1361.21 1074.49 1358.94 1074.12 Q1356.7 1073.75 1354.29 1073.01 L1354.29 1068.31 Q1356.37 1069.45 1358.59 1070 Q1360.82 1070.56 1363.29 1070.56 Q1367.3 1070.56 1369.64 1068.45 Q1371.97 1066.35 1371.97 1062.73 Q1371.97 1059.12 1369.64 1057.02 Q1367.3 1054.91 1363.29 1054.91 Q1361.42 1054.91 1359.54 1055.33 Q1357.69 1055.74 1355.75 1056.62 L1355.75 1039.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1227.37 715.87 Q1230.72 716.588 1232.6 718.857 Q1234.5 721.125 1234.5 724.458 Q1234.5 729.574 1230.98 732.375 Q1227.46 735.176 1220.98 735.176 Q1218.8 735.176 1216.49 734.736 Q1214.2 734.319 1211.74 733.463 L1211.74 728.949 Q1213.69 730.083 1216 730.662 Q1218.32 731.241 1220.84 731.241 Q1225.24 731.241 1227.53 729.505 Q1229.84 727.769 1229.84 724.458 Q1229.84 721.403 1227.69 719.69 Q1225.56 717.954 1221.74 717.954 L1217.71 717.954 L1217.71 714.111 L1221.93 714.111 Q1225.38 714.111 1227.21 712.745 Q1229.03 711.357 1229.03 708.764 Q1229.03 706.102 1227.14 704.69 Q1225.26 703.255 1221.74 703.255 Q1219.82 703.255 1217.62 703.671 Q1215.42 704.088 1212.78 704.968 L1212.78 700.801 Q1215.45 700.06 1217.76 699.69 Q1220.1 699.32 1222.16 699.32 Q1227.48 699.32 1230.58 701.75 Q1233.69 704.158 1233.69 708.278 Q1233.69 711.148 1232.04 713.139 Q1230.4 715.107 1227.37 715.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1239.57 728.625 L1244.45 728.625 L1244.45 734.505 L1239.57 734.505 L1239.57 728.625 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1250.33 730.569 L1257.97 730.569 L1257.97 704.204 L1249.66 705.87 L1249.66 701.611 L1257.92 699.945 L1262.6 699.945 L1262.6 730.569 L1270.24 730.569 L1270.24 734.505 L1250.33 734.505 L1250.33 730.569 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1288.15 704.019 L1276.35 722.468 L1288.15 722.468 L1288.15 704.019 M1286.93 699.945 L1292.81 699.945 L1292.81 722.468 L1297.74 722.468 L1297.74 726.356 L1292.81 726.356 L1292.81 734.505 L1288.15 734.505 L1288.15 726.356 L1272.55 726.356 L1272.55 721.843 L1286.93 699.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1303.62 730.569 L1311.26 730.569 L1311.26 704.204 L1302.95 705.87 L1302.95 701.611 L1311.21 699.945 L1315.89 699.945 L1315.89 730.569 L1323.52 730.569 L1323.52 734.505 L1303.62 734.505 L1303.62 730.569 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1327.41 699.945 L1349.64 699.945 L1349.64 701.935 L1337.09 734.505 L1332.2 734.505 L1344.01 703.88 L1327.41 703.88 L1327.41 699.945 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1364.7 703.023 Q1361.09 703.023 1359.26 706.588 Q1357.46 710.13 1357.46 717.259 Q1357.46 724.366 1359.26 727.931 Q1361.09 731.472 1364.7 731.472 Q1368.34 731.472 1370.14 727.931 Q1371.97 724.366 1371.97 717.259 Q1371.97 710.13 1370.14 706.588 Q1368.34 703.023 1364.7 703.023 M1364.7 699.32 Q1370.51 699.32 1373.57 703.926 Q1376.65 708.509 1376.65 717.259 Q1376.65 725.986 1373.57 730.593 Q1370.51 735.176 1364.7 735.176 Q1358.89 735.176 1355.82 730.593 Q1352.76 725.986 1352.76 717.259 Q1352.76 708.509 1355.82 703.926 Q1358.89 699.32 1364.7 699.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1228.36 376.553 Q1231.72 377.27 1233.59 379.539 Q1235.49 381.807 1235.49 385.14 Q1235.49 390.256 1231.97 393.057 Q1228.46 395.858 1221.97 395.858 Q1219.8 395.858 1217.48 395.418 Q1215.19 395.002 1212.74 394.145 L1212.74 389.631 Q1214.68 390.765 1217 391.344 Q1219.31 391.923 1221.83 391.923 Q1226.23 391.923 1228.52 390.187 Q1230.84 388.451 1230.84 385.14 Q1230.84 382.085 1228.69 380.372 Q1226.56 378.636 1222.74 378.636 L1218.71 378.636 L1218.71 374.793 L1222.92 374.793 Q1226.37 374.793 1228.2 373.428 Q1230.03 372.039 1230.03 369.446 Q1230.03 366.784 1228.13 365.372 Q1226.26 363.937 1222.74 363.937 Q1220.82 363.937 1218.62 364.354 Q1216.42 364.77 1213.78 365.65 L1213.78 361.483 Q1216.44 360.742 1218.76 360.372 Q1221.09 360.002 1223.15 360.002 Q1228.48 360.002 1231.58 362.432 Q1234.68 364.84 1234.68 368.96 Q1234.68 371.83 1233.04 373.821 Q1231.4 375.789 1228.36 376.553 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1240.56 389.307 L1245.45 389.307 L1245.45 395.187 L1240.56 395.187 L1240.56 389.307 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1251.33 391.252 L1258.96 391.252 L1258.96 364.886 L1250.65 366.553 L1250.65 362.293 L1258.92 360.627 L1263.59 360.627 L1263.59 391.252 L1271.23 391.252 L1271.23 395.187 L1251.33 395.187 L1251.33 391.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1289.15 364.701 L1277.34 383.15 L1289.15 383.15 L1289.15 364.701 M1287.92 360.627 L1293.8 360.627 L1293.8 383.15 L1298.73 383.15 L1298.73 387.039 L1293.8 387.039 L1293.8 395.187 L1289.15 395.187 L1289.15 387.039 L1273.55 387.039 L1273.55 382.525 L1287.92 360.627 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1304.61 391.252 L1312.25 391.252 L1312.25 364.886 L1303.94 366.553 L1303.94 362.293 L1312.2 360.627 L1316.88 360.627 L1316.88 391.252 L1324.52 391.252 L1324.52 395.187 L1304.61 395.187 L1304.61 391.252 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1328.41 360.627 L1350.63 360.627 L1350.63 362.617 L1338.08 395.187 L1333.2 395.187 L1345.01 364.562 L1328.41 364.562 L1328.41 360.627 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip670)\" d=\"M 0 0 M1355.75 360.627 L1374.1 360.627 L1374.1 364.562 L1360.03 364.562 L1360.03 373.034 Q1361.05 372.687 1362.07 372.525 Q1363.08 372.34 1364.1 372.34 Q1369.89 372.34 1373.27 375.511 Q1376.65 378.682 1376.65 384.099 Q1376.65 389.678 1373.18 392.779 Q1369.7 395.858 1363.39 395.858 Q1361.21 395.858 1358.94 395.488 Q1356.7 395.117 1354.29 394.377 L1354.29 389.678 Q1356.37 390.812 1358.59 391.367 Q1360.82 391.923 1363.29 391.923 Q1367.3 391.923 1369.64 389.816 Q1371.97 387.71 1371.97 384.099 Q1371.97 380.488 1369.64 378.381 Q1367.3 376.275 1363.29 376.275 Q1361.42 376.275 1359.54 376.691 Q1357.69 377.108 1355.75 377.988 L1355.75 360.627 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip674)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1427.6,1445.72 1436.67,1319.98 1445.74,989.35 1454.81,576.36 1463.89,234.047 1472.96,89.263 1482.03,195.66 1491.11,513.808 1500.18,925.813 1509.25,1279.01 \n",
+       "  1518.32,1442.48 1527.4,1355.68 1536.47,1050.76 1545.54,640.716 1554.62,277.493 1563.69,95.6875 1572.76,162.664 1581.83,453.604 1590.91,860.692 1599.98,1233.08 \n",
+       "  1609.05,1432.78 1618.13,1385.79 1627.2,1109.52 1636.27,706.348 1645.34,325.651 1654.42,108.504 1663.49,135.355 1672.56,396.253 1681.64,794.525 1690.71,1182.6 \n",
+       "  1699.78,1416.68 1708.85,1410.04 1717.93,1165.13 1727,772.702 1736.07,378.143 1745.15,127.643 1754.22,114.003 1763.29,342.269 1772.36,727.868 1781.44,1127.94 \n",
+       "  1790.51,1394.25 1799.58,1428.15 1808.66,1217.07 1817.73,839.215 1826.8,434.559 1835.87,153.004 1844.95,98.8508 1854.02,292.152 1863.09,661.291 1872.17,1069.52 \n",
+       "  1881.24,1365.62 1890.31,1439.9 1899.38,1264.86 1908.46,905.312 1917.53,494.451 1926.6,184.445 1935.68,90.1143 1944.75,246.39 1953.82,595.378 1962.89,1007.82 \n",
+       "  1971.97,1330.96 1981.04,1445.1 1990.11,1308 1999.19,970.403 2008.26,557.345 2017.33,221.779 2026.4,87.9763 2035.48,205.462 2044.55,530.726 2053.62,943.315 \n",
+       "  2062.7,1290.45 2071.77,1443.58 2080.84,1346.02 2089.91,1033.88 2098.99,622.736 2108.06,264.795 2117.13,92.5815 2126.21,169.835 2135.28,467.943 2144.35,876.537 \n",
+       "  2153.42,1244.35 2162.5,1435.21 2171.57,1378.47 2180.64,1095.13 2189.72,690.074 2198.79,313.218 2207.86,104.043 2216.94,139.96 2226.01,407.659 2235.08,808.052 \n",
+       "  2244.15,1192.95 2253.23,1419.89 2262.3,1404.9 2271.37,1153.52 2280.45,758.773 2289.52,366.721 2298.59,122.427 2307.66,116.268 2316.74,350.511 2325.81,738.47 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"\n",
+       "M2184.31 216.178 L2321.02 216.178 L2321.02 95.2176 L2184.31 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2184.31,216.178 2321.02,216.178 2321.02,95.2176 2184.31,95.2176 2184.31,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip670)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2194.89,155.698 2258.37,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip670)\" d=\"M 0 0 M2298.01 149.584 Q2298.01 150.989 2297.47 153.449 Q2296.96 155.908 2296.54 157.079 Q2295.36 160.194 2293.02 162.818 Q2291.73 164.27 2290.33 165.324 Q2288.95 166.354 2287.92 166.87 Q2286.89 167.362 2285.67 167.619 Q2284.45 167.9 2283.89 167.924 Q2283.33 167.971 2282.53 167.971 L2280.7 175.114 Q2280.33 176.965 2280.14 177.082 Q2280.09 177.176 2279.98 177.223 Q2279.88 177.269 2279.79 177.269 L2279.7 177.269 Q2279.44 177.269 2279.3 177.152 Q2279.16 177.035 2279.13 176.895 L2279.13 176.777 Q2279.13 176.45 2280.23 172.234 Q2280.8 170.079 2281.29 167.854 Q2277.54 167.619 2275.22 165.956 Q2272.93 164.293 2272.93 161.061 Q2272.93 159.07 2275.24 152.957 Q2276.35 150.029 2276.35 148.811 Q2276.35 148.272 2276.23 147.944 Q2276.11 147.593 2275.88 147.476 Q2275.64 147.335 2275.5 147.312 Q2275.39 147.289 2275.15 147.289 Q2273.77 147.289 2272.48 148.671 Q2271.19 150.052 2270.3 153.238 Q2270.12 153.823 2270 153.964 Q2269.88 154.105 2269.53 154.105 Q2268.94 154.081 2268.94 153.613 Q2268.94 153.425 2269.16 152.699 Q2269.37 151.95 2269.86 150.849 Q2270.37 149.725 2271.08 148.717 Q2271.78 147.687 2272.88 146.961 Q2274 146.235 2275.29 146.235 Q2277.05 146.235 2278.13 147.382 Q2279.23 148.507 2279.23 150.17 Q2279.23 150.498 2279.16 150.872 Q2279.09 151.247 2279.02 151.458 Q2278.97 151.669 2278.83 152.067 Q2278.71 152.442 2278.69 152.512 Q2277.49 155.604 2276.88 157.618 Q2276.28 159.609 2276.18 160.194 Q2276.11 160.757 2276.11 161.436 Q2276.11 166.167 2281.57 166.8 L2289.53 135.109 Q2289.67 134.453 2289.79 134.313 Q2289.91 134.149 2290.26 134.149 Q2290.82 134.149 2290.82 134.664 Q2290.82 134.828 2290.68 135.39 L2282.76 166.893 Q2283.51 166.893 2283.98 166.87 Q2284.45 166.846 2285.43 166.636 Q2286.44 166.401 2287.28 165.98 Q2288.15 165.558 2289.37 164.715 Q2290.59 163.848 2291.78 162.63 Q2293.28 161.108 2294.62 158.555 Q2295.95 156.002 2295.95 153.894 Q2295.95 151.528 2294.24 149.818 Q2293.98 149.584 2293.84 149.443 Q2293.73 149.303 2293.61 149.069 Q2293.51 148.835 2293.51 148.53 Q2293.51 147.734 2294.26 146.984 Q2295.01 146.235 2295.9 146.235 Q2296.7 146.235 2297.36 147.008 Q2298.01 147.78 2298.01 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip710\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip711\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip712\">\n",
+       "    <rect x=\"1400\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"\n",
+       "M147.848 1486.45 L1113.71 1486.45 L1113.71 47.2441 L147.848 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip713\">\n",
+       "    <rect x=\"147\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  175.184,1486.45 175.184,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  357.421,1486.45 357.421,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  539.658,1486.45 539.658,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  721.895,1486.45 721.895,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  904.132,1486.45 904.132,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1086.37,1486.45 1086.37,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1445.72 1113.71,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1174.17 1113.71,1174.17 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,902.614 1113.71,902.614 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,631.064 1113.71,631.064 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,359.513 1113.71,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip713)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,87.9623 1113.71,87.9623 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 1113.71,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 147.848,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.184,1486.45 175.184,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  357.421,1486.45 357.421,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  539.658,1486.45 539.658,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  721.895,1486.45 721.895,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  904.132,1486.45 904.132,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1086.37,1486.45 1086.37,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1445.72 159.439,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1174.17 159.439,1174.17 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,902.614 159.439,902.614 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,631.064 159.439,631.064 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,359.513 159.439,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,87.9623 159.439,87.9623 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"M 0 0 M175.184 1508.44 Q171.573 1508.44 169.744 1512 Q167.939 1515.55 167.939 1522.67 Q167.939 1529.78 169.744 1533.35 Q171.573 1536.89 175.184 1536.89 Q178.818 1536.89 180.624 1533.35 Q182.452 1529.78 182.452 1522.67 Q182.452 1515.55 180.624 1512 Q178.818 1508.44 175.184 1508.44 M175.184 1504.73 Q180.994 1504.73 184.05 1509.34 Q187.128 1513.92 187.128 1522.67 Q187.128 1531.4 184.05 1536.01 Q180.994 1540.59 175.184 1540.59 Q169.374 1540.59 166.295 1536.01 Q163.239 1531.4 163.239 1522.67 Q163.239 1513.92 166.295 1509.34 Q169.374 1504.73 175.184 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M347.803 1535.98 L355.442 1535.98 L355.442 1509.62 L347.132 1511.29 L347.132 1507.03 L355.396 1505.36 L360.071 1505.36 L360.071 1535.98 L367.71 1535.98 L367.71 1539.92 L347.803 1539.92 L347.803 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M534.311 1535.98 L550.63 1535.98 L550.63 1539.92 L528.686 1539.92 L528.686 1535.98 Q531.348 1533.23 535.931 1528.6 Q540.538 1523.95 541.718 1522.61 Q543.964 1520.08 544.843 1518.35 Q545.746 1516.59 545.746 1514.9 Q545.746 1512.14 543.802 1510.41 Q541.88 1508.67 538.779 1508.67 Q536.579 1508.67 534.126 1509.43 Q531.695 1510.2 528.917 1511.75 L528.917 1507.03 Q531.742 1505.89 534.195 1505.31 Q536.649 1504.73 538.686 1504.73 Q544.056 1504.73 547.251 1507.42 Q550.445 1510.11 550.445 1514.6 Q550.445 1516.73 549.635 1518.65 Q548.848 1520.54 546.741 1523.14 Q546.163 1523.81 543.061 1527.03 Q539.959 1530.22 534.311 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M726.143 1521.29 Q729.499 1522 731.374 1524.27 Q733.273 1526.54 733.273 1529.87 Q733.273 1534.99 729.754 1537.79 Q726.236 1540.59 719.754 1540.59 Q717.578 1540.59 715.263 1540.15 Q712.972 1539.73 710.518 1538.88 L710.518 1534.36 Q712.462 1535.5 714.777 1536.08 Q717.092 1536.66 719.615 1536.66 Q724.013 1536.66 726.305 1534.92 Q728.62 1533.18 728.62 1529.87 Q728.62 1526.82 726.467 1525.11 Q724.337 1523.37 720.518 1523.37 L716.49 1523.37 L716.49 1519.53 L720.703 1519.53 Q724.152 1519.53 725.981 1518.16 Q727.81 1516.77 727.81 1514.18 Q727.81 1511.52 725.911 1510.11 Q724.037 1508.67 720.518 1508.67 Q718.597 1508.67 716.398 1509.09 Q714.199 1509.5 711.56 1510.38 L711.56 1506.22 Q714.222 1505.48 716.537 1505.11 Q718.874 1504.73 720.935 1504.73 Q726.259 1504.73 729.361 1507.17 Q732.462 1509.57 732.462 1513.69 Q732.462 1516.56 730.819 1518.55 Q729.175 1520.52 726.143 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M907.142 1509.43 L895.336 1527.88 L907.142 1527.88 L907.142 1509.43 M905.915 1505.36 L911.794 1505.36 L911.794 1527.88 L916.725 1527.88 L916.725 1531.77 L911.794 1531.77 L911.794 1539.92 L907.142 1539.92 L907.142 1531.77 L891.54 1531.77 L891.54 1527.26 L905.915 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1076.65 1505.36 L1095 1505.36 L1095 1509.3 L1080.93 1509.3 L1080.93 1517.77 Q1081.95 1517.42 1082.97 1517.26 Q1083.99 1517.07 1085 1517.07 Q1090.79 1517.07 1094.17 1520.24 Q1097.55 1523.42 1097.55 1528.83 Q1097.55 1534.41 1094.08 1537.51 Q1090.61 1540.59 1084.29 1540.59 Q1082.11 1540.59 1079.84 1540.22 Q1077.6 1539.85 1075.19 1539.11 L1075.19 1534.41 Q1077.27 1535.54 1079.49 1536.1 Q1081.72 1536.66 1084.19 1536.66 Q1088.2 1536.66 1090.54 1534.55 Q1092.87 1532.44 1092.87 1528.83 Q1092.87 1525.22 1090.54 1523.11 Q1088.2 1521.01 1084.19 1521.01 Q1082.32 1521.01 1080.44 1521.42 Q1078.59 1521.84 1076.65 1522.72 L1076.65 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M91.9503 1457.12 L96.8345 1457.12 L96.8345 1463 L91.9503 1463 L91.9503 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M111.904 1431.51 Q108.293 1431.51 106.464 1435.08 Q104.659 1438.62 104.659 1445.75 Q104.659 1452.86 106.464 1456.42 Q108.293 1459.96 111.904 1459.96 Q115.538 1459.96 117.344 1456.42 Q119.172 1452.86 119.172 1445.75 Q119.172 1438.62 117.344 1435.08 Q115.538 1431.51 111.904 1431.51 M111.904 1427.81 Q117.714 1427.81 120.77 1432.42 Q123.848 1437 123.848 1445.75 Q123.848 1454.48 120.77 1459.08 Q117.714 1463.67 111.904 1463.67 Q106.094 1463.67 103.015 1459.08 Q99.9595 1454.48 99.9595 1445.75 Q99.9595 1437 103.015 1432.42 Q106.094 1427.81 111.904 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M75.9319 1159.96 Q72.3208 1159.96 70.4921 1163.53 Q68.6865 1167.07 68.6865 1174.2 Q68.6865 1181.31 70.4921 1184.87 Q72.3208 1188.41 75.9319 1188.41 Q79.5661 1188.41 81.3717 1184.87 Q83.2004 1181.31 83.2004 1174.2 Q83.2004 1167.07 81.3717 1163.53 Q79.5661 1159.96 75.9319 1159.96 M75.9319 1156.26 Q81.742 1156.26 84.7976 1160.87 Q87.8763 1165.45 87.8763 1174.2 Q87.8763 1182.93 84.7976 1187.53 Q81.742 1192.12 75.9319 1192.12 Q70.1217 1192.12 67.043 1187.53 Q63.9875 1182.93 63.9875 1174.2 Q63.9875 1165.45 67.043 1160.87 Q70.1217 1156.26 75.9319 1156.26 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M92.9457 1185.57 L97.8299 1185.57 L97.8299 1191.45 L92.9457 1191.45 L92.9457 1185.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M102.946 1156.89 L121.302 1156.89 L121.302 1160.82 L107.228 1160.82 L107.228 1169.29 Q108.247 1168.95 109.265 1168.78 Q110.284 1168.6 111.302 1168.6 Q117.089 1168.6 120.469 1171.77 Q123.848 1174.94 123.848 1180.36 Q123.848 1185.94 120.376 1189.04 Q116.904 1192.12 110.584 1192.12 Q108.409 1192.12 106.14 1191.75 Q103.895 1191.38 101.487 1190.63 L101.487 1185.94 Q103.571 1187.07 105.793 1187.63 Q108.015 1188.18 110.492 1188.18 Q114.496 1188.18 116.834 1186.07 Q119.172 1183.97 119.172 1180.36 Q119.172 1176.75 116.834 1174.64 Q114.496 1172.53 110.492 1172.53 Q108.617 1172.53 106.742 1172.95 Q104.89 1173.37 102.946 1174.25 L102.946 1156.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M66.9736 915.959 L74.6124 915.959 L74.6124 889.594 L66.3023 891.26 L66.3023 887.001 L74.5661 885.334 L79.242 885.334 L79.242 915.959 L86.8809 915.959 L86.8809 919.894 L66.9736 919.894 L66.9736 915.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M91.9503 914.015 L96.8345 914.015 L96.8345 919.894 L91.9503 919.894 L91.9503 914.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M111.904 888.413 Q108.293 888.413 106.464 891.978 Q104.659 895.519 104.659 902.649 Q104.659 909.755 106.464 913.32 Q108.293 916.862 111.904 916.862 Q115.538 916.862 117.344 913.32 Q119.172 909.755 119.172 902.649 Q119.172 895.519 117.344 891.978 Q115.538 888.413 111.904 888.413 M111.904 884.709 Q117.714 884.709 120.77 889.316 Q123.848 893.899 123.848 902.649 Q123.848 911.376 120.77 915.982 Q117.714 920.566 111.904 920.566 Q106.094 920.566 103.015 915.982 Q99.9595 911.376 99.9595 902.649 Q99.9595 893.899 103.015 889.316 Q106.094 884.709 111.904 884.709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M67.969 644.408 L75.6078 644.408 L75.6078 618.043 L67.2977 619.71 L67.2977 615.45 L75.5615 613.784 L80.2374 613.784 L80.2374 644.408 L87.8763 644.408 L87.8763 648.344 L67.969 648.344 L67.969 644.408 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M92.9457 642.464 L97.8299 642.464 L97.8299 648.344 L92.9457 648.344 L92.9457 642.464 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M102.946 613.784 L121.302 613.784 L121.302 617.719 L107.228 617.719 L107.228 626.191 Q108.247 625.844 109.265 625.682 Q110.284 625.497 111.302 625.497 Q117.089 625.497 120.469 628.668 Q123.848 631.839 123.848 637.256 Q123.848 642.834 120.376 645.936 Q116.904 649.015 110.584 649.015 Q108.409 649.015 106.14 648.645 Q103.895 648.274 101.487 647.533 L101.487 642.834 Q103.571 643.969 105.793 644.524 Q108.015 645.08 110.492 645.08 Q114.496 645.08 116.834 642.973 Q119.172 640.867 119.172 637.256 Q119.172 633.645 116.834 631.538 Q114.496 629.432 110.492 629.432 Q108.617 629.432 106.742 629.848 Q104.89 630.265 102.946 631.145 L102.946 613.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M70.5615 372.858 L86.8809 372.858 L86.8809 376.793 L64.9366 376.793 L64.9366 372.858 Q67.5986 370.103 72.1819 365.474 Q76.7883 360.821 77.9689 359.478 Q80.2143 356.955 81.0939 355.219 Q81.9967 353.46 81.9967 351.77 Q81.9967 349.015 80.0522 347.279 Q78.1309 345.543 75.0291 345.543 Q72.83 345.543 70.3763 346.307 Q67.9458 347.071 65.168 348.622 L65.168 343.9 Q67.9921 342.765 70.4458 342.187 Q72.8995 341.608 74.9365 341.608 Q80.3068 341.608 83.5013 344.293 Q86.6957 346.978 86.6957 351.469 Q86.6957 353.599 85.8855 355.52 Q85.0985 357.418 82.992 360.011 Q82.4133 360.682 79.3115 363.899 Q76.2096 367.094 70.5615 372.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M91.9503 370.913 L96.8345 370.913 L96.8345 376.793 L91.9503 376.793 L91.9503 370.913 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M111.904 345.312 Q108.293 345.312 106.464 348.876 Q104.659 352.418 104.659 359.548 Q104.659 366.654 106.464 370.219 Q108.293 373.761 111.904 373.761 Q115.538 373.761 117.344 370.219 Q119.172 366.654 119.172 359.548 Q119.172 352.418 117.344 348.876 Q115.538 345.312 111.904 345.312 M111.904 341.608 Q117.714 341.608 120.77 346.214 Q123.848 350.798 123.848 359.548 Q123.848 368.274 120.77 372.881 Q117.714 377.464 111.904 377.464 Q106.094 377.464 103.015 372.881 Q99.9595 368.274 99.9595 359.548 Q99.9595 350.798 103.015 346.214 Q106.094 341.608 111.904 341.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M71.5569 101.307 L87.8763 101.307 L87.8763 105.242 L65.9319 105.242 L65.9319 101.307 Q68.5939 98.5525 73.1773 93.9229 Q77.7837 89.2701 78.9643 87.9275 Q81.2096 85.4044 82.0892 83.6683 Q82.992 81.909 82.992 80.2192 Q82.992 77.4646 81.0476 75.7285 Q79.1263 73.9924 76.0245 73.9924 Q73.8254 73.9924 71.3717 74.7563 Q68.9412 75.5202 66.1634 77.0711 L66.1634 72.3489 Q68.9875 71.2147 71.4412 70.636 Q73.8948 70.0573 75.9319 70.0573 Q81.3022 70.0573 84.4966 72.7424 Q87.6911 75.4276 87.6911 79.9183 Q87.6911 82.0479 86.8809 83.9692 Q86.0939 85.8674 83.9874 88.4599 Q83.4087 89.1312 80.3068 92.3488 Q77.205 95.5432 71.5569 101.307 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M92.9457 99.3627 L97.8299 99.3627 L97.8299 105.242 L92.9457 105.242 L92.9457 99.3627 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M102.946 70.6823 L121.302 70.6823 L121.302 74.6174 L107.228 74.6174 L107.228 83.0896 Q108.247 82.7424 109.265 82.5803 Q110.284 82.3952 111.302 82.3952 Q117.089 82.3952 120.469 85.5664 Q123.848 88.7377 123.848 94.1543 Q123.848 99.733 120.376 102.835 Q116.904 105.914 110.584 105.914 Q108.409 105.914 106.14 105.543 Q103.895 105.173 101.487 104.432 L101.487 99.733 Q103.571 100.867 105.793 101.423 Q108.015 101.978 110.492 101.978 Q114.496 101.978 116.834 99.8719 Q119.172 97.7654 119.172 94.1543 Q119.172 90.5433 116.834 88.4368 Q114.496 86.3303 110.492 86.3303 Q108.617 86.3303 106.742 86.747 Q104.89 87.1636 102.946 88.0433 L102.946 70.6823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip713)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.184,1445.72 184.388,1445.58 193.592,1445.16 202.796,1444.47 211.999,1443.5 221.203,1442.25 230.407,1440.73 239.611,1438.93 248.815,1436.85 258.019,1434.49 \n",
+       "  267.223,1431.86 276.427,1428.95 285.631,1425.77 294.835,1422.3 304.038,1418.56 313.242,1414.55 322.446,1410.25 331.65,1405.68 340.854,1400.83 350.058,1395.71 \n",
+       "  359.262,1390.3 368.466,1384.62 377.67,1378.67 386.873,1372.43 396.077,1365.92 405.281,1359.13 414.485,1352.07 423.689,1344.73 432.893,1337.11 442.097,1329.21 \n",
+       "  451.301,1321.04 460.505,1312.59 469.709,1303.86 478.912,1294.86 488.116,1285.57 497.32,1276.02 506.524,1266.18 515.728,1256.07 524.932,1245.68 534.136,1235.01 \n",
+       "  543.34,1224.07 552.544,1212.85 561.748,1201.35 570.951,1189.57 580.155,1177.52 589.359,1165.19 598.563,1152.58 607.767,1139.7 616.971,1126.54 626.175,1113.1 \n",
+       "  635.379,1099.39 644.583,1085.4 653.786,1071.13 662.99,1056.58 672.194,1041.76 681.398,1026.66 690.602,1011.28 699.806,995.629 709.01,979.698 718.214,963.49 \n",
+       "  727.418,947.005 736.622,930.243 745.825,913.204 755.029,895.887 764.233,878.294 773.437,860.423 782.641,842.276 791.845,823.851 801.049,805.15 810.253,786.171 \n",
+       "  819.457,766.915 828.661,747.382 837.864,727.573 847.068,707.486 856.272,687.122 865.476,666.48 874.68,645.562 883.884,624.367 893.088,602.895 902.292,581.146 \n",
+       "  911.496,559.119 920.699,536.816 929.903,514.235 939.107,491.378 948.311,468.243 957.515,444.831 966.719,421.143 975.923,397.177 985.127,372.934 994.331,348.414 \n",
+       "  1003.53,323.617 1012.74,298.543 1021.94,273.192 1031.15,247.564 1040.35,221.658 1049.55,195.476 1058.76,169.017 1067.96,142.28 1077.17,115.267 1086.37,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"\n",
+       "M945.897 216.178 L1081.51 216.178 L1081.51 95.2176 L945.897 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  945.897,216.178 1081.51,216.178 1081.51,95.2176 945.897,95.2176 945.897,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  956.628,155.698 1021.02,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"M 0 0 M1056.91 154.854 Q1056.91 157.22 1055.69 159.585 Q1054.47 161.951 1052.48 163.778 Q1050.49 165.582 1047.77 166.753 Q1045.05 167.924 1042.22 168.017 L1040.39 175.161 Q1040.04 176.895 1039.85 177.082 Q1039.67 177.269 1039.39 177.269 Q1038.8 177.269 1038.8 176.731 Q1038.8 176.567 1039.85 172.515 L1040.98 168.017 Q1036.72 167.783 1034.23 165.324 Q1031.75 162.865 1031.75 159.328 Q1031.75 156.939 1032.97 154.573 Q1034.21 152.184 1036.2 150.38 Q1038.22 148.577 1040.93 147.429 Q1043.65 146.281 1046.44 146.188 L1049.22 135.109 Q1049.36 134.477 1049.48 134.313 Q1049.6 134.149 1049.95 134.149 Q1050.21 134.149 1050.35 134.266 Q1050.49 134.383 1050.49 134.5 L1050.51 134.617 L1050.37 135.296 L1047.68 146.188 Q1050.07 146.352 1051.92 147.195 Q1053.77 148.038 1054.82 149.303 Q1055.88 150.544 1056.39 151.95 Q1056.91 153.355 1056.91 154.854 M1046.16 147.242 Q1043.58 147.476 1041.4 148.741 Q1039.22 150.006 1037.82 151.879 Q1036.41 153.73 1035.64 155.955 Q1034.87 158.157 1034.87 160.335 Q1034.87 162.045 1035.43 163.356 Q1036.01 164.668 1036.97 165.418 Q1037.93 166.144 1038.99 166.542 Q1040.07 166.917 1041.21 166.963 L1046.16 147.242 M1053.77 153.847 Q1053.77 150.802 1052.01 149.092 Q1050.25 147.382 1047.4 147.242 L1042.45 166.963 Q1044.54 166.8 1046.37 165.933 Q1048.22 165.043 1049.55 163.731 Q1050.89 162.396 1051.85 160.757 Q1052.81 159.094 1053.28 157.337 Q1053.77 155.557 1053.77 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"\n",
+       "M1386.9 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1386.9 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip714\">\n",
+       "    <rect x=\"1386\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1414.23,1486.45 1414.23,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1596.47,1486.45 1596.47,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1778.71,1486.45 1778.71,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1960.95,1486.45 1960.95,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2143.18,1486.45 2143.18,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.9,1420.82 2352.76,1420.82 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.9,1081.9 2352.76,1081.9 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.9,742.978 2352.76,742.978 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.9,404.059 2352.76,404.059 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip714)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.9,65.139 2352.76,65.139 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,1486.45 1386.9,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.23,1486.45 1414.23,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1596.47,1486.45 1596.47,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1778.71,1486.45 1778.71,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1960.95,1486.45 1960.95,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2143.18,1486.45 2143.18,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,1420.82 1398.49,1420.82 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,1081.9 1398.49,1081.9 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,742.978 1398.49,742.978 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,404.059 1398.49,404.059 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.9,65.139 1398.49,65.139 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"M 0 0 M1414.23 1508.44 Q1410.62 1508.44 1408.79 1512 Q1406.99 1515.55 1406.99 1522.67 Q1406.99 1529.78 1408.79 1533.35 Q1410.62 1536.89 1414.23 1536.89 Q1417.87 1536.89 1419.67 1533.35 Q1421.5 1529.78 1421.5 1522.67 Q1421.5 1515.55 1419.67 1512 Q1417.87 1508.44 1414.23 1508.44 M1414.23 1504.73 Q1420.04 1504.73 1423.1 1509.34 Q1426.18 1513.92 1426.18 1522.67 Q1426.18 1531.4 1423.1 1536.01 Q1420.04 1540.59 1414.23 1540.59 Q1408.42 1540.59 1405.35 1536.01 Q1402.29 1531.4 1402.29 1522.67 Q1402.29 1513.92 1405.35 1509.34 Q1408.42 1504.73 1414.23 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1586.85 1535.98 L1594.49 1535.98 L1594.49 1509.62 L1586.18 1511.29 L1586.18 1507.03 L1594.45 1505.36 L1599.12 1505.36 L1599.12 1535.98 L1606.76 1535.98 L1606.76 1539.92 L1586.85 1539.92 L1586.85 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1773.36 1535.98 L1789.68 1535.98 L1789.68 1539.92 L1767.74 1539.92 L1767.74 1535.98 Q1770.4 1533.23 1774.98 1528.6 Q1779.59 1523.95 1780.77 1522.61 Q1783.01 1520.08 1783.89 1518.35 Q1784.8 1516.59 1784.8 1514.9 Q1784.8 1512.14 1782.85 1510.41 Q1780.93 1508.67 1777.83 1508.67 Q1775.63 1508.67 1773.18 1509.43 Q1770.75 1510.2 1767.97 1511.75 L1767.97 1507.03 Q1770.79 1505.89 1773.25 1505.31 Q1775.7 1504.73 1777.74 1504.73 Q1783.11 1504.73 1786.3 1507.42 Q1789.5 1510.11 1789.5 1514.6 Q1789.5 1516.73 1788.69 1518.65 Q1787.9 1520.54 1785.79 1523.14 Q1785.21 1523.81 1782.11 1527.03 Q1779.01 1530.22 1773.36 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1965.19 1521.29 Q1968.55 1522 1970.43 1524.27 Q1972.32 1526.54 1972.32 1529.87 Q1972.32 1534.99 1968.8 1537.79 Q1965.29 1540.59 1958.8 1540.59 Q1956.63 1540.59 1954.31 1540.15 Q1952.02 1539.73 1949.57 1538.88 L1949.57 1534.36 Q1951.51 1535.5 1953.83 1536.08 Q1956.14 1536.66 1958.67 1536.66 Q1963.06 1536.66 1965.36 1534.92 Q1967.67 1533.18 1967.67 1529.87 Q1967.67 1526.82 1965.52 1525.11 Q1963.39 1523.37 1959.57 1523.37 L1955.54 1523.37 L1955.54 1519.53 L1959.75 1519.53 Q1963.2 1519.53 1965.03 1518.16 Q1966.86 1516.77 1966.86 1514.18 Q1966.86 1511.52 1964.96 1510.11 Q1963.09 1508.67 1959.57 1508.67 Q1957.65 1508.67 1955.45 1509.09 Q1953.25 1509.5 1950.61 1510.38 L1950.61 1506.22 Q1953.27 1505.48 1955.59 1505.11 Q1957.93 1504.73 1959.99 1504.73 Q1965.31 1504.73 1968.41 1507.17 Q1971.51 1509.57 1971.51 1513.69 Q1971.51 1516.56 1969.87 1518.55 Q1968.23 1520.52 1965.19 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M2146.19 1509.43 L2134.39 1527.88 L2146.19 1527.88 L2146.19 1509.43 M2144.97 1505.36 L2150.85 1505.36 L2150.85 1527.88 L2155.78 1527.88 L2155.78 1531.77 L2150.85 1531.77 L2150.85 1539.92 L2146.19 1539.92 L2146.19 1531.77 L2130.59 1531.77 L2130.59 1527.26 L2144.97 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M2315.7 1505.36 L2334.05 1505.36 L2334.05 1509.3 L2319.98 1509.3 L2319.98 1517.77 Q2321 1517.42 2322.02 1517.26 Q2323.04 1517.07 2324.05 1517.07 Q2329.84 1517.07 2333.22 1520.24 Q2336.6 1523.42 2336.6 1528.83 Q2336.6 1534.41 2333.13 1537.51 Q2329.66 1540.59 2323.34 1540.59 Q2321.16 1540.59 2318.89 1540.22 Q2316.65 1539.85 2314.24 1539.11 L2314.24 1534.41 Q2316.32 1535.54 2318.55 1536.1 Q2320.77 1536.66 2323.24 1536.66 Q2327.25 1536.66 2329.59 1534.55 Q2331.92 1532.44 2331.92 1528.83 Q2331.92 1525.22 2329.59 1523.11 Q2327.25 1521.01 2323.24 1521.01 Q2321.37 1521.01 2319.49 1521.42 Q2317.64 1521.84 2315.7 1522.72 L2315.7 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1239.57 1419.46 Q1242.92 1420.18 1244.8 1422.45 Q1246.7 1424.72 1246.7 1428.05 Q1246.7 1433.17 1243.18 1435.97 Q1239.66 1438.77 1233.18 1438.77 Q1231 1438.77 1228.69 1438.33 Q1226.4 1437.91 1223.94 1437.06 L1223.94 1432.54 Q1225.89 1433.68 1228.2 1434.25 Q1230.52 1434.83 1233.04 1434.83 Q1237.44 1434.83 1239.73 1433.1 Q1242.04 1431.36 1242.04 1428.05 Q1242.04 1425 1239.89 1423.28 Q1237.76 1421.55 1233.94 1421.55 L1229.91 1421.55 L1229.91 1417.7 L1234.13 1417.7 Q1237.58 1417.7 1239.4 1416.34 Q1241.23 1414.95 1241.23 1412.36 Q1241.23 1409.69 1239.33 1408.28 Q1237.46 1406.85 1233.94 1406.85 Q1232.02 1406.85 1229.82 1407.26 Q1227.62 1407.68 1224.98 1408.56 L1224.98 1404.39 Q1227.65 1403.65 1229.96 1403.28 Q1232.3 1402.91 1234.36 1402.91 Q1239.68 1402.91 1242.78 1405.34 Q1245.89 1407.75 1245.89 1411.87 Q1245.89 1414.74 1244.24 1416.73 Q1242.6 1418.7 1239.57 1419.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1251.77 1432.22 L1256.65 1432.22 L1256.65 1438.1 L1251.77 1438.1 L1251.77 1432.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1262.53 1434.16 L1270.17 1434.16 L1270.17 1407.8 L1261.86 1409.46 L1261.86 1405.2 L1270.12 1403.54 L1274.8 1403.54 L1274.8 1434.16 L1282.44 1434.16 L1282.44 1438.1 L1262.53 1438.1 L1262.53 1434.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1300.35 1407.61 L1288.55 1426.06 L1300.35 1426.06 L1300.35 1407.61 M1299.13 1403.54 L1305.01 1403.54 L1305.01 1426.06 L1309.94 1426.06 L1309.94 1429.95 L1305.01 1429.95 L1305.01 1438.1 L1300.35 1438.1 L1300.35 1429.95 L1284.75 1429.95 L1284.75 1425.44 L1299.13 1403.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1315.82 1434.16 L1323.45 1434.16 L1323.45 1407.8 L1315.14 1409.46 L1315.14 1405.2 L1323.41 1403.54 L1328.08 1403.54 L1328.08 1434.16 L1335.72 1434.16 L1335.72 1438.1 L1315.82 1438.1 L1315.82 1434.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1351.37 1418.95 Q1348.22 1418.95 1346.37 1421.11 Q1344.54 1423.26 1344.54 1427.01 Q1344.54 1430.74 1346.37 1432.91 Q1348.22 1435.06 1351.37 1435.06 Q1354.52 1435.06 1356.35 1432.91 Q1358.2 1430.74 1358.2 1427.01 Q1358.2 1423.26 1356.35 1421.11 Q1354.52 1418.95 1351.37 1418.95 M1360.65 1404.3 L1360.65 1408.56 Q1358.89 1407.73 1357.09 1407.29 Q1355.31 1406.85 1353.55 1406.85 Q1348.92 1406.85 1346.46 1409.97 Q1344.03 1413.1 1343.69 1419.42 Q1345.05 1417.4 1347.11 1416.34 Q1349.17 1415.25 1351.65 1415.25 Q1356.86 1415.25 1359.87 1418.42 Q1362.9 1421.57 1362.9 1427.01 Q1362.9 1432.33 1359.75 1435.55 Q1356.6 1438.77 1351.37 1438.77 Q1345.38 1438.77 1342.2 1434.19 Q1339.03 1429.58 1339.03 1420.85 Q1339.03 1412.66 1342.92 1407.8 Q1346.81 1402.91 1353.36 1402.91 Q1355.12 1402.91 1356.9 1403.26 Q1358.71 1403.61 1360.65 1404.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1240.63 1080.54 Q1243.99 1081.26 1245.86 1083.53 Q1247.76 1085.8 1247.76 1089.13 Q1247.76 1094.25 1244.24 1097.05 Q1240.72 1099.85 1234.24 1099.85 Q1232.07 1099.85 1229.75 1099.41 Q1227.46 1098.99 1225.01 1098.14 L1225.01 1093.62 Q1226.95 1094.76 1229.27 1095.34 Q1231.58 1095.91 1234.1 1095.91 Q1238.5 1095.91 1240.79 1094.18 Q1243.11 1092.44 1243.11 1089.13 Q1243.11 1086.08 1240.96 1084.36 Q1238.83 1082.63 1235.01 1082.63 L1230.98 1082.63 L1230.98 1078.78 L1235.19 1078.78 Q1238.64 1078.78 1240.47 1077.42 Q1242.3 1076.03 1242.3 1073.44 Q1242.3 1070.78 1240.4 1069.36 Q1238.52 1067.93 1235.01 1067.93 Q1233.08 1067.93 1230.89 1068.34 Q1228.69 1068.76 1226.05 1069.64 L1226.05 1065.47 Q1228.71 1064.73 1231.02 1064.36 Q1233.36 1063.99 1235.42 1063.99 Q1240.75 1063.99 1243.85 1066.42 Q1246.95 1068.83 1246.95 1072.95 Q1246.95 1075.82 1245.31 1077.81 Q1243.66 1079.78 1240.63 1080.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1252.83 1093.3 L1257.71 1093.3 L1257.71 1099.18 L1252.83 1099.18 L1252.83 1093.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1263.59 1095.24 L1271.23 1095.24 L1271.23 1068.88 L1262.92 1070.54 L1262.92 1066.28 L1271.19 1064.62 L1275.86 1064.62 L1275.86 1095.24 L1283.5 1095.24 L1283.5 1099.18 L1263.59 1099.18 L1263.59 1095.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1301.42 1068.69 L1289.61 1087.14 L1301.42 1087.14 L1301.42 1068.69 M1300.19 1064.62 L1306.07 1064.62 L1306.07 1087.14 L1311 1087.14 L1311 1091.03 L1306.07 1091.03 L1306.07 1099.18 L1301.42 1099.18 L1301.42 1091.03 L1285.82 1091.03 L1285.82 1086.52 L1300.19 1064.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1316.88 1095.24 L1324.52 1095.24 L1324.52 1068.88 L1316.21 1070.54 L1316.21 1066.28 L1324.47 1064.62 L1329.15 1064.62 L1329.15 1095.24 L1336.79 1095.24 L1336.79 1099.18 L1316.88 1099.18 L1316.88 1095.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1340.68 1064.62 L1362.9 1064.62 L1362.9 1066.61 L1350.35 1099.18 L1345.47 1099.18 L1357.27 1068.55 L1340.68 1068.55 L1340.68 1064.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1239.82 741.624 Q1243.18 742.342 1245.05 744.61 Q1246.95 746.879 1246.95 750.212 Q1246.95 755.328 1243.43 758.129 Q1239.91 760.929 1233.43 760.929 Q1231.26 760.929 1228.94 760.49 Q1226.65 760.073 1224.2 759.216 L1224.2 754.703 Q1226.14 755.837 1228.46 756.416 Q1230.77 756.994 1233.29 756.994 Q1237.69 756.994 1239.98 755.258 Q1242.3 753.522 1242.3 750.212 Q1242.3 747.156 1240.15 745.443 Q1238.02 743.707 1234.2 743.707 L1230.17 743.707 L1230.17 739.865 L1234.38 739.865 Q1237.83 739.865 1239.66 738.499 Q1241.49 737.11 1241.49 734.518 Q1241.49 731.855 1239.59 730.443 Q1237.71 729.008 1234.2 729.008 Q1232.27 729.008 1230.08 729.425 Q1227.88 729.842 1225.24 730.721 L1225.24 726.555 Q1227.9 725.814 1230.21 725.443 Q1232.55 725.073 1234.61 725.073 Q1239.94 725.073 1243.04 727.504 Q1246.14 729.911 1246.14 734.031 Q1246.14 736.902 1244.5 738.892 Q1242.85 740.86 1239.82 741.624 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1252.02 754.379 L1256.9 754.379 L1256.9 760.258 L1252.02 760.258 L1252.02 754.379 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1262.78 756.323 L1270.42 756.323 L1270.42 729.957 L1262.11 731.624 L1262.11 727.365 L1270.38 725.698 L1275.05 725.698 L1275.05 756.323 L1282.69 756.323 L1282.69 760.258 L1262.78 760.258 L1262.78 756.323 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1300.61 729.772 L1288.8 748.221 L1300.61 748.221 L1300.61 729.772 M1299.38 725.698 L1305.26 725.698 L1305.26 748.221 L1310.19 748.221 L1310.19 752.11 L1305.26 752.11 L1305.26 760.258 L1300.61 760.258 L1300.61 752.11 L1285.01 752.11 L1285.01 747.596 L1299.38 725.698 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1316.07 756.323 L1323.71 756.323 L1323.71 729.957 L1315.4 731.624 L1315.4 727.365 L1323.66 725.698 L1328.34 725.698 L1328.34 756.323 L1335.98 756.323 L1335.98 760.258 L1316.07 760.258 L1316.07 756.323 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1351.05 743.846 Q1347.71 743.846 1345.79 745.629 Q1343.89 747.411 1343.89 750.536 Q1343.89 753.661 1345.79 755.443 Q1347.71 757.226 1351.05 757.226 Q1354.38 757.226 1356.3 755.443 Q1358.22 753.638 1358.22 750.536 Q1358.22 747.411 1356.3 745.629 Q1354.4 743.846 1351.05 743.846 M1346.37 741.855 Q1343.36 741.115 1341.67 739.055 Q1340.01 736.994 1340.01 734.031 Q1340.01 729.888 1342.95 727.481 Q1345.91 725.073 1351.05 725.073 Q1356.21 725.073 1359.15 727.481 Q1362.09 729.888 1362.09 734.031 Q1362.09 736.994 1360.4 739.055 Q1358.73 741.115 1355.75 741.855 Q1359.13 742.642 1361 744.934 Q1362.9 747.226 1362.9 750.536 Q1362.9 755.559 1359.82 758.244 Q1356.76 760.929 1351.05 760.929 Q1345.33 760.929 1342.25 758.244 Q1339.2 755.559 1339.2 750.536 Q1339.2 747.226 1341.09 744.934 Q1342.99 742.642 1346.37 741.855 M1344.66 734.471 Q1344.66 737.156 1346.33 738.661 Q1348.01 740.166 1351.05 740.166 Q1354.06 740.166 1355.75 738.661 Q1357.46 737.156 1357.46 734.471 Q1357.46 731.786 1355.75 730.281 Q1354.06 728.777 1351.05 728.777 Q1348.01 728.777 1346.33 730.281 Q1344.66 731.786 1344.66 734.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1239.91 402.704 Q1243.27 403.422 1245.14 405.69 Q1247.04 407.959 1247.04 411.292 Q1247.04 416.408 1243.52 419.209 Q1240.01 422.01 1233.52 422.01 Q1231.35 422.01 1229.03 421.57 Q1226.74 421.153 1224.29 420.297 L1224.29 415.783 Q1226.23 416.917 1228.55 417.496 Q1230.86 418.075 1233.39 418.075 Q1237.78 418.075 1240.08 416.339 Q1242.39 414.602 1242.39 411.292 Q1242.39 408.237 1240.24 406.524 Q1238.11 404.788 1234.29 404.788 L1230.26 404.788 L1230.26 400.945 L1234.47 400.945 Q1237.92 400.945 1239.75 399.579 Q1241.58 398.191 1241.58 395.598 Q1241.58 392.936 1239.68 391.524 Q1237.81 390.089 1234.29 390.089 Q1232.37 390.089 1230.17 390.505 Q1227.97 390.922 1225.33 391.802 L1225.33 387.635 Q1227.99 386.894 1230.31 386.524 Q1232.65 386.154 1234.71 386.154 Q1240.03 386.154 1243.13 388.584 Q1246.23 390.991 1246.23 395.112 Q1246.23 397.982 1244.59 399.973 Q1242.95 401.941 1239.91 402.704 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1252.11 415.459 L1257 415.459 L1257 421.339 L1252.11 421.339 L1252.11 415.459 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1262.88 417.403 L1270.52 417.403 L1270.52 391.038 L1262.21 392.704 L1262.21 388.445 L1270.47 386.779 L1275.14 386.779 L1275.14 417.403 L1282.78 417.403 L1282.78 421.339 L1262.88 421.339 L1262.88 417.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1300.7 390.853 L1288.89 409.302 L1300.7 409.302 L1300.7 390.853 M1299.47 386.779 L1305.35 386.779 L1305.35 409.302 L1310.28 409.302 L1310.28 413.19 L1305.35 413.19 L1305.35 421.339 L1300.7 421.339 L1300.7 413.19 L1285.1 413.19 L1285.1 408.677 L1299.47 386.779 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1316.16 417.403 L1323.8 417.403 L1323.8 391.038 L1315.49 392.704 L1315.49 388.445 L1323.76 386.779 L1328.43 386.779 L1328.43 417.403 L1336.07 417.403 L1336.07 421.339 L1316.16 421.339 L1316.16 417.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1341.28 420.621 L1341.28 416.362 Q1343.04 417.195 1344.84 417.635 Q1346.65 418.075 1348.39 418.075 Q1353.01 418.075 1355.45 414.973 Q1357.9 411.848 1358.25 405.505 Q1356.9 407.496 1354.84 408.561 Q1352.78 409.626 1350.28 409.626 Q1345.1 409.626 1342.07 406.501 Q1339.06 403.353 1339.06 397.913 Q1339.06 392.589 1342.2 389.371 Q1345.35 386.154 1350.58 386.154 Q1356.58 386.154 1359.73 390.76 Q1362.9 395.343 1362.9 404.093 Q1362.9 412.265 1359.01 417.149 Q1355.14 422.01 1348.59 422.01 Q1346.83 422.01 1345.03 421.663 Q1343.22 421.315 1341.28 420.621 M1350.58 405.968 Q1353.73 405.968 1355.56 403.815 Q1357.41 401.663 1357.41 397.913 Q1357.41 394.186 1355.56 392.033 Q1353.73 389.857 1350.58 389.857 Q1347.44 389.857 1345.58 392.033 Q1343.76 394.186 1343.76 397.913 Q1343.76 401.663 1345.58 403.815 Q1347.44 405.968 1350.58 405.968 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1240.1 63.7848 Q1243.46 64.5024 1245.33 66.7709 Q1247.23 69.0394 1247.23 72.3727 Q1247.23 77.4884 1243.71 80.2894 Q1240.19 83.0903 1233.71 83.0903 Q1231.53 83.0903 1229.22 82.6505 Q1226.93 82.2338 1224.47 81.3773 L1224.47 76.8634 Q1226.42 77.9977 1228.73 78.5764 Q1231.05 79.1551 1233.57 79.1551 Q1237.97 79.1551 1240.26 77.419 Q1242.58 75.6829 1242.58 72.3727 Q1242.58 69.3172 1240.42 67.6042 Q1238.29 65.8681 1234.47 65.8681 L1230.45 65.8681 L1230.45 62.0256 L1234.66 62.0256 Q1238.11 62.0256 1239.94 60.6598 Q1241.77 59.2709 1241.77 56.6784 Q1241.77 54.0163 1239.87 52.6043 Q1237.99 51.1691 1234.47 51.1691 Q1232.55 51.1691 1230.35 51.5858 Q1228.15 52.0025 1225.52 52.8821 L1225.52 48.7154 Q1228.18 47.9747 1230.49 47.6043 Q1232.83 47.234 1234.89 47.234 Q1240.21 47.234 1243.32 49.6645 Q1246.42 52.0719 1246.42 56.1923 Q1246.42 59.0626 1244.77 61.0533 Q1243.13 63.0209 1240.1 63.7848 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1252.3 76.5394 L1257.18 76.5394 L1257.18 82.419 L1252.3 82.419 L1252.3 76.5394 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1263.06 78.4838 L1270.7 78.4838 L1270.7 52.1182 L1262.39 53.7849 L1262.39 49.5256 L1270.65 47.859 L1275.33 47.859 L1275.33 78.4838 L1282.97 78.4838 L1282.97 82.419 L1263.06 82.419 L1263.06 78.4838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1300.89 51.933 L1289.08 70.382 L1300.89 70.382 L1300.89 51.933 M1299.66 47.859 L1305.54 47.859 L1305.54 70.382 L1310.47 70.382 L1310.47 74.2709 L1305.54 74.2709 L1305.54 82.419 L1300.89 82.419 L1300.89 74.2709 L1285.28 74.2709 L1285.28 69.757 L1299.66 47.859 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1319.57 78.4838 L1335.89 78.4838 L1335.89 82.419 L1313.94 82.419 L1313.94 78.4838 Q1316.6 75.7292 1321.19 71.0996 Q1325.79 66.4468 1326.97 65.1043 Q1329.22 62.5811 1330.1 60.845 Q1331 59.0858 1331 57.396 Q1331 54.6413 1329.06 52.9052 Q1327.14 51.1691 1324.03 51.1691 Q1321.83 51.1691 1319.38 51.933 Q1316.95 52.6969 1314.17 54.2478 L1314.17 49.5256 Q1317 48.3914 1319.45 47.8127 Q1321.9 47.234 1323.94 47.234 Q1329.31 47.234 1332.51 49.9191 Q1335.7 52.6043 1335.7 57.095 Q1335.7 59.2247 1334.89 61.1459 Q1334.1 63.0441 1332 65.6367 Q1331.42 66.3079 1328.32 69.5255 Q1325.21 72.72 1319.57 78.4838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip710)\" d=\"M 0 0 M1350.95 50.9377 Q1347.34 50.9377 1345.51 54.5025 Q1343.71 58.0441 1343.71 65.1737 Q1343.71 72.2801 1345.51 75.8449 Q1347.34 79.3866 1350.95 79.3866 Q1354.59 79.3866 1356.39 75.8449 Q1358.22 72.2801 1358.22 65.1737 Q1358.22 58.0441 1356.39 54.5025 Q1354.59 50.9377 1350.95 50.9377 M1350.95 47.234 Q1356.76 47.234 1359.82 51.8404 Q1362.9 56.4237 1362.9 65.1737 Q1362.9 73.9005 1359.82 78.507 Q1356.76 83.0903 1350.95 83.0903 Q1345.14 83.0903 1342.07 78.507 Q1339.01 73.9005 1339.01 65.1737 Q1339.01 56.4237 1342.07 51.8404 Q1345.14 47.234 1350.95 47.234 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip714)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.23,1445.72 1423.44,1320.12 1432.64,989.886 1441.85,577.38 1451.05,235.468 1460.25,90.8484 1469.46,197.111 1478.66,514.875 1487.87,926.386 1497.07,1279.15 \n",
+       "  1506.27,1442.45 1515.48,1355.78 1524.68,1051.24 1533.89,641.684 1543.09,278.86 1552.29,97.1979 1561.5,163.998 1570.7,454.5 1579.9,861.062 1589.11,1233.05 \n",
+       "  1598.31,1432.64 1607.52,1385.88 1616.72,1110.11 1625.92,707.468 1635.13,327.121 1644.33,109.946 1653.54,136.378 1662.74,396.608 1671.94,794.233 1681.15,1181.97 \n",
+       "  1690.35,1416.19 1699.56,1410.16 1708.76,1166.11 1717.96,774.406 1727.17,380.102 1736.37,129.189 1745.57,114.56 1754.78,341.606 1763.98,726.243 1773.19,1126.05 \n",
+       "  1782.39,1393.01 1791.59,1428.28 1800.8,1218.81 1810,842.134 1819.21,437.658 1828.41,155.065 1837.61,98.9172 1846.82,289.963 1856.02,657.48 1865.23,1065.45 \n",
+       "  1874.43,1362.92 1883.63,1439.82 1892.84,1267.7 1902.04,910.23 1911.24,499.623 1920.45,187.735 1929.65,89.8878 1938.86,242.233 1948.06,588.399 1957.26,1000.36 \n",
+       "  1966.47,1325.77 1975.67,1444.32 1984.88,1312.18 1994.08,978.196 2003.28,565.794 2012.49,227.375 2021.69,87.9763 2030.9,199.065 2040.1,519.552 2049.3,930.996 \n",
+       "  2058.51,1281.37 2067.71,1441.24 2076.92,1351.55 2086.12,1045.42 2095.32,635.89 2104.53,274.155 2113.73,93.7452 2122.93,161.213 2132.14,451.606 2141.34,857.697 \n",
+       "  2150.55,1229.58 2159.75,1430 2168.95,1384.99 2178.16,1111.17 2187.36,709.532 2196.57,328.202 2205.77,107.801 2214.97,129.549 2224.18,385.375 2233.38,780.904 \n",
+       "  2242.59,1170.28 2251.79,1409.96 2260.99,1411.58 2270.2,1174.55 2279.4,786.197 2288.6,389.585 2297.81,130.78 2307.01,105.061 2316.22,321.836 2325.42,701.22 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"\n",
+       "M2182.33 216.178 L2320.56 216.178 L2320.56 95.2176 L2182.33 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2182.33,216.178 2320.56,216.178 2320.56,95.2176 2182.33,95.2176 2182.33,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip710)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2193.06,155.698 2257.45,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip710)\" d=\"M 0 0 M2297.25 149.584 Q2297.25 150.989 2296.71 153.449 Q2296.19 155.908 2295.77 157.079 Q2294.6 160.194 2292.26 162.818 Q2290.97 164.27 2289.57 165.324 Q2288.18 166.354 2287.15 166.87 Q2286.12 167.362 2284.9 167.619 Q2283.69 167.9 2283.12 167.924 Q2282.56 167.971 2281.77 167.971 L2279.94 175.114 Q2279.56 176.965 2279.38 177.082 Q2279.33 177.176 2279.21 177.223 Q2279.12 177.269 2279.03 177.269 L2278.93 177.269 Q2278.67 177.269 2278.53 177.152 Q2278.39 177.035 2278.37 176.895 L2278.37 176.777 Q2278.37 176.45 2279.47 172.234 Q2280.03 170.079 2280.52 167.854 Q2276.78 167.619 2274.46 165.956 Q2272.16 164.293 2272.16 161.061 Q2272.16 159.07 2274.48 152.957 Q2275.58 150.029 2275.58 148.811 Q2275.58 148.272 2275.46 147.944 Q2275.35 147.593 2275.11 147.476 Q2274.88 147.335 2274.74 147.312 Q2274.62 147.289 2274.39 147.289 Q2273.01 147.289 2271.72 148.671 Q2270.43 150.052 2269.54 153.238 Q2269.35 153.823 2269.23 153.964 Q2269.12 154.105 2268.77 154.105 Q2268.18 154.081 2268.18 153.613 Q2268.18 153.425 2268.39 152.699 Q2268.6 151.95 2269.09 150.849 Q2269.61 149.725 2270.31 148.717 Q2271.01 147.687 2272.12 146.961 Q2273.24 146.235 2274.53 146.235 Q2276.28 146.235 2277.36 147.382 Q2278.46 148.507 2278.46 150.17 Q2278.46 150.498 2278.39 150.872 Q2278.32 151.247 2278.25 151.458 Q2278.21 151.669 2278.06 152.067 Q2277.95 152.442 2277.92 152.512 Q2276.73 155.604 2276.12 157.618 Q2275.51 159.609 2275.42 160.194 Q2275.35 160.757 2275.35 161.436 Q2275.35 166.167 2280.81 166.8 L2288.77 135.109 Q2288.91 134.453 2289.03 134.313 Q2289.14 134.149 2289.49 134.149 Q2290.06 134.149 2290.06 134.664 Q2290.06 134.828 2289.92 135.39 L2282 166.893 Q2282.75 166.893 2283.22 166.87 Q2283.69 166.846 2284.67 166.636 Q2285.68 166.401 2286.52 165.98 Q2287.39 165.558 2288.6 164.715 Q2289.82 163.848 2291.02 162.63 Q2292.52 161.108 2293.85 158.555 Q2295.19 156.002 2295.19 153.894 Q2295.19 151.528 2293.48 149.818 Q2293.22 149.584 2293.08 149.443 Q2292.96 149.303 2292.84 149.069 Q2292.75 148.835 2292.75 148.53 Q2292.75 147.734 2293.5 146.984 Q2294.25 146.235 2295.14 146.235 Q2295.94 146.235 2296.59 147.008 Q2297.25 147.78 2297.25 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip750\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip751\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip752\">\n",
+       "    <rect x=\"1386\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"\n",
+       "M110.881 1486.45 L1095.22 1486.45 L1095.22 47.2441 L110.881 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip753\">\n",
+       "    <rect x=\"110\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  138.74,1486.45 138.74,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  324.464,1486.45 324.464,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  510.189,1486.45 510.189,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  695.914,1486.45 695.914,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  881.638,1486.45 881.638,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1067.36,1486.45 1067.36,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  110.881,1445.72 1095.22,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  110.881,1083.65 1095.22,1083.65 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  110.881,721.581 1095.22,721.581 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip753)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  110.881,359.513 1095.22,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,1486.45 1095.22,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,1486.45 110.881,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  138.74,1486.45 138.74,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  324.464,1486.45 324.464,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  510.189,1486.45 510.189,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  695.914,1486.45 695.914,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  881.638,1486.45 881.638,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1067.36,1486.45 1067.36,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,1445.72 122.693,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,1083.65 122.693,1083.65 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,721.581 122.693,721.581 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  110.881,359.513 122.693,359.513 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"M 0 0 M138.74 1508.44 Q135.128 1508.44 133.3 1512 Q131.494 1515.55 131.494 1522.67 Q131.494 1529.78 133.3 1533.35 Q135.128 1536.89 138.74 1536.89 Q142.374 1536.89 144.179 1533.35 Q146.008 1529.78 146.008 1522.67 Q146.008 1515.55 144.179 1512 Q142.374 1508.44 138.74 1508.44 M138.74 1504.73 Q144.55 1504.73 147.605 1509.34 Q150.684 1513.92 150.684 1522.67 Q150.684 1531.4 147.605 1536.01 Q144.55 1540.59 138.74 1540.59 Q132.929 1540.59 129.851 1536.01 Q126.795 1531.4 126.795 1522.67 Q126.795 1513.92 129.851 1509.34 Q132.929 1504.73 138.74 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M314.846 1535.98 L322.485 1535.98 L322.485 1509.62 L314.175 1511.29 L314.175 1507.03 L322.439 1505.36 L327.115 1505.36 L327.115 1535.98 L334.754 1535.98 L334.754 1539.92 L314.846 1539.92 L314.846 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M504.842 1535.98 L521.161 1535.98 L521.161 1539.92 L499.217 1539.92 L499.217 1535.98 Q501.879 1533.23 506.462 1528.6 Q511.068 1523.95 512.249 1522.61 Q514.494 1520.08 515.374 1518.35 Q516.277 1516.59 516.277 1514.9 Q516.277 1512.14 514.332 1510.41 Q512.411 1508.67 509.309 1508.67 Q507.11 1508.67 504.656 1509.43 Q502.226 1510.2 499.448 1511.75 L499.448 1507.03 Q502.272 1505.89 504.726 1505.31 Q507.18 1504.73 509.217 1504.73 Q514.587 1504.73 517.781 1507.42 Q520.976 1510.11 520.976 1514.6 Q520.976 1516.73 520.166 1518.65 Q519.379 1520.54 517.272 1523.14 Q516.693 1523.81 513.592 1527.03 Q510.49 1530.22 504.842 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M700.161 1521.29 Q703.518 1522 705.393 1524.27 Q707.291 1526.54 707.291 1529.87 Q707.291 1534.99 703.772 1537.79 Q700.254 1540.59 693.772 1540.59 Q691.596 1540.59 689.282 1540.15 Q686.99 1539.73 684.536 1538.88 L684.536 1534.36 Q686.481 1535.5 688.795 1536.08 Q691.11 1536.66 693.633 1536.66 Q698.032 1536.66 700.323 1534.92 Q702.638 1533.18 702.638 1529.87 Q702.638 1526.82 700.485 1525.11 Q698.356 1523.37 694.536 1523.37 L690.508 1523.37 L690.508 1519.53 L694.721 1519.53 Q698.17 1519.53 699.999 1518.16 Q701.828 1516.77 701.828 1514.18 Q701.828 1511.52 699.93 1510.11 Q698.055 1508.67 694.536 1508.67 Q692.615 1508.67 690.416 1509.09 Q688.217 1509.5 685.578 1510.38 L685.578 1506.22 Q688.24 1505.48 690.555 1505.11 Q692.893 1504.73 694.953 1504.73 Q700.277 1504.73 703.379 1507.17 Q706.481 1509.57 706.481 1513.69 Q706.481 1516.56 704.837 1518.55 Q703.194 1520.52 700.161 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M884.647 1509.43 L872.842 1527.88 L884.647 1527.88 L884.647 1509.43 M883.421 1505.36 L889.3 1505.36 L889.3 1527.88 L894.231 1527.88 L894.231 1531.77 L889.3 1531.77 L889.3 1539.92 L884.647 1539.92 L884.647 1531.77 L869.046 1531.77 L869.046 1527.26 L883.421 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1057.64 1505.36 L1076 1505.36 L1076 1509.3 L1061.92 1509.3 L1061.92 1517.77 Q1062.94 1517.42 1063.96 1517.26 Q1064.98 1517.07 1066 1517.07 Q1071.78 1517.07 1075.16 1520.24 Q1078.54 1523.42 1078.54 1528.83 Q1078.54 1534.41 1075.07 1537.51 Q1071.6 1540.59 1065.28 1540.59 Q1063.1 1540.59 1060.84 1540.22 Q1058.59 1539.85 1056.18 1539.11 L1056.18 1534.41 Q1058.27 1535.54 1060.49 1536.1 Q1062.71 1536.66 1065.19 1536.66 Q1069.19 1536.66 1071.53 1534.55 Q1073.87 1532.44 1073.87 1528.83 Q1073.87 1525.22 1071.53 1523.11 Q1069.19 1521.01 1065.19 1521.01 Q1063.31 1521.01 1061.44 1521.42 Q1059.59 1521.84 1057.64 1522.72 L1057.64 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M66.9736 1096.99 L74.6124 1096.99 L74.6124 1070.63 L66.3023 1072.29 L66.3023 1068.03 L74.5661 1066.37 L79.242 1066.37 L79.242 1096.99 L86.8809 1096.99 L86.8809 1100.93 L66.9736 1100.93 L66.9736 1096.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M70.5615 734.925 L86.8809 734.925 L86.8809 738.861 L64.9366 738.861 L64.9366 734.925 Q67.5986 732.171 72.1819 727.541 Q76.7883 722.888 77.9689 721.546 Q80.2143 719.023 81.0939 717.287 Q81.9967 715.527 81.9967 713.838 Q81.9967 711.083 80.0522 709.347 Q78.1309 707.611 75.0291 707.611 Q72.83 707.611 70.3763 708.375 Q67.9458 709.138 65.168 710.689 L65.168 705.967 Q67.9921 704.833 70.4458 704.254 Q72.8995 703.676 74.9365 703.676 Q80.3068 703.676 83.5013 706.361 Q86.6957 709.046 86.6957 713.537 Q86.6957 715.666 85.8855 717.587 Q85.0985 719.486 82.992 722.078 Q82.4133 722.749 79.3115 725.967 Q76.2096 729.162 70.5615 734.925 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M79.7513 358.159 Q83.1078 358.876 84.9827 361.145 Q86.8809 363.413 86.8809 366.747 Q86.8809 371.862 83.3624 374.663 Q79.8439 377.464 73.3624 377.464 Q71.1865 377.464 68.8717 377.024 Q66.5801 376.608 64.1264 375.751 L64.1264 371.237 Q66.0708 372.372 68.3856 372.95 Q70.7004 373.529 73.2236 373.529 Q77.6217 373.529 79.9133 371.793 Q82.2281 370.057 82.2281 366.747 Q82.2281 363.691 80.0754 361.978 Q77.9457 360.242 74.1263 360.242 L70.0986 360.242 L70.0986 356.4 L74.3115 356.4 Q77.7606 356.4 79.5893 355.034 Q81.418 353.645 81.418 351.052 Q81.418 348.39 79.5198 346.978 Q77.6448 345.543 74.1263 345.543 Q72.205 345.543 70.006 345.96 Q67.8069 346.376 65.168 347.256 L65.168 343.089 Q67.8301 342.349 70.1449 341.978 Q72.4828 341.608 74.543 341.608 Q79.867 341.608 82.9689 344.038 Q86.0707 346.446 86.0707 350.566 Q86.0707 353.437 84.4272 355.427 Q82.7837 357.395 79.7513 358.159 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip753)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  138.74,1445.72 148.12,1445.58 157.5,1445.16 166.88,1444.47 176.26,1443.5 185.64,1442.25 195.02,1440.73 204.4,1438.93 213.78,1436.85 223.16,1434.49 \n",
+       "  232.54,1431.86 241.92,1428.95 251.3,1425.77 260.68,1422.3 270.06,1418.56 279.44,1414.55 288.82,1410.25 298.2,1405.68 307.58,1400.83 316.96,1395.71 \n",
+       "  326.34,1390.3 335.72,1384.62 345.1,1378.67 354.48,1372.43 363.86,1365.92 373.24,1359.13 382.62,1352.07 392,1344.73 401.38,1337.11 410.761,1329.21 \n",
+       "  420.141,1321.04 429.521,1312.59 438.901,1303.86 448.281,1294.86 457.661,1285.57 467.041,1276.02 476.421,1266.18 485.801,1256.07 495.181,1245.68 504.561,1235.01 \n",
+       "  513.941,1224.07 523.321,1212.85 532.701,1201.35 542.081,1189.57 551.461,1177.52 560.841,1165.19 570.221,1152.58 579.601,1139.7 588.981,1126.54 598.361,1113.1 \n",
+       "  607.741,1099.39 617.121,1085.4 626.501,1071.13 635.881,1056.58 645.261,1041.76 654.641,1026.66 664.021,1011.28 673.401,995.629 682.781,979.698 692.161,963.49 \n",
+       "  701.542,947.005 710.922,930.243 720.302,913.204 729.682,895.887 739.062,878.294 748.442,860.423 757.822,842.276 767.202,823.851 776.582,805.15 785.962,786.171 \n",
+       "  795.342,766.915 804.722,747.382 814.102,727.573 823.482,707.486 832.862,687.122 842.242,666.48 851.622,645.562 861.002,624.367 870.382,602.895 879.762,581.146 \n",
+       "  889.142,559.119 898.522,536.816 907.902,514.235 917.282,491.378 926.662,468.243 936.042,444.831 945.422,421.143 954.802,397.177 964.182,372.934 973.562,348.414 \n",
+       "  982.943,323.617 992.323,298.543 1001.7,273.192 1011.08,247.564 1020.46,221.658 1029.84,195.476 1039.22,169.017 1048.6,142.28 1057.98,115.267 1067.36,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"\n",
+       "M924.743 216.178 L1062.41 216.178 L1062.41 95.2176 L924.743 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  924.743,216.178 1062.41,216.178 1062.41,95.2176 924.743,95.2176 924.743,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  935.68,155.698 1001.3,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"M 0 0 M1037.4 154.854 Q1037.4 157.22 1036.18 159.585 Q1034.96 161.951 1032.97 163.778 Q1030.98 165.582 1028.26 166.753 Q1025.54 167.924 1022.71 168.017 L1020.88 175.161 Q1020.53 176.895 1020.34 177.082 Q1020.16 177.269 1019.88 177.269 Q1019.29 177.269 1019.29 176.731 Q1019.29 176.567 1020.34 172.515 L1021.47 168.017 Q1017.21 167.783 1014.72 165.324 Q1012.24 162.865 1012.24 159.328 Q1012.24 156.939 1013.46 154.573 Q1014.7 152.184 1016.69 150.38 Q1018.7 148.577 1021.42 147.429 Q1024.14 146.281 1026.93 146.188 L1029.71 135.109 Q1029.85 134.477 1029.97 134.313 Q1030.09 134.149 1030.44 134.149 Q1030.7 134.149 1030.84 134.266 Q1030.98 134.383 1030.98 134.5 L1031 134.617 L1030.86 135.296 L1028.17 146.188 Q1030.56 146.352 1032.41 147.195 Q1034.26 148.038 1035.31 149.303 Q1036.37 150.544 1036.88 151.95 Q1037.4 153.355 1037.4 154.854 M1026.64 147.242 Q1024.07 147.476 1021.89 148.741 Q1019.71 150.006 1018.31 151.879 Q1016.9 153.73 1016.13 155.955 Q1015.36 158.157 1015.36 160.335 Q1015.36 162.045 1015.92 163.356 Q1016.5 164.668 1017.46 165.418 Q1018.42 166.144 1019.48 166.542 Q1020.55 166.917 1021.7 166.963 L1026.64 147.242 M1034.26 153.847 Q1034.26 150.802 1032.5 149.092 Q1030.74 147.382 1027.89 147.242 L1022.94 166.963 Q1025.03 166.8 1026.86 165.933 Q1028.71 165.043 1030.04 163.731 Q1031.38 162.396 1032.34 160.757 Q1033.3 159.094 1033.77 157.337 Q1034.26 155.557 1034.26 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"\n",
+       "M1368.42 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1368.42 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip754\">\n",
+       "    <rect x=\"1368\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1396.27,1486.45 1396.27,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1582,1486.45 1582,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1767.72,1486.45 1767.72,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1953.45,1486.45 1953.45,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2139.17,1486.45 2139.17,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2324.9,1486.45 2324.9,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,1429.15 2352.76,1429.15 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,1203.59 2352.76,1203.59 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,978.026 2352.76,978.026 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,752.467 2352.76,752.467 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,526.908 2352.76,526.908 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,301.348 2352.76,301.348 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip754)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1368.42,75.789 2352.76,75.789 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,1486.45 1368.42,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.27,1486.45 1396.27,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1582,1486.45 1582,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1767.72,1486.45 1767.72,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1953.45,1486.45 1953.45,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2139.17,1486.45 2139.17,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2324.9,1486.45 2324.9,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,1429.15 1380.23,1429.15 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,1203.59 1380.23,1203.59 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,978.026 1380.23,978.026 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,752.467 1380.23,752.467 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,526.908 1380.23,526.908 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,301.348 1380.23,301.348 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1368.42,75.789 1380.23,75.789 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"M 0 0 M1396.27 1508.44 Q1392.66 1508.44 1390.83 1512 Q1389.03 1515.55 1389.03 1522.67 Q1389.03 1529.78 1390.83 1533.35 Q1392.66 1536.89 1396.27 1536.89 Q1399.91 1536.89 1401.71 1533.35 Q1403.54 1529.78 1403.54 1522.67 Q1403.54 1515.55 1401.71 1512 Q1399.91 1508.44 1396.27 1508.44 M1396.27 1504.73 Q1402.08 1504.73 1405.14 1509.34 Q1408.22 1513.92 1408.22 1522.67 Q1408.22 1531.4 1405.14 1536.01 Q1402.08 1540.59 1396.27 1540.59 Q1390.46 1540.59 1387.39 1536.01 Q1384.33 1531.4 1384.33 1522.67 Q1384.33 1513.92 1387.39 1509.34 Q1390.46 1504.73 1396.27 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1572.38 1535.98 L1580.02 1535.98 L1580.02 1509.62 L1571.71 1511.29 L1571.71 1507.03 L1579.97 1505.36 L1584.65 1505.36 L1584.65 1535.98 L1592.29 1535.98 L1592.29 1539.92 L1572.38 1539.92 L1572.38 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1762.38 1535.98 L1778.7 1535.98 L1778.7 1539.92 L1756.75 1539.92 L1756.75 1535.98 Q1759.41 1533.23 1764 1528.6 Q1768.6 1523.95 1769.78 1522.61 Q1772.03 1520.08 1772.91 1518.35 Q1773.81 1516.59 1773.81 1514.9 Q1773.81 1512.14 1771.87 1510.41 Q1769.95 1508.67 1766.84 1508.67 Q1764.64 1508.67 1762.19 1509.43 Q1759.76 1510.2 1756.98 1511.75 L1756.98 1507.03 Q1759.81 1505.89 1762.26 1505.31 Q1764.71 1504.73 1766.75 1504.73 Q1772.12 1504.73 1775.32 1507.42 Q1778.51 1510.11 1778.51 1514.6 Q1778.51 1516.73 1777.7 1518.65 Q1776.91 1520.54 1774.81 1523.14 Q1774.23 1523.81 1771.13 1527.03 Q1768.02 1530.22 1762.38 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1957.7 1521.29 Q1961.05 1522 1962.93 1524.27 Q1964.83 1526.54 1964.83 1529.87 Q1964.83 1534.99 1961.31 1537.79 Q1957.79 1540.59 1951.31 1540.59 Q1949.13 1540.59 1946.82 1540.15 Q1944.52 1539.73 1942.07 1538.88 L1942.07 1534.36 Q1944.02 1535.5 1946.33 1536.08 Q1948.64 1536.66 1951.17 1536.66 Q1955.57 1536.66 1957.86 1534.92 Q1960.17 1533.18 1960.17 1529.87 Q1960.17 1526.82 1958.02 1525.11 Q1955.89 1523.37 1952.07 1523.37 L1948.04 1523.37 L1948.04 1519.53 L1952.26 1519.53 Q1955.7 1519.53 1957.53 1518.16 Q1959.36 1516.77 1959.36 1514.18 Q1959.36 1511.52 1957.46 1510.11 Q1955.59 1508.67 1952.07 1508.67 Q1950.15 1508.67 1947.95 1509.09 Q1945.75 1509.5 1943.11 1510.38 L1943.11 1506.22 Q1945.77 1505.48 1948.09 1505.11 Q1950.43 1504.73 1952.49 1504.73 Q1957.81 1504.73 1960.91 1507.17 Q1964.01 1509.57 1964.01 1513.69 Q1964.01 1516.56 1962.37 1518.55 Q1960.73 1520.52 1957.7 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M2142.18 1509.43 L2130.38 1527.88 L2142.18 1527.88 L2142.18 1509.43 M2140.95 1505.36 L2146.83 1505.36 L2146.83 1527.88 L2151.77 1527.88 L2151.77 1531.77 L2146.83 1531.77 L2146.83 1539.92 L2142.18 1539.92 L2142.18 1531.77 L2126.58 1531.77 L2126.58 1527.26 L2140.95 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M2315.18 1505.36 L2333.53 1505.36 L2333.53 1509.3 L2319.46 1509.3 L2319.46 1517.77 Q2320.48 1517.42 2321.49 1517.26 Q2322.51 1517.07 2323.53 1517.07 Q2329.32 1517.07 2332.7 1520.24 Q2336.08 1523.42 2336.08 1528.83 Q2336.08 1534.41 2332.61 1537.51 Q2329.13 1540.59 2322.81 1540.59 Q2320.64 1540.59 2318.37 1540.22 Q2316.12 1539.85 2313.72 1539.11 L2313.72 1534.41 Q2315.8 1535.54 2318.02 1536.1 Q2320.24 1536.66 2322.72 1536.66 Q2326.73 1536.66 2329.06 1534.55 Q2331.4 1532.44 2331.4 1528.83 Q2331.4 1525.22 2329.06 1523.11 Q2326.73 1521.01 2322.72 1521.01 Q2320.85 1521.01 2318.97 1521.42 Q2317.12 1521.84 2315.18 1522.72 L2315.18 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1221.08 1427.79 Q1224.44 1428.51 1226.31 1430.78 Q1228.21 1433.05 1228.21 1436.38 Q1228.21 1441.49 1224.69 1444.3 Q1221.18 1447.1 1214.69 1447.1 Q1212.52 1447.1 1210.2 1446.66 Q1207.91 1446.24 1205.46 1445.38 L1205.46 1440.87 Q1207.4 1442 1209.72 1442.58 Q1212.03 1443.16 1214.55 1443.16 Q1218.95 1443.16 1221.24 1441.43 Q1223.56 1439.69 1223.56 1436.38 Q1223.56 1433.32 1221.41 1431.61 Q1219.28 1429.87 1215.46 1429.87 L1211.43 1429.87 L1211.43 1426.03 L1215.64 1426.03 Q1219.09 1426.03 1220.92 1424.67 Q1222.75 1423.28 1222.75 1420.68 Q1222.75 1418.02 1220.85 1416.61 Q1218.98 1415.18 1215.46 1415.18 Q1213.54 1415.18 1211.34 1415.59 Q1209.14 1416.01 1206.5 1416.89 L1206.5 1412.72 Q1209.16 1411.98 1211.48 1411.61 Q1213.81 1411.24 1215.87 1411.24 Q1221.2 1411.24 1224.3 1413.67 Q1227.4 1416.08 1227.4 1420.2 Q1227.4 1423.07 1225.76 1425.06 Q1224.12 1427.03 1221.08 1427.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1233.28 1440.55 L1238.17 1440.55 L1238.17 1446.43 L1233.28 1446.43 L1233.28 1440.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1244.05 1442.49 L1251.68 1442.49 L1251.68 1416.12 L1243.37 1417.79 L1243.37 1413.53 L1251.64 1411.87 L1256.31 1411.87 L1256.31 1442.49 L1263.95 1442.49 L1263.95 1446.43 L1244.05 1446.43 L1244.05 1442.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1281.87 1415.94 L1270.06 1434.39 L1281.87 1434.39 L1281.87 1415.94 M1280.64 1411.87 L1286.52 1411.87 L1286.52 1434.39 L1291.45 1434.39 L1291.45 1438.28 L1286.52 1438.28 L1286.52 1446.43 L1281.87 1446.43 L1281.87 1438.28 L1266.27 1438.28 L1266.27 1433.76 L1280.64 1411.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1297.33 1442.49 L1304.97 1442.49 L1304.97 1416.12 L1296.66 1417.79 L1296.66 1413.53 L1304.92 1411.87 L1309.6 1411.87 L1309.6 1442.49 L1317.24 1442.49 L1317.24 1446.43 L1297.33 1446.43 L1297.33 1442.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1332.89 1427.28 Q1329.74 1427.28 1327.89 1429.43 Q1326.06 1431.59 1326.06 1435.34 Q1326.06 1439.06 1327.89 1441.24 Q1329.74 1443.39 1332.89 1443.39 Q1336.04 1443.39 1337.86 1441.24 Q1339.72 1439.06 1339.72 1435.34 Q1339.72 1431.59 1337.86 1429.43 Q1336.04 1427.28 1332.89 1427.28 M1342.17 1412.63 L1342.17 1416.89 Q1340.41 1416.05 1338.61 1415.62 Q1336.82 1415.18 1335.06 1415.18 Q1330.43 1415.18 1327.98 1418.3 Q1325.55 1421.43 1325.2 1427.74 Q1326.57 1425.73 1328.63 1424.67 Q1330.69 1423.58 1333.17 1423.58 Q1338.37 1423.58 1341.38 1426.75 Q1344.42 1429.9 1344.42 1435.34 Q1344.42 1440.66 1341.27 1443.88 Q1338.12 1447.1 1332.89 1447.1 Q1326.89 1447.1 1323.72 1442.51 Q1320.55 1437.91 1320.55 1429.18 Q1320.55 1420.99 1324.44 1416.12 Q1328.33 1411.24 1334.88 1411.24 Q1336.64 1411.24 1338.42 1411.59 Q1340.23 1411.93 1342.17 1412.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1222.15 1202.23 Q1225.5 1202.95 1227.38 1205.22 Q1229.28 1207.49 1229.28 1210.82 Q1229.28 1215.94 1225.76 1218.74 Q1222.24 1221.54 1215.76 1221.54 Q1213.58 1221.54 1211.27 1221.1 Q1208.98 1220.68 1206.52 1219.82 L1206.52 1215.31 Q1208.47 1216.44 1210.78 1217.02 Q1213.1 1217.6 1215.62 1217.6 Q1220.02 1217.6 1222.31 1215.87 Q1224.62 1214.13 1224.62 1210.82 Q1224.62 1207.76 1222.47 1206.05 Q1220.34 1204.31 1216.52 1204.31 L1212.49 1204.31 L1212.49 1200.47 L1216.71 1200.47 Q1220.16 1200.47 1221.99 1199.11 Q1223.81 1197.72 1223.81 1195.13 Q1223.81 1192.46 1221.92 1191.05 Q1220.04 1189.62 1216.52 1189.62 Q1214.6 1189.62 1212.4 1190.03 Q1210.2 1190.45 1207.56 1191.33 L1207.56 1187.16 Q1210.23 1186.42 1212.54 1186.05 Q1214.88 1185.68 1216.94 1185.68 Q1222.26 1185.68 1225.37 1188.11 Q1228.47 1190.52 1228.47 1194.64 Q1228.47 1197.51 1226.82 1199.5 Q1225.18 1201.47 1222.15 1202.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1234.35 1214.99 L1239.23 1214.99 L1239.23 1220.87 L1234.35 1220.87 L1234.35 1214.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1245.11 1216.93 L1252.75 1216.93 L1252.75 1190.57 L1244.44 1192.23 L1244.44 1187.97 L1252.7 1186.31 L1257.38 1186.31 L1257.38 1216.93 L1265.02 1216.93 L1265.02 1220.87 L1245.11 1220.87 L1245.11 1216.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1282.93 1190.38 L1271.13 1208.83 L1282.93 1208.83 L1282.93 1190.38 M1281.71 1186.31 L1287.59 1186.31 L1287.59 1208.83 L1292.52 1208.83 L1292.52 1212.72 L1287.59 1212.72 L1287.59 1220.87 L1282.93 1220.87 L1282.93 1212.72 L1267.33 1212.72 L1267.33 1208.2 L1281.71 1186.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1298.4 1216.93 L1306.04 1216.93 L1306.04 1190.57 L1297.73 1192.23 L1297.73 1187.97 L1305.99 1186.31 L1310.67 1186.31 L1310.67 1216.93 L1318.3 1216.93 L1318.3 1220.87 L1298.4 1220.87 L1298.4 1216.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1322.19 1186.31 L1344.42 1186.31 L1344.42 1188.3 L1331.87 1220.87 L1326.98 1220.87 L1338.79 1190.24 L1322.19 1190.24 L1322.19 1186.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1221.34 976.672 Q1224.69 977.39 1226.57 979.658 Q1228.47 981.927 1228.47 985.26 Q1228.47 990.376 1224.95 993.177 Q1221.43 995.978 1214.95 995.978 Q1212.77 995.978 1210.46 995.538 Q1208.17 995.121 1205.71 994.265 L1205.71 989.751 Q1207.66 990.885 1209.97 991.464 Q1212.29 992.043 1214.81 992.043 Q1219.21 992.043 1221.5 990.306 Q1223.81 988.57 1223.81 985.26 Q1223.81 982.205 1221.66 980.492 Q1219.53 978.756 1215.71 978.756 L1211.68 978.756 L1211.68 974.913 L1215.9 974.913 Q1219.35 974.913 1221.18 973.547 Q1223 972.158 1223 969.566 Q1223 966.904 1221.11 965.492 Q1219.23 964.057 1215.71 964.057 Q1213.79 964.057 1211.59 964.473 Q1209.39 964.89 1206.75 965.77 L1206.75 961.603 Q1209.42 960.862 1211.73 960.492 Q1214.07 960.121 1216.13 960.121 Q1221.45 960.121 1224.55 962.552 Q1227.66 964.959 1227.66 969.08 Q1227.66 971.95 1226.01 973.941 Q1224.37 975.908 1221.34 976.672 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1233.54 989.427 L1238.42 989.427 L1238.42 995.306 L1233.54 995.306 L1233.54 989.427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1244.3 991.371 L1251.94 991.371 L1251.94 965.006 L1243.63 966.672 L1243.63 962.413 L1251.89 960.746 L1256.57 960.746 L1256.57 991.371 L1264.21 991.371 L1264.21 995.306 L1244.3 995.306 L1244.3 991.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1282.12 964.82 L1270.32 983.269 L1282.12 983.269 L1282.12 964.82 M1280.9 960.746 L1286.78 960.746 L1286.78 983.269 L1291.71 983.269 L1291.71 987.158 L1286.78 987.158 L1286.78 995.306 L1282.12 995.306 L1282.12 987.158 L1266.52 987.158 L1266.52 982.644 L1280.9 960.746 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1297.59 991.371 L1305.23 991.371 L1305.23 965.006 L1296.92 966.672 L1296.92 962.413 L1305.18 960.746 L1309.86 960.746 L1309.86 991.371 L1317.49 991.371 L1317.49 995.306 L1297.59 995.306 L1297.59 991.371 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1332.56 978.894 Q1329.23 978.894 1327.31 980.677 Q1325.41 982.459 1325.41 985.584 Q1325.41 988.709 1327.31 990.492 Q1329.23 992.274 1332.56 992.274 Q1335.9 992.274 1337.82 990.492 Q1339.74 988.686 1339.74 985.584 Q1339.74 982.459 1337.82 980.677 Q1335.92 978.894 1332.56 978.894 M1327.89 976.904 Q1324.88 976.163 1323.19 974.103 Q1321.52 972.043 1321.52 969.08 Q1321.52 964.936 1324.46 962.529 Q1327.42 960.121 1332.56 960.121 Q1337.73 960.121 1340.67 962.529 Q1343.61 964.936 1343.61 969.08 Q1343.61 972.043 1341.92 974.103 Q1340.25 976.163 1337.26 976.904 Q1340.64 977.691 1342.52 979.982 Q1344.42 982.274 1344.42 985.584 Q1344.42 990.607 1341.34 993.293 Q1338.28 995.978 1332.56 995.978 Q1326.85 995.978 1323.77 993.293 Q1320.71 990.607 1320.71 985.584 Q1320.71 982.274 1322.61 979.982 Q1324.51 977.691 1327.89 976.904 M1326.17 969.52 Q1326.17 972.205 1327.84 973.709 Q1329.53 975.214 1332.56 975.214 Q1335.57 975.214 1337.26 973.709 Q1338.98 972.205 1338.98 969.52 Q1338.98 966.834 1337.26 965.33 Q1335.57 963.825 1332.56 963.825 Q1329.53 963.825 1327.84 965.33 Q1326.17 966.834 1326.17 969.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1221.43 751.113 Q1224.79 751.831 1226.66 754.099 Q1228.56 756.368 1228.56 759.701 Q1228.56 764.817 1225.04 767.617 Q1221.52 770.418 1215.04 770.418 Q1212.87 770.418 1210.55 769.979 Q1208.26 769.562 1205.8 768.705 L1205.8 764.192 Q1207.75 765.326 1210.06 765.905 Q1212.38 766.483 1214.9 766.483 Q1219.3 766.483 1221.59 764.747 Q1223.91 763.011 1223.91 759.701 Q1223.91 756.645 1221.75 754.932 Q1219.62 753.196 1215.8 753.196 L1211.78 753.196 L1211.78 749.354 L1215.99 749.354 Q1219.44 749.354 1221.27 747.988 Q1223.1 746.599 1223.1 744.006 Q1223.1 741.344 1221.2 739.932 Q1219.32 738.497 1215.8 738.497 Q1213.88 738.497 1211.68 738.914 Q1209.49 739.331 1206.85 740.21 L1206.85 736.044 Q1209.51 735.303 1211.82 734.932 Q1214.16 734.562 1216.22 734.562 Q1221.55 734.562 1224.65 736.993 Q1227.75 739.4 1227.75 743.52 Q1227.75 746.391 1226.11 748.381 Q1224.46 750.349 1221.43 751.113 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1233.63 763.867 L1238.51 763.867 L1238.51 769.747 L1233.63 769.747 L1233.63 763.867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1244.39 765.812 L1252.03 765.812 L1252.03 739.446 L1243.72 741.113 L1243.72 736.854 L1251.99 735.187 L1256.66 735.187 L1256.66 765.812 L1264.3 765.812 L1264.3 769.747 L1244.39 769.747 L1244.39 765.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1282.22 739.261 L1270.41 757.71 L1282.22 757.71 L1282.22 739.261 M1280.99 735.187 L1286.87 735.187 L1286.87 757.71 L1291.8 757.71 L1291.8 761.599 L1286.87 761.599 L1286.87 769.747 L1282.22 769.747 L1282.22 761.599 L1266.61 761.599 L1266.61 757.085 L1280.99 735.187 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1297.68 765.812 L1305.32 765.812 L1305.32 739.446 L1297.01 741.113 L1297.01 736.854 L1305.27 735.187 L1309.95 735.187 L1309.95 765.812 L1317.59 765.812 L1317.59 769.747 L1297.68 769.747 L1297.68 765.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1322.8 769.029 L1322.8 764.77 Q1324.55 765.604 1326.36 766.043 Q1328.17 766.483 1329.9 766.483 Q1334.53 766.483 1336.96 763.381 Q1339.42 760.256 1339.76 753.914 Q1338.42 755.905 1336.36 756.969 Q1334.3 758.034 1331.8 758.034 Q1326.61 758.034 1323.58 754.909 Q1320.57 751.761 1320.57 746.321 Q1320.57 740.997 1323.72 737.78 Q1326.87 734.562 1332.1 734.562 Q1338.1 734.562 1341.24 739.169 Q1344.42 743.752 1344.42 752.502 Q1344.42 760.673 1340.53 765.557 Q1336.66 770.418 1330.11 770.418 Q1328.35 770.418 1326.55 770.071 Q1324.74 769.724 1322.8 769.029 M1332.1 754.377 Q1335.25 754.377 1337.08 752.224 Q1338.93 750.071 1338.93 746.321 Q1338.93 742.594 1337.08 740.442 Q1335.25 738.266 1332.1 738.266 Q1328.95 738.266 1327.1 740.442 Q1325.27 742.594 1325.27 746.321 Q1325.27 750.071 1327.1 752.224 Q1328.95 754.377 1332.1 754.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1221.62 525.554 Q1224.97 526.271 1226.85 528.54 Q1228.74 530.808 1228.74 534.141 Q1228.74 539.257 1225.23 542.058 Q1221.71 544.859 1215.23 544.859 Q1213.05 544.859 1210.74 544.419 Q1208.44 544.003 1205.99 543.146 L1205.99 538.632 Q1207.93 539.766 1210.25 540.345 Q1212.56 540.924 1215.09 540.924 Q1219.49 540.924 1221.78 539.188 Q1224.09 537.452 1224.09 534.141 Q1224.09 531.086 1221.94 529.373 Q1219.81 527.637 1215.99 527.637 L1211.96 527.637 L1211.96 523.794 L1216.18 523.794 Q1219.62 523.794 1221.45 522.429 Q1223.28 521.04 1223.28 518.447 Q1223.28 515.785 1221.38 514.373 Q1219.51 512.938 1215.99 512.938 Q1214.07 512.938 1211.87 513.355 Q1209.67 513.771 1207.03 514.651 L1207.03 510.484 Q1209.69 509.743 1212.01 509.373 Q1214.35 509.003 1216.41 509.003 Q1221.73 509.003 1224.83 511.433 Q1227.93 513.841 1227.93 517.961 Q1227.93 520.831 1226.29 522.822 Q1224.65 524.79 1221.62 525.554 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1233.81 538.308 L1238.7 538.308 L1238.7 544.188 L1233.81 544.188 L1233.81 538.308 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1244.58 540.253 L1252.22 540.253 L1252.22 513.887 L1243.91 515.554 L1243.91 511.294 L1252.17 509.628 L1256.85 509.628 L1256.85 540.253 L1264.49 540.253 L1264.49 544.188 L1244.58 544.188 L1244.58 540.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1282.4 513.702 L1270.6 532.151 L1282.4 532.151 L1282.4 513.702 M1281.17 509.628 L1287.05 509.628 L1287.05 532.151 L1291.99 532.151 L1291.99 536.04 L1287.05 536.04 L1287.05 544.188 L1282.4 544.188 L1282.4 536.04 L1266.8 536.04 L1266.8 531.526 L1281.17 509.628 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1301.08 540.253 L1317.4 540.253 L1317.4 544.188 L1295.46 544.188 L1295.46 540.253 Q1298.12 537.498 1302.7 532.868 Q1307.31 528.216 1308.49 526.873 Q1310.73 524.35 1311.61 522.614 Q1312.52 520.854 1312.52 519.165 Q1312.52 516.41 1310.57 514.674 Q1308.65 512.938 1305.55 512.938 Q1303.35 512.938 1300.9 513.702 Q1298.47 514.466 1295.69 516.017 L1295.69 511.294 Q1298.51 510.16 1300.97 509.581 Q1303.42 509.003 1305.46 509.003 Q1310.83 509.003 1314.02 511.688 Q1317.22 514.373 1317.22 518.864 Q1317.22 520.993 1316.41 522.915 Q1315.62 524.813 1313.51 527.405 Q1312.93 528.077 1309.83 531.294 Q1306.73 534.489 1301.08 540.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1332.47 512.706 Q1328.86 512.706 1327.03 516.271 Q1325.23 519.813 1325.23 526.942 Q1325.23 534.049 1327.03 537.614 Q1328.86 541.155 1332.47 541.155 Q1336.11 541.155 1337.91 537.614 Q1339.74 534.049 1339.74 526.942 Q1339.74 519.813 1337.91 516.271 Q1336.11 512.706 1332.47 512.706 M1332.47 509.003 Q1338.28 509.003 1341.34 513.609 Q1344.42 518.192 1344.42 526.942 Q1344.42 535.669 1341.34 540.276 Q1338.28 544.859 1332.47 544.859 Q1326.66 544.859 1323.58 540.276 Q1320.53 535.669 1320.53 526.942 Q1320.53 518.192 1323.58 513.609 Q1326.66 509.003 1332.47 509.003 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1222.84 299.994 Q1226.2 300.712 1228.07 302.98 Q1229.97 305.249 1229.97 308.582 Q1229.97 313.698 1226.45 316.499 Q1222.93 319.3 1216.45 319.3 Q1214.28 319.3 1211.96 318.86 Q1209.67 318.443 1207.22 317.587 L1207.22 313.073 Q1209.16 314.207 1211.48 314.786 Q1213.79 315.364 1216.31 315.364 Q1220.71 315.364 1223 313.628 Q1225.32 311.892 1225.32 308.582 Q1225.32 305.527 1223.17 303.814 Q1221.04 302.077 1217.22 302.077 L1213.19 302.077 L1213.19 298.235 L1217.4 298.235 Q1220.85 298.235 1222.68 296.869 Q1224.51 295.48 1224.51 292.888 Q1224.51 290.226 1222.61 288.814 Q1220.74 287.379 1217.22 287.379 Q1215.3 287.379 1213.1 287.795 Q1210.9 288.212 1208.26 289.091 L1208.26 284.925 Q1210.92 284.184 1213.24 283.814 Q1215.57 283.443 1217.63 283.443 Q1222.96 283.443 1226.06 285.874 Q1229.16 288.281 1229.16 292.402 Q1229.16 295.272 1227.52 297.263 Q1225.87 299.23 1222.84 299.994 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1235.04 312.749 L1239.93 312.749 L1239.93 318.628 L1235.04 318.628 L1235.04 312.749 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1245.8 314.693 L1253.44 314.693 L1253.44 288.328 L1245.13 289.994 L1245.13 285.735 L1253.4 284.068 L1258.07 284.068 L1258.07 314.693 L1265.71 314.693 L1265.71 318.628 L1245.8 318.628 L1245.8 314.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1283.63 288.142 L1271.82 306.591 L1283.63 306.591 L1283.63 288.142 M1282.4 284.068 L1288.28 284.068 L1288.28 306.591 L1293.21 306.591 L1293.21 310.48 L1288.28 310.48 L1288.28 318.628 L1283.63 318.628 L1283.63 310.48 L1268.03 310.48 L1268.03 305.966 L1282.4 284.068 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1302.31 314.693 L1318.63 314.693 L1318.63 318.628 L1296.68 318.628 L1296.68 314.693 Q1299.35 311.939 1303.93 307.309 Q1308.54 302.656 1309.72 301.314 Q1311.96 298.79 1312.84 297.054 Q1313.74 295.295 1313.74 293.605 Q1313.74 290.851 1311.8 289.115 Q1309.88 287.379 1306.78 287.379 Q1304.58 287.379 1302.12 288.142 Q1299.69 288.906 1296.92 290.457 L1296.92 285.735 Q1299.74 284.601 1302.19 284.022 Q1304.65 283.443 1306.68 283.443 Q1312.05 283.443 1315.25 286.129 Q1318.44 288.814 1318.44 293.304 Q1318.44 295.434 1317.63 297.355 Q1316.85 299.253 1314.74 301.846 Q1314.16 302.517 1311.06 305.735 Q1307.96 308.929 1302.31 314.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1324.51 314.693 L1332.15 314.693 L1332.15 288.328 L1323.84 289.994 L1323.84 285.735 L1332.1 284.068 L1336.78 284.068 L1336.78 314.693 L1344.42 314.693 L1344.42 318.628 L1324.51 318.628 L1324.51 314.693 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1223.21 74.4348 Q1226.57 75.1524 1228.44 77.4209 Q1230.34 79.6894 1230.34 83.0227 Q1230.34 88.1384 1226.82 90.9394 Q1223.3 93.7403 1216.82 93.7403 Q1214.65 93.7403 1212.33 93.3004 Q1210.04 92.8838 1207.59 92.0273 L1207.59 87.5134 Q1209.53 88.6477 1211.85 89.2264 Q1214.16 89.8051 1216.68 89.8051 Q1221.08 89.8051 1223.37 88.069 Q1225.69 86.3329 1225.69 83.0227 Q1225.69 79.9672 1223.54 78.2542 Q1221.41 76.5181 1217.59 76.5181 L1213.56 76.5181 L1213.56 72.6756 L1217.77 72.6756 Q1221.22 72.6756 1223.05 71.3098 Q1224.88 69.9209 1224.88 67.3284 Q1224.88 64.6663 1222.98 63.2543 Q1221.11 61.8191 1217.59 61.8191 Q1215.67 61.8191 1213.47 62.2358 Q1211.27 62.6525 1208.63 63.5321 L1208.63 59.3654 Q1211.29 58.6247 1213.61 58.2543 Q1215.94 57.884 1218 57.884 Q1223.33 57.884 1226.43 60.3145 Q1229.53 62.7219 1229.53 66.8423 Q1229.53 69.7126 1227.89 71.7033 Q1226.24 73.6709 1223.21 74.4348 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1235.41 87.1894 L1240.3 87.1894 L1240.3 93.069 L1235.41 93.069 L1235.41 87.1894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1246.18 89.1338 L1253.81 89.1338 L1253.81 62.7682 L1245.5 64.4349 L1245.5 60.1756 L1253.77 58.509 L1258.44 58.509 L1258.44 89.1338 L1266.08 89.1338 L1266.08 93.069 L1246.18 93.069 L1246.18 89.1338 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1284 62.583 L1272.19 81.032 L1284 81.032 L1284 62.583 M1282.77 58.509 L1288.65 58.509 L1288.65 81.032 L1293.58 81.032 L1293.58 84.9209 L1288.65 84.9209 L1288.65 93.069 L1284 93.069 L1284 84.9209 L1268.4 84.9209 L1268.4 80.407 L1282.77 58.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1302.68 89.1338 L1319 89.1338 L1319 93.069 L1297.05 93.069 L1297.05 89.1338 Q1299.72 86.3792 1304.3 81.7496 Q1308.91 77.0968 1310.09 75.7542 Q1312.33 73.2311 1313.21 71.495 Q1314.11 69.7358 1314.11 68.046 Q1314.11 65.2913 1312.17 63.5552 Q1310.25 61.8191 1307.15 61.8191 Q1304.95 61.8191 1302.49 62.583 Q1300.06 63.3469 1297.29 64.8978 L1297.29 60.1756 Q1300.11 59.0414 1302.56 58.4627 Q1305.02 57.884 1307.05 57.884 Q1312.42 57.884 1315.62 60.5691 Q1318.81 63.2543 1318.81 67.745 Q1318.81 69.8746 1318 71.7959 Q1317.22 73.6941 1315.11 76.2867 Q1314.53 76.9579 1311.43 80.1755 Q1308.33 83.3699 1302.68 89.1338 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip750)\" d=\"M 0 0 M1328.1 89.1338 L1344.42 89.1338 L1344.42 93.069 L1322.47 93.069 L1322.47 89.1338 Q1325.13 86.3792 1329.72 81.7496 Q1334.32 77.0968 1335.5 75.7542 Q1337.75 73.2311 1338.63 71.495 Q1339.53 69.7358 1339.53 68.046 Q1339.53 65.2913 1337.59 63.5552 Q1335.67 61.8191 1332.56 61.8191 Q1330.36 61.8191 1327.91 62.583 Q1325.48 63.3469 1322.7 64.8978 L1322.7 60.1756 Q1325.53 59.0414 1327.98 58.4627 Q1330.43 57.884 1332.47 57.884 Q1337.84 57.884 1341.04 60.5691 Q1344.23 63.2543 1344.23 67.745 Q1344.23 69.8746 1343.42 71.7959 Q1342.63 73.6941 1340.53 76.2867 Q1339.95 76.9579 1336.85 80.1755 Q1333.74 83.3699 1328.1 89.1338 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip754)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.27,1445.72 1405.65,1320.34 1415.03,990.666 1424.41,578.867 1433.79,237.537 1443.17,93.1579 1452.55,199.225 1461.93,516.426 1471.31,927.215 1480.69,1279.37 \n",
+       "  1490.07,1442.41 1499.45,1355.91 1508.83,1051.93 1518.21,643.088 1527.59,280.841 1536.97,99.3807 1546.35,165.91 1555.73,455.761 1565.11,861.547 1574.49,1232.95 \n",
+       "  1583.87,1432.39 1593.25,1386.01 1602.63,1110.98 1612.01,709.14 1621.39,329.277 1630.77,112.017 1640.15,137.768 1649.53,396.959 1658.91,793.607 1668.29,1180.87 \n",
+       "  1677.67,1415.38 1687.06,1410.36 1696.44,1167.65 1705.82,777.061 1715.2,383.08 1724.58,131.44 1733.96,115.176 1743.34,340.256 1752.72,723.387 1762.1,1122.85 \n",
+       "  1771.48,1390.92 1780.86,1428.47 1790.24,1221.62 1799.62,846.816 1809,442.559 1818.38,158.196 1827.76,98.7386 1837.14,286.087 1846.52,650.975 1855.9,1058.59 \n",
+       "  1865.28,1358.37 1874.66,1439.61 1884.04,1272.32 1893.42,918.237 1902.8,508.016 1912.18,192.983 1921.56,89.3031 1930.94,235.142 1940.32,576.634 1949.7,987.785 \n",
+       "  1959.08,1316.96 1968.46,1442.8 1977.84,1318.91 1987.22,990.94 1996.6,579.695 2005.98,236.613 2015.36,87.9763 2024.74,188.423 2034.12,500.88 2043.5,910.26 \n",
+       "  2052.88,1265.86 2062.26,1436.81 2071.64,1360.22 2081.02,1064.25 2090.4,657.694 2099.78,289.961 2109.16,96.121 2118.54,147.295 2127.92,424.574 2137.3,826.023 \n",
+       "  2146.68,1204.16 2156.06,1420.14 2165.44,1394.66 2174.82,1137.08 2184.2,741.853 2193.58,353.884 2202.96,115.334 2212.34,113.536 2221.72,349.022 2231.1,735.403 \n",
+       "  2240.48,1131.07 2249.86,1391.09 2259.24,1420.25 2268.62,1207.86 2278,831.623 2287.38,429.098 2296.76,147.392 2306.14,89.3648 2315.52,276.085 2324.9,639.199 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"\n",
+       "M2179.66 216.178 L2319.94 216.178 L2319.94 95.2176 L2179.66 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2179.66,216.178 2319.94,216.178 2319.94,95.2176 2179.66,95.2176 2179.66,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip750)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2190.59,155.698 2256.22,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip750)\" d=\"M 0 0 M2296.22 149.584 Q2296.22 150.989 2295.68 153.449 Q2295.17 155.908 2294.75 157.079 Q2293.57 160.194 2291.23 162.818 Q2289.94 164.27 2288.54 165.324 Q2287.16 166.354 2286.13 166.87 Q2285.1 167.362 2283.88 167.619 Q2282.66 167.9 2282.1 167.924 Q2281.53 167.971 2280.74 167.971 L2278.91 175.114 Q2278.54 176.965 2278.35 177.082 Q2278.3 177.176 2278.19 177.223 Q2278.09 177.269 2278 177.269 L2277.9 177.269 Q2277.65 177.269 2277.51 177.152 Q2277.37 177.035 2277.34 176.895 L2277.34 176.777 Q2277.34 176.45 2278.44 172.234 Q2279.01 170.079 2279.5 167.854 Q2275.75 167.619 2273.43 165.956 Q2271.14 164.293 2271.14 161.061 Q2271.14 159.07 2273.45 152.957 Q2274.56 150.029 2274.56 148.811 Q2274.56 148.272 2274.44 147.944 Q2274.32 147.593 2274.09 147.476 Q2273.85 147.335 2273.71 147.312 Q2273.59 147.289 2273.36 147.289 Q2271.98 147.289 2270.69 148.671 Q2269.4 150.052 2268.51 153.238 Q2268.32 153.823 2268.21 153.964 Q2268.09 154.105 2267.74 154.105 Q2267.15 154.081 2267.15 153.613 Q2267.15 153.425 2267.36 152.699 Q2267.58 151.95 2268.07 150.849 Q2268.58 149.725 2269.29 148.717 Q2269.99 147.687 2271.09 146.961 Q2272.21 146.235 2273.5 146.235 Q2275.26 146.235 2276.34 147.382 Q2277.44 148.507 2277.44 150.17 Q2277.44 150.498 2277.37 150.872 Q2277.3 151.247 2277.23 151.458 Q2277.18 151.669 2277.04 152.067 Q2276.92 152.442 2276.9 152.512 Q2275.7 155.604 2275.09 157.618 Q2274.48 159.609 2274.39 160.194 Q2274.32 160.757 2274.32 161.436 Q2274.32 166.167 2279.78 166.8 L2287.74 135.109 Q2287.88 134.453 2288 134.313 Q2288.12 134.149 2288.47 134.149 Q2289.03 134.149 2289.03 134.664 Q2289.03 134.828 2288.89 135.39 L2280.97 166.893 Q2281.72 166.893 2282.19 166.87 Q2282.66 166.846 2283.64 166.636 Q2284.65 166.401 2285.49 165.98 Q2286.36 165.558 2287.58 164.715 Q2288.8 163.848 2289.99 162.63 Q2291.49 161.108 2292.82 158.555 Q2294.16 156.002 2294.16 153.894 Q2294.16 151.528 2292.45 149.818 Q2292.19 149.584 2292.05 149.443 Q2291.93 149.303 2291.82 149.069 Q2291.72 148.835 2291.72 148.53 Q2291.72 147.734 2292.47 146.984 Q2293.22 146.235 2294.11 146.235 Q2294.91 146.235 2295.56 147.008 Q2296.22 147.78 2296.22 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip790\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip791\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip792\">\n",
+       "    <rect x=\"1368\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"\n",
+       "M112.177 1486.45 L1095.87 1486.45 L1095.87 47.2441 L112.177 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip793\">\n",
+       "    <rect x=\"112\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  140.018,1486.45 140.018,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  325.62,1486.45 325.62,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  511.222,1486.45 511.222,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  696.825,1486.45 696.825,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  882.427,1486.45 882.427,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1068.03,1486.45 1068.03,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1445.72 1095.87,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1174.17 1095.87,1174.17 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,902.614 1095.87,902.614 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,631.064 1095.87,631.064 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,359.513 1095.87,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip793)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,87.9623 1095.87,87.9623 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 1095.87,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 112.177,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  140.018,1486.45 140.018,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  325.62,1486.45 325.62,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  511.222,1486.45 511.222,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  696.825,1486.45 696.825,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  882.427,1486.45 882.427,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1068.03,1486.45 1068.03,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1445.72 123.981,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1174.17 123.981,1174.17 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,902.614 123.981,902.614 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,631.064 123.981,631.064 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,359.513 123.981,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,87.9623 123.981,87.9623 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"M 0 0 M140.018 1508.44 Q136.406 1508.44 134.578 1512 Q132.772 1515.55 132.772 1522.67 Q132.772 1529.78 134.578 1533.35 Q136.406 1536.89 140.018 1536.89 Q143.652 1536.89 145.457 1533.35 Q147.286 1529.78 147.286 1522.67 Q147.286 1515.55 145.457 1512 Q143.652 1508.44 140.018 1508.44 M140.018 1504.73 Q145.828 1504.73 148.883 1509.34 Q151.962 1513.92 151.962 1522.67 Q151.962 1531.4 148.883 1536.01 Q145.828 1540.59 140.018 1540.59 Q134.207 1540.59 131.129 1536.01 Q128.073 1531.4 128.073 1522.67 Q128.073 1513.92 131.129 1509.34 Q134.207 1504.73 140.018 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M316.002 1535.98 L323.641 1535.98 L323.641 1509.62 L315.331 1511.29 L315.331 1507.03 L323.594 1505.36 L328.27 1505.36 L328.27 1535.98 L335.909 1535.98 L335.909 1539.92 L316.002 1539.92 L316.002 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M505.875 1535.98 L522.194 1535.98 L522.194 1539.92 L500.25 1539.92 L500.25 1535.98 Q502.912 1533.23 507.495 1528.6 Q512.102 1523.95 513.282 1522.61 Q515.528 1520.08 516.407 1518.35 Q517.31 1516.59 517.31 1514.9 Q517.31 1512.14 515.366 1510.41 Q513.444 1508.67 510.343 1508.67 Q508.144 1508.67 505.69 1509.43 Q503.259 1510.2 500.482 1511.75 L500.482 1507.03 Q503.306 1505.89 505.759 1505.31 Q508.213 1504.73 510.25 1504.73 Q515.62 1504.73 518.815 1507.42 Q522.009 1510.11 522.009 1514.6 Q522.009 1516.73 521.199 1518.65 Q520.412 1520.54 518.306 1523.14 Q517.727 1523.81 514.625 1527.03 Q511.523 1530.22 505.875 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M701.072 1521.29 Q704.429 1522 706.304 1524.27 Q708.202 1526.54 708.202 1529.87 Q708.202 1534.99 704.683 1537.79 Q701.165 1540.59 694.683 1540.59 Q692.507 1540.59 690.193 1540.15 Q687.901 1539.73 685.447 1538.88 L685.447 1534.36 Q687.392 1535.5 689.707 1536.08 Q692.021 1536.66 694.545 1536.66 Q698.943 1536.66 701.234 1534.92 Q703.549 1533.18 703.549 1529.87 Q703.549 1526.82 701.396 1525.11 Q699.267 1523.37 695.447 1523.37 L691.42 1523.37 L691.42 1519.53 L695.632 1519.53 Q699.082 1519.53 700.91 1518.16 Q702.739 1516.77 702.739 1514.18 Q702.739 1511.52 700.841 1510.11 Q698.966 1508.67 695.447 1508.67 Q693.526 1508.67 691.327 1509.09 Q689.128 1509.5 686.489 1510.38 L686.489 1506.22 Q689.151 1505.48 691.466 1505.11 Q693.804 1504.73 695.864 1504.73 Q701.188 1504.73 704.29 1507.17 Q707.392 1509.57 707.392 1513.69 Q707.392 1516.56 705.748 1518.55 Q704.105 1520.52 701.072 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M885.436 1509.43 L873.631 1527.88 L885.436 1527.88 L885.436 1509.43 M884.209 1505.36 L890.089 1505.36 L890.089 1527.88 L895.019 1527.88 L895.019 1531.77 L890.089 1531.77 L890.089 1539.92 L885.436 1539.92 L885.436 1531.77 L869.834 1531.77 L869.834 1527.26 L884.209 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1058.31 1505.36 L1076.66 1505.36 L1076.66 1509.3 L1062.59 1509.3 L1062.59 1517.77 Q1063.61 1517.42 1064.63 1517.26 Q1065.65 1517.07 1066.66 1517.07 Q1072.45 1517.07 1075.83 1520.24 Q1079.21 1523.42 1079.21 1528.83 Q1079.21 1534.41 1075.74 1537.51 Q1072.27 1540.59 1065.95 1540.59 Q1063.77 1540.59 1061.5 1540.22 Q1059.26 1539.85 1056.85 1539.11 L1056.85 1534.41 Q1058.93 1535.54 1061.15 1536.1 Q1063.38 1536.66 1065.85 1536.66 Q1069.86 1536.66 1072.2 1534.55 Q1074.53 1532.44 1074.53 1528.83 Q1074.53 1525.22 1072.2 1523.11 Q1069.86 1521.01 1065.85 1521.01 Q1063.98 1521.01 1062.1 1521.42 Q1060.25 1521.84 1058.31 1522.72 L1058.31 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M76.2328 1431.51 Q72.6217 1431.51 70.793 1435.08 Q68.9875 1438.62 68.9875 1445.75 Q68.9875 1452.86 70.793 1456.42 Q72.6217 1459.96 76.2328 1459.96 Q79.867 1459.96 81.6726 1456.42 Q83.5013 1452.86 83.5013 1445.75 Q83.5013 1438.62 81.6726 1435.08 Q79.867 1431.51 76.2328 1431.51 M76.2328 1427.81 Q82.0429 1427.81 85.0985 1432.42 Q88.1772 1437 88.1772 1445.75 Q88.1772 1454.48 85.0985 1459.08 Q82.0429 1463.67 76.2328 1463.67 Q70.4226 1463.67 67.344 1459.08 Q64.2884 1454.48 64.2884 1445.75 Q64.2884 1437 67.344 1432.42 Q70.4226 1427.81 76.2328 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M68.2699 1187.51 L75.9087 1187.51 L75.9087 1161.14 L67.5986 1162.81 L67.5986 1158.55 L75.8624 1156.89 L80.5383 1156.89 L80.5383 1187.51 L88.1772 1187.51 L88.1772 1191.45 L68.2699 1191.45 L68.2699 1187.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M71.8578 915.959 L88.1772 915.959 L88.1772 919.894 L66.2328 919.894 L66.2328 915.959 Q68.8949 913.205 73.4782 908.575 Q78.0846 903.922 79.2652 902.58 Q81.5105 900.056 82.3902 898.32 Q83.2929 896.561 83.2929 894.871 Q83.2929 892.117 81.3485 890.381 Q79.4272 888.644 76.3254 888.644 Q74.1263 888.644 71.6726 889.408 Q69.2421 890.172 66.4643 891.723 L66.4643 887.001 Q69.2884 885.867 71.7421 885.288 Q74.1958 884.709 76.2328 884.709 Q81.6031 884.709 84.7976 887.394 Q87.992 890.08 87.992 894.57 Q87.992 896.7 87.1818 898.621 Q86.3948 900.519 84.2883 903.112 Q83.7096 903.783 80.6078 907.001 Q77.5059 910.195 71.8578 915.959 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M81.0476 629.709 Q84.404 630.427 86.279 632.696 Q88.1772 634.964 88.1772 638.297 Q88.1772 643.413 84.6587 646.214 Q81.1402 649.015 74.6587 649.015 Q72.4828 649.015 70.168 648.575 Q67.8764 648.158 65.4227 647.302 L65.4227 642.788 Q67.3671 643.922 69.6819 644.501 Q71.9967 645.08 74.5198 645.08 Q78.918 645.08 81.2096 643.344 Q83.5244 641.608 83.5244 638.297 Q83.5244 635.242 81.3717 633.529 Q79.242 631.793 75.4226 631.793 L71.3949 631.793 L71.3949 627.95 L75.6078 627.95 Q79.0569 627.95 80.8855 626.584 Q82.7142 625.196 82.7142 622.603 Q82.7142 619.941 80.8161 618.529 Q78.9411 617.094 75.4226 617.094 Q73.5013 617.094 71.3023 617.51 Q69.1032 617.927 66.4643 618.807 L66.4643 614.64 Q69.1264 613.899 71.4412 613.529 Q73.7791 613.159 75.8393 613.159 Q81.1633 613.159 84.2652 615.589 Q87.367 617.997 87.367 622.117 Q87.367 624.987 85.7235 626.978 Q84.08 628.946 81.0476 629.709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M78.5939 346.307 L66.7884 364.756 L78.5939 364.756 L78.5939 346.307 M77.367 342.233 L83.2466 342.233 L83.2466 364.756 L88.1772 364.756 L88.1772 368.645 L83.2466 368.645 L83.2466 376.793 L78.5939 376.793 L78.5939 368.645 L62.9921 368.645 L62.9921 364.131 L77.367 342.233 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M67.2745 70.6823 L85.6309 70.6823 L85.6309 74.6174 L71.5569 74.6174 L71.5569 83.0896 Q72.5754 82.7424 73.5939 82.5803 Q74.6124 82.3952 75.6309 82.3952 Q81.418 82.3952 84.7976 85.5664 Q88.1772 88.7377 88.1772 94.1544 Q88.1772 99.733 84.705 102.835 Q81.2328 105.914 74.9134 105.914 Q72.7374 105.914 70.4689 105.543 Q68.2236 105.173 65.8162 104.432 L65.8162 99.733 Q67.8995 100.867 70.1217 101.423 Q72.3439 101.978 74.8208 101.978 Q78.8254 101.978 81.1633 99.8719 Q83.5013 97.7654 83.5013 94.1544 Q83.5013 90.5433 81.1633 88.4368 Q78.8254 86.3303 74.8208 86.3303 Q72.9458 86.3303 71.0708 86.747 Q69.2189 87.1636 67.2745 88.0433 L67.2745 70.6823 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip793)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  140.018,1445.72 149.391,1445.58 158.765,1445.16 168.139,1444.47 177.513,1443.5 186.887,1442.25 196.261,1440.73 205.635,1438.93 215.008,1436.85 224.382,1434.49 \n",
+       "  233.756,1431.86 243.13,1428.95 252.504,1425.77 261.878,1422.3 271.252,1418.56 280.625,1414.55 289.999,1410.25 299.373,1405.68 308.747,1400.83 318.121,1395.71 \n",
+       "  327.495,1390.3 336.869,1384.62 346.242,1378.67 355.616,1372.43 364.99,1365.92 374.364,1359.13 383.738,1352.07 393.112,1344.73 402.485,1337.11 411.859,1329.21 \n",
+       "  421.233,1321.04 430.607,1312.59 439.981,1303.86 449.355,1294.86 458.729,1285.57 468.102,1276.02 477.476,1266.18 486.85,1256.07 496.224,1245.68 505.598,1235.01 \n",
+       "  514.972,1224.07 524.346,1212.85 533.719,1201.35 543.093,1189.57 552.467,1177.52 561.841,1165.19 571.215,1152.58 580.589,1139.7 589.963,1126.54 599.336,1113.1 \n",
+       "  608.71,1099.39 618.084,1085.4 627.458,1071.13 636.832,1056.58 646.206,1041.76 655.58,1026.66 664.953,1011.28 674.327,995.629 683.701,979.698 693.075,963.49 \n",
+       "  702.449,947.005 711.823,930.243 721.197,913.204 730.57,895.887 739.944,878.294 749.318,860.423 758.692,842.276 768.066,823.851 777.44,805.15 786.814,786.171 \n",
+       "  796.187,766.915 805.561,747.382 814.935,727.573 824.309,707.486 833.683,687.122 843.057,666.48 852.431,645.562 861.804,624.367 871.178,602.895 880.552,581.146 \n",
+       "  889.926,559.119 899.3,536.816 908.674,514.235 918.048,491.378 927.421,468.243 936.795,444.831 946.169,421.143 955.543,397.177 964.917,372.934 974.291,348.414 \n",
+       "  983.665,323.617 993.038,298.543 1002.41,273.192 1011.79,247.564 1021.16,221.658 1030.53,195.476 1039.91,169.017 1049.28,142.28 1058.66,115.267 1068.03,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"\n",
+       "M925.485 216.178 L1063.08 216.178 L1063.08 95.2176 L925.485 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  925.485,216.178 1063.08,216.178 1063.08,95.2176 925.485,95.2176 925.485,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  936.415,155.698 1001.99,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"M 0 0 M1038.08 154.854 Q1038.08 157.22 1036.86 159.585 Q1035.64 161.951 1033.65 163.778 Q1031.66 165.582 1028.95 166.753 Q1026.23 167.924 1023.39 168.017 L1021.57 175.161 Q1021.22 176.895 1021.03 177.082 Q1020.84 177.269 1020.56 177.269 Q1019.97 177.269 1019.97 176.731 Q1019.97 176.567 1021.03 172.515 L1022.15 168.017 Q1017.89 167.783 1015.41 165.324 Q1012.92 162.865 1012.92 159.328 Q1012.92 156.939 1014.14 154.573 Q1015.38 152.184 1017.37 150.38 Q1019.39 148.577 1022.11 147.429 Q1024.82 146.281 1027.61 146.188 L1030.4 135.109 Q1030.54 134.477 1030.65 134.313 Q1030.77 134.149 1031.12 134.149 Q1031.38 134.149 1031.52 134.266 Q1031.66 134.383 1031.66 134.5 L1031.69 134.617 L1031.55 135.296 L1028.85 146.188 Q1031.24 146.352 1033.09 147.195 Q1034.94 148.038 1036 149.303 Q1037.05 150.544 1037.56 151.95 Q1038.08 153.355 1038.08 154.854 M1027.33 147.242 Q1024.75 147.476 1022.57 148.741 Q1020.4 150.006 1018.99 151.879 Q1017.59 153.73 1016.81 155.955 Q1016.04 158.157 1016.04 160.335 Q1016.04 162.045 1016.6 163.356 Q1017.19 164.668 1018.15 165.418 Q1019.11 166.144 1020.16 166.542 Q1021.24 166.917 1022.39 166.963 L1027.33 147.242 M1034.94 153.847 Q1034.94 150.802 1033.18 149.092 Q1031.43 147.382 1028.57 147.242 L1023.63 166.963 Q1025.71 166.8 1027.54 165.933 Q1029.39 165.043 1030.73 163.731 Q1032.06 162.396 1033.02 160.757 Q1033.98 159.094 1034.45 157.337 Q1034.94 155.557 1034.94 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"\n",
+       "M1369.06 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1369.06 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip794\">\n",
+       "    <rect x=\"1369\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1396.9,1486.45 1396.9,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1582.51,1486.45 1582.51,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1768.11,1486.45 1768.11,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1953.71,1486.45 1953.71,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2139.31,1486.45 2139.31,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2324.92,1486.45 2324.92,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.06,1433.44 2352.76,1433.44 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.06,1099.23 2352.76,1099.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.06,765.029 2352.76,765.029 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.06,430.823 2352.76,430.823 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip794)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.06,96.6175 2352.76,96.6175 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,1486.45 1369.06,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.9,1486.45 1396.9,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1582.51,1486.45 1582.51,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1768.11,1486.45 1768.11,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1953.71,1486.45 1953.71,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2139.31,1486.45 2139.31,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2324.92,1486.45 2324.92,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,1433.44 1380.87,1433.44 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,1099.23 1380.87,1099.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,765.029 1380.87,765.029 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,430.823 1380.87,430.823 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.06,96.6175 1380.87,96.6175 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"M 0 0 M1396.9 1508.44 Q1393.29 1508.44 1391.46 1512 Q1389.66 1515.55 1389.66 1522.67 Q1389.66 1529.78 1391.46 1533.35 Q1393.29 1536.89 1396.9 1536.89 Q1400.54 1536.89 1402.34 1533.35 Q1404.17 1529.78 1404.17 1522.67 Q1404.17 1515.55 1402.34 1512 Q1400.54 1508.44 1396.9 1508.44 M1396.9 1504.73 Q1402.71 1504.73 1405.77 1509.34 Q1408.85 1513.92 1408.85 1522.67 Q1408.85 1531.4 1405.77 1536.01 Q1402.71 1540.59 1396.9 1540.59 Q1391.09 1540.59 1388.01 1536.01 Q1384.96 1531.4 1384.96 1522.67 Q1384.96 1513.92 1388.01 1509.34 Q1391.09 1504.73 1396.9 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1572.89 1535.98 L1580.53 1535.98 L1580.53 1509.62 L1572.22 1511.29 L1572.22 1507.03 L1580.48 1505.36 L1585.16 1505.36 L1585.16 1535.98 L1592.8 1535.98 L1592.8 1539.92 L1572.89 1539.92 L1572.89 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1762.76 1535.98 L1779.08 1535.98 L1779.08 1539.92 L1757.14 1539.92 L1757.14 1535.98 Q1759.8 1533.23 1764.38 1528.6 Q1768.99 1523.95 1770.17 1522.61 Q1772.41 1520.08 1773.29 1518.35 Q1774.2 1516.59 1774.2 1514.9 Q1774.2 1512.14 1772.25 1510.41 Q1770.33 1508.67 1767.23 1508.67 Q1765.03 1508.67 1762.58 1509.43 Q1760.15 1510.2 1757.37 1511.75 L1757.37 1507.03 Q1760.19 1505.89 1762.65 1505.31 Q1765.1 1504.73 1767.14 1504.73 Q1772.51 1504.73 1775.7 1507.42 Q1778.9 1510.11 1778.9 1514.6 Q1778.9 1516.73 1778.09 1518.65 Q1777.3 1520.54 1775.19 1523.14 Q1774.61 1523.81 1771.51 1527.03 Q1768.41 1530.22 1762.76 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1957.96 1521.29 Q1961.31 1522 1963.19 1524.27 Q1965.09 1526.54 1965.09 1529.87 Q1965.09 1534.99 1961.57 1537.79 Q1958.05 1540.59 1951.57 1540.59 Q1949.39 1540.59 1947.08 1540.15 Q1944.79 1539.73 1942.33 1538.88 L1942.33 1534.36 Q1944.28 1535.5 1946.59 1536.08 Q1948.91 1536.66 1951.43 1536.66 Q1955.83 1536.66 1958.12 1534.92 Q1960.44 1533.18 1960.44 1529.87 Q1960.44 1526.82 1958.28 1525.11 Q1956.15 1523.37 1952.33 1523.37 L1948.31 1523.37 L1948.31 1519.53 L1952.52 1519.53 Q1955.97 1519.53 1957.8 1518.16 Q1959.63 1516.77 1959.63 1514.18 Q1959.63 1511.52 1957.73 1510.11 Q1955.85 1508.67 1952.33 1508.67 Q1950.41 1508.67 1948.21 1509.09 Q1946.01 1509.5 1943.38 1510.38 L1943.38 1506.22 Q1946.04 1505.48 1948.35 1505.11 Q1950.69 1504.73 1952.75 1504.73 Q1958.07 1504.73 1961.18 1507.17 Q1964.28 1509.57 1964.28 1513.69 Q1964.28 1516.56 1962.63 1518.55 Q1960.99 1520.52 1957.96 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M2142.32 1509.43 L2130.52 1527.88 L2142.32 1527.88 L2142.32 1509.43 M2141.1 1505.36 L2146.98 1505.36 L2146.98 1527.88 L2151.91 1527.88 L2151.91 1531.77 L2146.98 1531.77 L2146.98 1539.92 L2142.32 1539.92 L2142.32 1531.77 L2126.72 1531.77 L2126.72 1527.26 L2141.1 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M2315.19 1505.36 L2333.55 1505.36 L2333.55 1509.3 L2319.48 1509.3 L2319.48 1517.77 Q2320.49 1517.42 2321.51 1517.26 Q2322.53 1517.07 2323.55 1517.07 Q2329.34 1517.07 2332.72 1520.24 Q2336.1 1523.42 2336.1 1528.83 Q2336.1 1534.41 2332.62 1537.51 Q2329.15 1540.59 2322.83 1540.59 Q2320.66 1540.59 2318.39 1540.22 Q2316.14 1539.85 2313.74 1539.11 L2313.74 1534.41 Q2315.82 1535.54 2318.04 1536.1 Q2320.26 1536.66 2322.74 1536.66 Q2326.74 1536.66 2329.08 1534.55 Q2331.42 1532.44 2331.42 1528.83 Q2331.42 1525.22 2329.08 1523.11 Q2326.74 1521.01 2322.74 1521.01 Q2320.86 1521.01 2318.99 1521.42 Q2317.14 1521.84 2315.19 1522.72 L2315.19 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1221.73 1432.09 Q1225.09 1432.8 1226.96 1435.07 Q1228.86 1437.34 1228.86 1440.67 Q1228.86 1445.79 1225.34 1448.59 Q1221.82 1451.39 1215.34 1451.39 Q1213.17 1451.39 1210.85 1450.95 Q1208.56 1450.53 1206.11 1449.68 L1206.11 1445.16 Q1208.05 1446.3 1210.37 1446.88 Q1212.68 1447.46 1215.2 1447.46 Q1219.6 1447.46 1221.89 1445.72 Q1224.21 1443.98 1224.21 1440.67 Q1224.21 1437.62 1222.05 1435.9 Q1219.93 1434.17 1216.11 1434.17 L1212.08 1434.17 L1212.08 1430.33 L1216.29 1430.33 Q1219.74 1430.33 1221.57 1428.96 Q1223.4 1427.57 1223.4 1424.98 Q1223.4 1422.32 1221.5 1420.9 Q1219.62 1419.47 1216.11 1419.47 Q1214.18 1419.47 1211.99 1419.89 Q1209.79 1420.3 1207.15 1421.18 L1207.15 1417.02 Q1209.81 1416.28 1212.12 1415.91 Q1214.46 1415.53 1216.52 1415.53 Q1221.85 1415.53 1224.95 1417.97 Q1228.05 1420.37 1228.05 1424.49 Q1228.05 1427.36 1226.41 1429.35 Q1224.76 1431.32 1221.73 1432.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1233.93 1444.84 L1238.81 1444.84 L1238.81 1450.72 L1233.93 1450.72 L1233.93 1444.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1244.69 1446.78 L1252.33 1446.78 L1252.33 1420.42 L1244.02 1422.09 L1244.02 1417.83 L1252.29 1416.16 L1256.96 1416.16 L1256.96 1446.78 L1264.6 1446.78 L1264.6 1450.72 L1244.69 1450.72 L1244.69 1446.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1282.52 1420.23 L1270.71 1438.68 L1282.52 1438.68 L1282.52 1420.23 M1281.29 1416.16 L1287.17 1416.16 L1287.17 1438.68 L1292.1 1438.68 L1292.1 1442.57 L1287.17 1442.57 L1287.17 1450.72 L1282.52 1450.72 L1282.52 1442.57 L1266.92 1442.57 L1266.92 1438.06 L1281.29 1416.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1297.98 1446.78 L1305.62 1446.78 L1305.62 1420.42 L1297.31 1422.09 L1297.31 1417.83 L1305.57 1416.16 L1310.25 1416.16 L1310.25 1446.78 L1317.89 1446.78 L1317.89 1450.72 L1297.98 1450.72 L1297.98 1446.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1333.54 1431.58 Q1330.39 1431.58 1328.54 1433.73 Q1326.71 1435.88 1326.71 1439.63 Q1326.71 1443.36 1328.54 1445.53 Q1330.39 1447.69 1333.54 1447.69 Q1336.68 1447.69 1338.51 1445.53 Q1340.36 1443.36 1340.36 1439.63 Q1340.36 1435.88 1338.51 1433.73 Q1336.68 1431.58 1333.54 1431.58 M1342.82 1416.92 L1342.82 1421.18 Q1341.06 1420.35 1339.25 1419.91 Q1337.47 1419.47 1335.71 1419.47 Q1331.08 1419.47 1328.63 1422.59 Q1326.2 1425.72 1325.85 1432.04 Q1327.22 1430.03 1329.28 1428.96 Q1331.34 1427.87 1333.81 1427.87 Q1339.02 1427.87 1342.03 1431.04 Q1345.06 1434.19 1345.06 1439.63 Q1345.06 1444.96 1341.92 1448.17 Q1338.77 1451.39 1333.54 1451.39 Q1327.54 1451.39 1324.37 1446.81 Q1321.2 1442.2 1321.2 1433.47 Q1321.2 1425.28 1325.09 1420.42 Q1328.98 1415.53 1335.53 1415.53 Q1337.29 1415.53 1339.07 1415.88 Q1340.87 1416.23 1342.82 1416.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1221.99 1097.88 Q1225.34 1098.6 1227.22 1100.87 Q1229.11 1103.13 1229.11 1106.47 Q1229.11 1111.58 1225.6 1114.38 Q1222.08 1117.19 1215.6 1117.19 Q1213.42 1117.19 1211.11 1116.75 Q1208.81 1116.33 1206.36 1115.47 L1206.36 1110.96 Q1208.3 1112.09 1210.62 1112.67 Q1212.93 1113.25 1215.46 1113.25 Q1219.86 1113.25 1222.15 1111.51 Q1224.46 1109.78 1224.46 1106.47 Q1224.46 1103.41 1222.31 1101.7 Q1220.18 1099.96 1216.36 1099.96 L1212.33 1099.96 L1212.33 1096.12 L1216.55 1096.12 Q1219.99 1096.12 1221.82 1094.75 Q1223.65 1093.37 1223.65 1090.77 Q1223.65 1088.11 1221.75 1086.7 Q1219.88 1085.26 1216.36 1085.26 Q1214.44 1085.26 1212.24 1085.68 Q1210.04 1086.1 1207.4 1086.98 L1207.4 1082.81 Q1210.06 1082.07 1212.38 1081.7 Q1214.72 1081.33 1216.78 1081.33 Q1222.1 1081.33 1225.2 1083.76 Q1228.3 1086.17 1228.3 1090.29 Q1228.3 1093.16 1226.66 1095.15 Q1225.02 1097.12 1221.99 1097.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1234.18 1110.63 L1239.07 1110.63 L1239.07 1116.51 L1234.18 1116.51 L1234.18 1110.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1244.95 1112.58 L1252.59 1112.58 L1252.59 1086.21 L1244.28 1087.88 L1244.28 1083.62 L1252.54 1081.95 L1257.22 1081.95 L1257.22 1112.58 L1264.86 1112.58 L1264.86 1116.51 L1244.95 1116.51 L1244.95 1112.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1282.77 1086.03 L1270.97 1104.48 L1282.77 1104.48 L1282.77 1086.03 M1281.55 1081.95 L1287.42 1081.95 L1287.42 1104.48 L1292.36 1104.48 L1292.36 1108.37 L1287.42 1108.37 L1287.42 1116.51 L1282.77 1116.51 L1282.77 1108.37 L1267.17 1108.37 L1267.17 1103.85 L1281.55 1081.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1298.23 1112.58 L1305.87 1112.58 L1305.87 1086.21 L1297.56 1087.88 L1297.56 1083.62 L1305.83 1081.95 L1310.5 1081.95 L1310.5 1112.58 L1318.14 1112.58 L1318.14 1116.51 L1298.23 1116.51 L1298.23 1112.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1333.21 1100.1 Q1329.88 1100.1 1327.96 1101.88 Q1326.06 1103.67 1326.06 1106.79 Q1326.06 1109.92 1327.96 1111.7 Q1329.88 1113.48 1333.21 1113.48 Q1336.54 1113.48 1338.47 1111.7 Q1340.39 1109.89 1340.39 1106.79 Q1340.39 1103.67 1338.47 1101.88 Q1336.57 1100.1 1333.21 1100.1 M1328.54 1098.11 Q1325.53 1097.37 1323.84 1095.31 Q1322.17 1093.25 1322.17 1090.29 Q1322.17 1086.14 1325.11 1083.74 Q1328.07 1081.33 1333.21 1081.33 Q1338.37 1081.33 1341.31 1083.74 Q1344.25 1086.14 1344.25 1090.29 Q1344.25 1093.25 1342.56 1095.31 Q1340.9 1097.37 1337.91 1098.11 Q1341.29 1098.9 1343.17 1101.19 Q1345.06 1103.48 1345.06 1106.79 Q1345.06 1111.82 1341.98 1114.5 Q1338.93 1117.19 1333.21 1117.19 Q1327.49 1117.19 1324.42 1114.5 Q1321.36 1111.82 1321.36 1106.79 Q1321.36 1103.48 1323.26 1101.19 Q1325.16 1098.9 1328.54 1098.11 M1326.82 1090.73 Q1326.82 1093.41 1328.49 1094.92 Q1330.18 1096.42 1333.21 1096.42 Q1336.22 1096.42 1337.91 1094.92 Q1339.62 1093.41 1339.62 1090.73 Q1339.62 1088.04 1337.91 1086.54 Q1336.22 1085.03 1333.21 1085.03 Q1330.18 1085.03 1328.49 1086.54 Q1326.82 1088.04 1326.82 1090.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1222.26 763.674 Q1225.62 764.392 1227.49 766.66 Q1229.39 768.929 1229.39 772.262 Q1229.39 777.378 1225.87 780.179 Q1222.36 782.98 1215.87 782.98 Q1213.7 782.98 1211.38 782.54 Q1209.09 782.123 1206.64 781.267 L1206.64 776.753 Q1208.58 777.887 1210.9 778.466 Q1213.21 779.045 1215.74 779.045 Q1220.13 779.045 1222.43 777.309 Q1224.74 775.572 1224.74 772.262 Q1224.74 769.207 1222.59 767.494 Q1220.46 765.758 1216.64 765.758 L1212.61 765.758 L1212.61 761.915 L1216.82 761.915 Q1220.27 761.915 1222.1 760.549 Q1223.93 759.161 1223.93 756.568 Q1223.93 753.906 1222.03 752.494 Q1220.16 751.059 1216.64 751.059 Q1214.72 751.059 1212.52 751.475 Q1210.32 751.892 1207.68 752.772 L1207.68 748.605 Q1210.34 747.864 1212.66 747.494 Q1214.99 747.124 1217.05 747.124 Q1222.38 747.124 1225.48 749.554 Q1228.58 751.962 1228.58 756.082 Q1228.58 758.952 1226.94 760.943 Q1225.3 762.911 1222.26 763.674 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1234.46 776.429 L1239.35 776.429 L1239.35 782.309 L1234.46 782.309 L1234.46 776.429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1245.23 778.373 L1252.86 778.373 L1252.86 752.008 L1244.55 753.674 L1244.55 749.415 L1252.82 747.749 L1257.49 747.749 L1257.49 778.373 L1265.13 778.373 L1265.13 782.309 L1245.23 782.309 L1245.23 778.373 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1283.05 751.823 L1271.24 770.272 L1283.05 770.272 L1283.05 751.823 M1281.82 747.749 L1287.7 747.749 L1287.7 770.272 L1292.63 770.272 L1292.63 774.16 L1287.7 774.16 L1287.7 782.309 L1283.05 782.309 L1283.05 774.16 L1267.45 774.16 L1267.45 769.647 L1281.82 747.749 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1301.73 778.373 L1318.05 778.373 L1318.05 782.309 L1296.11 782.309 L1296.11 778.373 Q1298.77 775.619 1303.35 770.989 Q1307.96 766.336 1309.14 764.994 Q1311.38 762.471 1312.26 760.735 Q1313.17 758.975 1313.17 757.286 Q1313.17 754.531 1311.22 752.795 Q1309.3 751.059 1306.2 751.059 Q1304 751.059 1301.55 751.823 Q1299.11 752.586 1296.34 754.137 L1296.34 749.415 Q1299.16 748.281 1301.61 747.702 Q1304.07 747.124 1306.11 747.124 Q1311.48 747.124 1314.67 749.809 Q1317.86 752.494 1317.86 756.985 Q1317.86 759.114 1317.05 761.036 Q1316.27 762.934 1314.16 765.526 Q1313.58 766.198 1310.48 769.415 Q1307.38 772.61 1301.73 778.373 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1333.12 750.827 Q1329.51 750.827 1327.68 754.392 Q1325.87 757.934 1325.87 765.063 Q1325.87 772.17 1327.68 775.735 Q1329.51 779.276 1333.12 779.276 Q1336.75 779.276 1338.56 775.735 Q1340.39 772.17 1340.39 765.063 Q1340.39 757.934 1338.56 754.392 Q1336.75 750.827 1333.12 750.827 M1333.12 747.124 Q1338.93 747.124 1341.98 751.73 Q1345.06 756.313 1345.06 765.063 Q1345.06 773.79 1341.98 778.397 Q1338.93 782.98 1333.12 782.98 Q1327.31 782.98 1324.23 778.397 Q1321.17 773.79 1321.17 765.063 Q1321.17 756.313 1324.23 751.73 Q1327.31 747.124 1333.12 747.124 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1223.86 429.469 Q1227.22 430.186 1229.09 432.455 Q1230.99 434.723 1230.99 438.057 Q1230.99 443.172 1227.47 445.973 Q1223.95 448.774 1217.47 448.774 Q1215.3 448.774 1212.98 448.335 Q1210.69 447.918 1208.24 447.061 L1208.24 442.547 Q1210.18 443.682 1212.49 444.26 Q1214.81 444.839 1217.33 444.839 Q1221.73 444.839 1224.02 443.103 Q1226.34 441.367 1226.34 438.057 Q1226.34 435.001 1224.18 433.288 Q1222.05 431.552 1218.24 431.552 L1214.21 431.552 L1214.21 427.71 L1218.42 427.71 Q1221.87 427.71 1223.7 426.344 Q1225.53 424.955 1225.53 422.362 Q1225.53 419.7 1223.63 418.288 Q1221.75 416.853 1218.24 416.853 Q1216.31 416.853 1214.12 417.27 Q1211.92 417.687 1209.28 418.566 L1209.28 414.4 Q1211.94 413.659 1214.25 413.288 Q1216.59 412.918 1218.65 412.918 Q1223.98 412.918 1227.08 415.349 Q1230.18 417.756 1230.18 421.876 Q1230.18 424.747 1228.54 426.737 Q1226.89 428.705 1223.86 429.469 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1236.06 442.223 L1240.94 442.223 L1240.94 448.103 L1236.06 448.103 L1236.06 442.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1246.82 444.168 L1254.46 444.168 L1254.46 417.802 L1246.15 419.469 L1246.15 415.21 L1254.42 413.543 L1259.09 413.543 L1259.09 444.168 L1266.73 444.168 L1266.73 448.103 L1246.82 448.103 L1246.82 444.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1284.65 417.617 L1272.84 436.066 L1284.65 436.066 L1284.65 417.617 M1283.42 413.543 L1289.3 413.543 L1289.3 436.066 L1294.23 436.066 L1294.23 439.955 L1289.3 439.955 L1289.3 448.103 L1284.65 448.103 L1284.65 439.955 L1269.05 439.955 L1269.05 435.441 L1283.42 413.543 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1303.33 444.168 L1319.65 444.168 L1319.65 448.103 L1297.7 448.103 L1297.7 444.168 Q1300.36 441.413 1304.95 436.784 Q1309.55 432.131 1310.73 430.788 Q1312.98 428.265 1313.86 426.529 Q1314.76 424.77 1314.76 423.08 Q1314.76 420.325 1312.82 418.589 Q1310.9 416.853 1307.8 416.853 Q1305.6 416.853 1303.14 417.617 Q1300.71 418.381 1297.93 419.932 L1297.93 415.21 Q1300.76 414.075 1303.21 413.497 Q1305.67 412.918 1307.7 412.918 Q1313.07 412.918 1316.27 415.603 Q1319.46 418.288 1319.46 422.779 Q1319.46 424.909 1318.65 426.83 Q1317.86 428.728 1315.76 431.321 Q1315.18 431.992 1312.08 435.21 Q1308.98 438.404 1303.33 444.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1328.74 444.168 L1345.06 444.168 L1345.06 448.103 L1323.12 448.103 L1323.12 444.168 Q1325.78 441.413 1330.36 436.784 Q1334.97 432.131 1336.15 430.788 Q1338.4 428.265 1339.28 426.529 Q1340.18 424.77 1340.18 423.08 Q1340.18 420.325 1338.23 418.589 Q1336.31 416.853 1333.21 416.853 Q1331.01 416.853 1328.56 417.617 Q1326.13 418.381 1323.35 419.932 L1323.35 415.21 Q1326.17 414.075 1328.63 413.497 Q1331.08 412.918 1333.12 412.918 Q1338.49 412.918 1341.68 415.603 Q1344.88 418.288 1344.88 422.779 Q1344.88 424.909 1344.07 426.83 Q1343.28 428.728 1341.17 431.321 Q1340.6 431.992 1337.49 435.21 Q1334.39 438.404 1328.74 444.168 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1221.78 95.2633 Q1225.13 95.9809 1227.01 98.2494 Q1228.91 100.518 1228.91 103.851 Q1228.91 108.967 1225.39 111.768 Q1221.87 114.569 1215.39 114.569 Q1213.21 114.569 1210.9 114.129 Q1208.61 113.712 1206.15 112.856 L1206.15 108.342 Q1208.1 109.476 1210.41 110.055 Q1212.73 110.634 1215.25 110.634 Q1219.65 110.634 1221.94 108.898 Q1224.25 107.161 1224.25 103.851 Q1224.25 100.796 1222.1 99.0828 Q1219.97 97.3467 1216.15 97.3467 L1212.12 97.3467 L1212.12 93.5041 L1216.34 93.5041 Q1219.79 93.5041 1221.62 92.1383 Q1223.44 90.7495 1223.44 88.1569 Q1223.44 85.4949 1221.55 84.0828 Q1219.67 82.6477 1216.15 82.6477 Q1214.23 82.6477 1212.03 83.0643 Q1209.83 83.481 1207.19 84.3606 L1207.19 80.194 Q1209.86 79.4532 1212.17 79.0829 Q1214.51 78.7125 1216.57 78.7125 Q1221.89 78.7125 1224.99 81.143 Q1228.1 83.5504 1228.1 87.6708 Q1228.1 90.5411 1226.45 92.5319 Q1224.81 94.4994 1221.78 95.2633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1233.98 108.018 L1238.86 108.018 L1238.86 113.897 L1233.98 113.897 L1233.98 108.018 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1244.74 109.962 L1252.38 109.962 L1252.38 83.5967 L1244.07 85.2634 L1244.07 81.0041 L1252.33 79.3375 L1257.01 79.3375 L1257.01 109.962 L1264.65 109.962 L1264.65 113.897 L1244.74 113.897 L1244.74 109.962 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1282.56 83.4115 L1270.76 101.861 L1282.56 101.861 L1282.56 83.4115 M1281.34 79.3375 L1287.22 79.3375 L1287.22 101.861 L1292.15 101.861 L1292.15 105.749 L1287.22 105.749 L1287.22 113.897 L1282.56 113.897 L1282.56 105.749 L1266.96 105.749 L1266.96 101.236 L1281.34 79.3375 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1301.24 109.962 L1317.56 109.962 L1317.56 113.897 L1295.62 113.897 L1295.62 109.962 Q1298.28 107.208 1302.86 102.578 Q1307.47 97.9254 1308.65 96.5828 Q1310.9 94.0596 1311.78 92.3235 Q1312.68 90.5643 1312.68 88.8745 Q1312.68 86.1199 1310.73 84.3838 Q1308.81 82.6477 1305.71 82.6477 Q1303.51 82.6477 1301.06 83.4115 Q1298.63 84.1754 1295.85 85.7263 L1295.85 81.0041 Q1298.67 79.8699 1301.13 79.2912 Q1303.58 78.7125 1305.62 78.7125 Q1310.99 78.7125 1314.18 81.3977 Q1317.38 84.0828 1317.38 88.5736 Q1317.38 90.7032 1316.57 92.6245 Q1315.78 94.5226 1313.67 97.1152 Q1313.1 97.7865 1309.99 101.004 Q1306.89 104.198 1301.24 109.962 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M 0 0 M1335.48 83.4115 L1323.67 101.861 L1335.48 101.861 L1335.48 83.4115 M1334.25 79.3375 L1340.13 79.3375 L1340.13 101.861 L1345.06 101.861 L1345.06 105.749 L1340.13 105.749 L1340.13 113.897 L1335.48 113.897 L1335.48 105.749 L1319.88 105.749 L1319.88 101.236 L1334.25 79.3375 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip794)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.9,1445.72 1406.28,1321.87 1415.65,996.226 1425.03,589.456 1434.4,252.292 1443.77,109.666 1453.15,214.417 1462.52,527.718 1471.89,933.466 1481.27,1281.32 \n",
+       "  1490.64,1442.38 1500.02,1356.99 1509.39,1056.77 1518.76,652.932 1528.14,295.049 1537.51,115.654 1546.89,181.153 1556.26,467.251 1565.63,867.968 1575.01,1234.9 \n",
+       "  1584.38,1432.19 1593.75,1386.78 1603.13,1115.48 1612.5,718.702 1621.88,343.249 1631.25,128.013 1640.62,152.57 1650,407.772 1659.37,799.164 1668.75,1181.95 \n",
+       "  1678.12,1414.56 1687.49,1410.97 1696.87,1172.52 1706.24,787.31 1715.61,397.67 1724.99,147.503 1734.36,129.145 1743.74,349.287 1753.11,726.552 1762.48,1121.59 \n",
+       "  1771.86,1388.53 1781.23,1428.86 1790.61,1227.67 1799.98,859.175 1809.35,459.239 1818.73,175.261 1828.1,111.828 1837.48,292.204 1846.85,649.817 1856.22,1052.84 \n",
+       "  1865.6,1352.8 1874.97,1439.22 1884.34,1280.28 1893.72,934.454 1903.09,528.929 1912.47,212.767 1921.84,102.099 1931.21,237.466 1940.59,568.986 1949.96,974.762 \n",
+       "  1959.34,1305.7 1968.71,1440.27 1978.08,1329.06 1987.46,1012.87 1996.83,607.612 2006.2,261.793 2015.58,102.031 2024.95,186.699 2034.33,484.622 2043.7,886.576 \n",
+       "  2053.07,1245.35 2062.45,1429.62 2071.82,1371.98 2081.2,1093.48 2090.57,695.862 2099.94,324.289 2109.32,114.305 2118.69,142.376 2128.06,398.067 2137.44,787.949 \n",
+       "  2146.81,1169.76 2156.19,1404.28 2165.56,1406.06 2174.93,1174.44 2184.31,793.668 2193.68,402.178 2203.06,142.174 2212.43,107.954 2221.8,311.73 2231.18,679.303 \n",
+       "  2240.55,1077.11 2249.92,1360.74 2259.3,1427.3 2268.67,1252.66 2278.05,900.046 2287.42,497.034 2296.79,189.315 2306.17,87.9763 2315.54,229.405 2324.92,562.264 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"\n",
+       "M2179.75 216.178 L2319.97 216.178 L2319.97 95.2176 L2179.75 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2179.75,216.178 2319.97,216.178 2319.97,95.2176 2179.75,95.2176 2179.75,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip790)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2190.68,155.698 2256.26,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip790)\" d=\"M 0 0 M2296.26 149.584 Q2296.26 150.989 2295.72 153.449 Q2295.2 155.908 2294.78 157.079 Q2293.61 160.194 2291.27 162.818 Q2289.98 164.27 2288.57 165.324 Q2287.19 166.354 2286.16 166.87 Q2285.13 167.362 2283.91 167.619 Q2282.7 167.9 2282.13 167.924 Q2281.57 167.971 2280.77 167.971 L2278.95 175.114 Q2278.57 176.965 2278.39 177.082 Q2278.34 177.176 2278.22 177.223 Q2278.13 177.269 2278.03 177.269 L2277.94 177.269 Q2277.68 177.269 2277.54 177.152 Q2277.4 177.035 2277.38 176.895 L2277.38 176.777 Q2277.38 176.45 2278.48 172.234 Q2279.04 170.079 2279.53 167.854 Q2275.79 167.619 2273.47 165.956 Q2271.17 164.293 2271.17 161.061 Q2271.17 159.07 2273.49 152.957 Q2274.59 150.029 2274.59 148.811 Q2274.59 148.272 2274.47 147.944 Q2274.36 147.593 2274.12 147.476 Q2273.89 147.335 2273.75 147.312 Q2273.63 147.289 2273.4 147.289 Q2272.01 147.289 2270.73 148.671 Q2269.44 150.052 2268.55 153.238 Q2268.36 153.823 2268.24 153.964 Q2268.13 154.105 2267.78 154.105 Q2267.19 154.081 2267.19 153.613 Q2267.19 153.425 2267.4 152.699 Q2267.61 151.95 2268.1 150.849 Q2268.62 149.725 2269.32 148.717 Q2270.02 147.687 2271.12 146.961 Q2272.25 146.235 2273.54 146.235 Q2275.29 146.235 2276.37 147.382 Q2277.47 148.507 2277.47 150.17 Q2277.47 150.498 2277.4 150.872 Q2277.33 151.247 2277.26 151.458 Q2277.21 151.669 2277.07 152.067 Q2276.96 152.442 2276.93 152.512 Q2275.74 155.604 2275.13 157.618 Q2274.52 159.609 2274.43 160.194 Q2274.36 160.757 2274.36 161.436 Q2274.36 166.167 2279.81 166.8 L2287.78 135.109 Q2287.92 134.453 2288.04 134.313 Q2288.15 134.149 2288.5 134.149 Q2289.07 134.149 2289.07 134.664 Q2289.07 134.828 2288.93 135.39 L2281.01 166.893 Q2281.76 166.893 2282.23 166.87 Q2282.7 166.846 2283.68 166.636 Q2284.69 166.401 2285.53 165.98 Q2286.4 165.558 2287.61 164.715 Q2288.83 163.848 2290.03 162.63 Q2291.53 161.108 2292.86 158.555 Q2294.2 156.002 2294.2 153.894 Q2294.2 151.528 2292.49 149.818 Q2292.23 149.584 2292.09 149.443 Q2291.97 149.303 2291.85 149.069 Q2291.76 148.835 2291.76 148.53 Q2291.76 147.734 2292.51 146.984 Q2293.26 146.235 2294.15 146.235 Q2294.95 146.235 2295.6 147.008 Q2296.26 147.78 2296.26 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip830\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip831\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip832\">\n",
+       "    <rect x=\"1369\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"\n",
+       "M112.177 1486.45 L1082.63 1486.45 L1082.63 47.2441 L112.177 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip833\">\n",
+       "    <rect x=\"112\" y=\"47\" width=\"971\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  139.643,1486.45 139.643,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  322.747,1486.45 322.747,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  505.851,1486.45 505.851,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  688.955,1486.45 688.955,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  872.059,1486.45 872.059,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1055.16,1486.45 1055.16,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1445.72 1082.63,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1228.48 1082.63,1228.48 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1011.23 1082.63,1011.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,793.994 1082.63,793.994 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,576.753 1082.63,576.753 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,359.513 1082.63,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip833)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,142.272 1082.63,142.272 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 1082.63,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 112.177,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  139.643,1486.45 139.643,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  322.747,1486.45 322.747,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  505.851,1486.45 505.851,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  688.955,1486.45 688.955,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  872.059,1486.45 872.059,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1055.16,1486.45 1055.16,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1445.72 123.823,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1228.48 123.823,1228.48 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1011.23 123.823,1011.23 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,793.994 123.823,793.994 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,576.753 123.823,576.753 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,359.513 123.823,359.513 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,142.272 123.823,142.272 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"M 0 0 M139.643 1508.44 Q136.032 1508.44 134.203 1512 Q132.397 1515.55 132.397 1522.67 Q132.397 1529.78 134.203 1533.35 Q136.032 1536.89 139.643 1536.89 Q143.277 1536.89 145.083 1533.35 Q146.911 1529.78 146.911 1522.67 Q146.911 1515.55 145.083 1512 Q143.277 1508.44 139.643 1508.44 M139.643 1504.73 Q145.453 1504.73 148.508 1509.34 Q151.587 1513.92 151.587 1522.67 Q151.587 1531.4 148.508 1536.01 Q145.453 1540.59 139.643 1540.59 Q133.833 1540.59 130.754 1536.01 Q127.698 1531.4 127.698 1522.67 Q127.698 1513.92 130.754 1509.34 Q133.833 1504.73 139.643 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M313.129 1535.98 L320.768 1535.98 L320.768 1509.62 L312.458 1511.29 L312.458 1507.03 L320.721 1505.36 L325.397 1505.36 L325.397 1535.98 L333.036 1535.98 L333.036 1539.92 L313.129 1539.92 L313.129 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M500.504 1535.98 L516.823 1535.98 L516.823 1539.92 L494.879 1539.92 L494.879 1535.98 Q497.541 1533.23 502.124 1528.6 Q506.731 1523.95 507.911 1522.61 Q510.157 1520.08 511.036 1518.35 Q511.939 1516.59 511.939 1514.9 Q511.939 1512.14 509.995 1510.41 Q508.073 1508.67 504.971 1508.67 Q502.772 1508.67 500.319 1509.43 Q497.888 1510.2 495.11 1511.75 L495.11 1507.03 Q497.934 1505.89 500.388 1505.31 Q502.842 1504.73 504.879 1504.73 Q510.249 1504.73 513.444 1507.42 Q516.638 1510.11 516.638 1514.6 Q516.638 1516.73 515.828 1518.65 Q515.041 1520.54 512.934 1523.14 Q512.356 1523.81 509.254 1527.03 Q506.152 1530.22 500.504 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M693.203 1521.29 Q696.559 1522 698.434 1524.27 Q700.332 1526.54 700.332 1529.87 Q700.332 1534.99 696.814 1537.79 Q693.295 1540.59 686.814 1540.59 Q684.638 1540.59 682.323 1540.15 Q680.032 1539.73 677.578 1538.88 L677.578 1534.36 Q679.522 1535.5 681.837 1536.08 Q684.152 1536.66 686.675 1536.66 Q691.073 1536.66 693.365 1534.92 Q695.68 1533.18 695.68 1529.87 Q695.68 1526.82 693.527 1525.11 Q691.397 1523.37 687.578 1523.37 L683.55 1523.37 L683.55 1519.53 L687.763 1519.53 Q691.212 1519.53 693.041 1518.16 Q694.869 1516.77 694.869 1514.18 Q694.869 1511.52 692.971 1510.11 Q691.096 1508.67 687.578 1508.67 Q685.657 1508.67 683.457 1509.09 Q681.258 1509.5 678.62 1510.38 L678.62 1506.22 Q681.282 1505.48 683.596 1505.11 Q685.934 1504.73 687.994 1504.73 Q693.319 1504.73 696.42 1507.17 Q699.522 1509.57 699.522 1513.69 Q699.522 1516.56 697.879 1518.55 Q696.235 1520.52 693.203 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M875.068 1509.43 L863.263 1527.88 L875.068 1527.88 L875.068 1509.43 M873.842 1505.36 L879.721 1505.36 L879.721 1527.88 L884.652 1527.88 L884.652 1531.77 L879.721 1531.77 L879.721 1539.92 L875.068 1539.92 L875.068 1531.77 L859.467 1531.77 L859.467 1527.26 L873.842 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1045.44 1505.36 L1063.8 1505.36 L1063.8 1509.3 L1049.72 1509.3 L1049.72 1517.77 Q1050.74 1517.42 1051.76 1517.26 Q1052.78 1517.07 1053.8 1517.07 Q1059.58 1517.07 1062.96 1520.24 Q1066.34 1523.42 1066.34 1528.83 Q1066.34 1534.41 1062.87 1537.51 Q1059.4 1540.59 1053.08 1540.59 Q1050.9 1540.59 1048.64 1540.22 Q1046.39 1539.85 1043.98 1539.11 L1043.98 1534.41 Q1046.07 1535.54 1048.29 1536.1 Q1050.51 1536.66 1052.99 1536.66 Q1056.99 1536.66 1059.33 1534.55 Q1061.67 1532.44 1061.67 1528.83 Q1061.67 1525.22 1059.33 1523.11 Q1056.99 1521.01 1052.99 1521.01 Q1051.11 1521.01 1049.24 1521.42 Q1047.39 1521.84 1045.44 1522.72 L1045.44 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M76.2328 1431.51 Q72.6217 1431.51 70.793 1435.08 Q68.9875 1438.62 68.9875 1445.75 Q68.9875 1452.86 70.793 1456.42 Q72.6217 1459.96 76.2328 1459.96 Q79.867 1459.96 81.6726 1456.42 Q83.5013 1452.86 83.5013 1445.75 Q83.5013 1438.62 81.6726 1435.08 Q79.867 1431.51 76.2328 1431.51 M76.2328 1427.81 Q82.0429 1427.81 85.0985 1432.42 Q88.1772 1437 88.1772 1445.75 Q88.1772 1454.48 85.0985 1459.08 Q82.0429 1463.67 76.2328 1463.67 Q70.4226 1463.67 67.344 1459.08 Q64.2884 1454.48 64.2884 1445.75 Q64.2884 1437 67.344 1432.42 Q70.4226 1427.81 76.2328 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M68.2699 1241.82 L75.9087 1241.82 L75.9087 1215.45 L67.5986 1217.12 L67.5986 1212.86 L75.8624 1211.2 L80.5383 1211.2 L80.5383 1241.82 L88.1772 1241.82 L88.1772 1245.76 L68.2699 1245.76 L68.2699 1241.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M71.8578 1024.58 L88.1772 1024.58 L88.1772 1028.51 L66.2328 1028.51 L66.2328 1024.58 Q68.8949 1021.82 73.4782 1017.2 Q78.0846 1012.54 79.2652 1011.2 Q81.5105 1008.68 82.3902 1006.94 Q83.2929 1005.18 83.2929 1003.49 Q83.2929 1000.74 81.3485 999.001 Q79.4272 997.265 76.3254 997.265 Q74.1263 997.265 71.6726 998.029 Q69.2421 998.793 66.4643 1000.34 L66.4643 995.621 Q69.2884 994.487 71.7421 993.908 Q74.1958 993.33 76.2328 993.33 Q81.6031 993.33 84.7976 996.015 Q87.992 998.7 87.992 1003.19 Q87.992 1005.32 87.1818 1007.24 Q86.3948 1009.14 84.2883 1011.73 Q83.7096 1012.4 80.6078 1015.62 Q77.5059 1018.82 71.8578 1024.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M81.0476 792.64 Q84.404 793.357 86.279 795.626 Q88.1772 797.894 88.1772 801.228 Q88.1772 806.344 84.6587 809.144 Q81.1402 811.945 74.6587 811.945 Q72.4828 811.945 70.168 811.506 Q67.8764 811.089 65.4227 810.232 L65.4227 805.719 Q67.3671 806.853 69.6819 807.431 Q71.9967 808.01 74.5198 808.01 Q78.918 808.01 81.2096 806.274 Q83.5244 804.538 83.5244 801.228 Q83.5244 798.172 81.3717 796.459 Q79.242 794.723 75.4226 794.723 L71.3949 794.723 L71.3949 790.881 L75.6078 790.881 Q79.0569 790.881 80.8855 789.515 Q82.7142 788.126 82.7142 785.533 Q82.7142 782.871 80.8161 781.459 Q78.9411 780.024 75.4226 780.024 Q73.5013 780.024 71.3023 780.441 Q69.1032 780.858 66.4643 781.737 L66.4643 777.571 Q69.1264 776.83 71.4412 776.459 Q73.7791 776.089 75.8393 776.089 Q81.1633 776.089 84.2652 778.52 Q87.367 780.927 87.367 785.047 Q87.367 787.918 85.7235 789.908 Q84.08 791.876 81.0476 792.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M78.5939 563.548 L66.7884 581.997 L78.5939 581.997 L78.5939 563.548 M77.367 559.473 L83.2466 559.473 L83.2466 581.997 L88.1772 581.997 L88.1772 585.885 L83.2466 585.885 L83.2466 594.033 L78.5939 594.033 L78.5939 585.885 L62.9921 585.885 L62.9921 581.372 L77.367 559.473 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M67.2745 342.233 L85.6309 342.233 L85.6309 346.168 L71.5569 346.168 L71.5569 354.64 Q72.5754 354.293 73.5939 354.131 Q74.6124 353.946 75.6309 353.946 Q81.418 353.946 84.7976 357.117 Q88.1772 360.288 88.1772 365.705 Q88.1772 371.284 84.705 374.386 Q81.2328 377.464 74.9134 377.464 Q72.7374 377.464 70.4689 377.094 Q68.2236 376.723 65.8162 375.983 L65.8162 371.284 Q67.8995 372.418 70.1217 372.974 Q72.3439 373.529 74.8208 373.529 Q78.8254 373.529 81.1633 371.423 Q83.5013 369.316 83.5013 365.705 Q83.5013 362.094 81.1633 359.987 Q78.8254 357.881 74.8208 357.881 Q72.9458 357.881 71.0708 358.298 Q69.2189 358.714 67.2745 359.594 L67.2745 342.233 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M76.6495 140.409 Q73.5013 140.409 71.6495 142.562 Q69.8208 144.715 69.8208 148.464 Q69.8208 152.191 71.6495 154.367 Q73.5013 156.52 76.6495 156.52 Q79.7976 156.52 81.6263 154.367 Q83.4781 152.191 83.4781 148.464 Q83.4781 144.715 81.6263 142.562 Q79.7976 140.409 76.6495 140.409 M85.9318 125.756 L85.9318 130.016 Q84.1726 129.182 82.367 128.742 Q80.5846 128.303 78.8254 128.303 Q74.1958 128.303 71.7421 131.428 Q69.3115 134.553 68.9643 140.872 Q70.33 138.858 72.3902 137.793 Q74.4504 136.705 76.9272 136.705 Q82.1355 136.705 85.1448 139.877 Q88.1772 143.025 88.1772 148.464 Q88.1772 153.789 85.029 157.006 Q81.8809 160.224 76.6495 160.224 Q70.6541 160.224 67.4828 155.64 Q64.3116 151.034 64.3116 142.307 Q64.3116 134.113 68.2004 129.252 Q72.0893 124.367 78.6402 124.367 Q80.3994 124.367 82.1818 124.715 Q83.9874 125.062 85.9318 125.756 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip833)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  139.643,1445.72 148.89,1445.58 158.138,1445.16 167.386,1444.47 176.634,1443.5 185.881,1442.25 195.129,1440.73 204.377,1438.93 213.624,1436.85 222.872,1434.49 \n",
+       "  232.12,1431.86 241.367,1428.95 250.615,1425.77 259.863,1422.3 269.11,1418.56 278.358,1414.55 287.606,1410.25 296.853,1405.68 306.101,1400.83 315.349,1395.71 \n",
+       "  324.596,1390.3 333.844,1384.62 343.092,1378.67 352.339,1372.43 361.587,1365.92 370.835,1359.13 380.083,1352.07 389.33,1344.73 398.578,1337.11 407.826,1329.21 \n",
+       "  417.073,1321.04 426.321,1312.59 435.569,1303.86 444.816,1294.86 454.064,1285.57 463.312,1276.02 472.559,1266.18 481.807,1256.07 491.055,1245.68 500.302,1235.01 \n",
+       "  509.55,1224.07 518.798,1212.85 528.045,1201.35 537.293,1189.57 546.541,1177.52 555.789,1165.19 565.036,1152.58 574.284,1139.7 583.532,1126.54 592.779,1113.1 \n",
+       "  602.027,1099.39 611.275,1085.4 620.522,1071.13 629.77,1056.58 639.018,1041.76 648.265,1026.66 657.513,1011.28 666.761,995.629 676.008,979.698 685.256,963.49 \n",
+       "  694.504,947.005 703.751,930.243 712.999,913.204 722.247,895.887 731.494,878.294 740.742,860.423 749.99,842.276 759.238,823.851 768.485,805.15 777.733,786.171 \n",
+       "  786.981,766.915 796.228,747.382 805.476,727.573 814.724,707.486 823.971,687.122 833.219,666.48 842.467,645.562 851.714,624.367 860.962,602.895 870.21,581.146 \n",
+       "  879.457,559.119 888.705,536.816 897.953,514.235 907.2,491.378 916.448,468.243 925.696,444.831 934.943,421.143 944.191,397.177 953.439,372.934 962.687,348.414 \n",
+       "  971.934,323.617 981.182,298.543 990.43,273.192 999.677,247.564 1008.92,221.658 1018.17,195.476 1027.42,169.017 1036.67,142.28 1045.92,115.267 1055.16,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"\n",
+       "M914.157 216.178 L1050.28 216.178 L1050.28 95.2176 L914.157 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  914.157,216.178 1050.28,216.178 1050.28,95.2176 914.157,95.2176 914.157,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  924.939,155.698 989.636,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"M 0 0 M1025.57 154.854 Q1025.57 157.22 1024.36 159.585 Q1023.14 161.951 1021.15 163.778 Q1019.16 165.582 1016.44 166.753 Q1013.72 167.924 1010.89 168.017 L1009.06 175.161 Q1008.71 176.895 1008.52 177.082 Q1008.34 177.269 1008.05 177.269 Q1007.47 177.269 1007.47 176.731 Q1007.47 176.567 1008.52 172.515 L1009.65 168.017 Q1005.38 167.783 1002.9 165.324 Q1000.42 162.865 1000.42 159.328 Q1000.42 156.939 1001.64 154.573 Q1002.88 152.184 1004.87 150.38 Q1006.88 148.577 1009.6 147.429 Q1012.32 146.281 1015.1 146.188 L1017.89 135.109 Q1018.03 134.477 1018.15 134.313 Q1018.27 134.149 1018.62 134.149 Q1018.88 134.149 1019.02 134.266 Q1019.16 134.383 1019.16 134.5 L1019.18 134.617 L1019.04 135.296 L1016.35 146.188 Q1018.74 146.352 1020.59 147.195 Q1022.44 148.038 1023.49 149.303 Q1024.54 150.544 1025.06 151.95 Q1025.57 153.355 1025.57 154.854 M1014.82 147.242 Q1012.25 147.476 1010.07 148.741 Q1007.89 150.006 1006.49 151.879 Q1005.08 153.73 1004.31 155.955 Q1003.53 158.157 1003.53 160.335 Q1003.53 162.045 1004.1 163.356 Q1004.68 164.668 1005.64 165.418 Q1006.6 166.144 1007.66 166.542 Q1008.73 166.917 1009.88 166.963 L1014.82 147.242 M1022.44 153.847 Q1022.44 150.802 1020.68 149.092 Q1018.92 147.382 1016.07 147.242 L1011.12 166.963 Q1013.21 166.8 1015.03 165.933 Q1016.89 165.043 1018.22 163.731 Q1019.56 162.396 1020.52 160.757 Q1021.48 159.094 1021.94 157.337 Q1022.44 155.557 1022.44 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"\n",
+       "M1382.3 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1382.3 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip834\">\n",
+       "    <rect x=\"1382\" y=\"47\" width=\"971\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1409.77,1486.45 1409.77,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1592.87,1486.45 1592.87,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1775.98,1486.45 1775.98,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1959.08,1486.45 1959.08,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2142.19,1486.45 2142.19,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.29,1486.45 2325.29,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1382.3,1237.04 2352.76,1237.04 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1382.3,905.492 2352.76,905.492 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1382.3,573.942 2352.76,573.942 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip834)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1382.3,242.392 2352.76,242.392 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,1486.45 1382.3,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1409.77,1486.45 1409.77,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1592.87,1486.45 1592.87,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1775.98,1486.45 1775.98,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1959.08,1486.45 1959.08,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2142.19,1486.45 2142.19,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.29,1486.45 2325.29,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,1237.04 1393.95,1237.04 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,905.492 1393.95,905.492 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,573.942 1393.95,573.942 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1382.3,242.392 1393.95,242.392 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"M 0 0 M1409.77 1508.44 Q1406.16 1508.44 1404.33 1512 Q1402.52 1515.55 1402.52 1522.67 Q1402.52 1529.78 1404.33 1533.35 Q1406.16 1536.89 1409.77 1536.89 Q1413.4 1536.89 1415.21 1533.35 Q1417.04 1529.78 1417.04 1522.67 Q1417.04 1515.55 1415.21 1512 Q1413.4 1508.44 1409.77 1508.44 M1409.77 1504.73 Q1415.58 1504.73 1418.64 1509.34 Q1421.71 1513.92 1421.71 1522.67 Q1421.71 1531.4 1418.64 1536.01 Q1415.58 1540.59 1409.77 1540.59 Q1403.96 1540.59 1400.88 1536.01 Q1397.83 1531.4 1397.83 1522.67 Q1397.83 1513.92 1400.88 1509.34 Q1403.96 1504.73 1409.77 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1583.26 1535.98 L1590.89 1535.98 L1590.89 1509.62 L1582.58 1511.29 L1582.58 1507.03 L1590.85 1505.36 L1595.52 1505.36 L1595.52 1535.98 L1603.16 1535.98 L1603.16 1539.92 L1583.26 1539.92 L1583.26 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1770.63 1535.98 L1786.95 1535.98 L1786.95 1539.92 L1765.01 1539.92 L1765.01 1535.98 Q1767.67 1533.23 1772.25 1528.6 Q1776.86 1523.95 1778.04 1522.61 Q1780.28 1520.08 1781.16 1518.35 Q1782.07 1516.59 1782.07 1514.9 Q1782.07 1512.14 1780.12 1510.41 Q1778.2 1508.67 1775.1 1508.67 Q1772.9 1508.67 1770.45 1509.43 Q1768.02 1510.2 1765.24 1511.75 L1765.24 1507.03 Q1768.06 1505.89 1770.52 1505.31 Q1772.97 1504.73 1775.01 1504.73 Q1780.38 1504.73 1783.57 1507.42 Q1786.76 1510.11 1786.76 1514.6 Q1786.76 1516.73 1785.95 1518.65 Q1785.17 1520.54 1783.06 1523.14 Q1782.48 1523.81 1779.38 1527.03 Q1776.28 1530.22 1770.63 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1963.33 1521.29 Q1966.69 1522 1968.56 1524.27 Q1970.46 1526.54 1970.46 1529.87 Q1970.46 1534.99 1966.94 1537.79 Q1963.42 1540.59 1956.94 1540.59 Q1954.76 1540.59 1952.45 1540.15 Q1950.16 1539.73 1947.7 1538.88 L1947.7 1534.36 Q1949.65 1535.5 1951.96 1536.08 Q1954.28 1536.66 1956.8 1536.66 Q1961.2 1536.66 1963.49 1534.92 Q1965.81 1533.18 1965.81 1529.87 Q1965.81 1526.82 1963.65 1525.11 Q1961.52 1523.37 1957.7 1523.37 L1953.68 1523.37 L1953.68 1519.53 L1957.89 1519.53 Q1961.34 1519.53 1963.17 1518.16 Q1965 1516.77 1965 1514.18 Q1965 1511.52 1963.1 1510.11 Q1961.22 1508.67 1957.7 1508.67 Q1955.78 1508.67 1953.58 1509.09 Q1951.39 1509.5 1948.75 1510.38 L1948.75 1506.22 Q1951.41 1505.48 1953.72 1505.11 Q1956.06 1504.73 1958.12 1504.73 Q1963.45 1504.73 1966.55 1507.17 Q1969.65 1509.57 1969.65 1513.69 Q1969.65 1516.56 1968.01 1518.55 Q1966.36 1520.52 1963.33 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M2145.2 1509.43 L2133.39 1527.88 L2145.2 1527.88 L2145.2 1509.43 M2143.97 1505.36 L2149.85 1505.36 L2149.85 1527.88 L2154.78 1527.88 L2154.78 1531.77 L2149.85 1531.77 L2149.85 1539.92 L2145.2 1539.92 L2145.2 1531.77 L2129.59 1531.77 L2129.59 1527.26 L2143.97 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M2315.57 1505.36 L2333.92 1505.36 L2333.92 1509.3 L2319.85 1509.3 L2319.85 1517.77 Q2320.87 1517.42 2321.89 1517.26 Q2322.91 1517.07 2323.92 1517.07 Q2329.71 1517.07 2333.09 1520.24 Q2336.47 1523.42 2336.47 1528.83 Q2336.47 1534.41 2333 1537.51 Q2329.53 1540.59 2323.21 1540.59 Q2321.03 1540.59 2318.76 1540.22 Q2316.52 1539.85 2314.11 1539.11 L2314.11 1534.41 Q2316.19 1535.54 2318.42 1536.1 Q2320.64 1536.66 2323.11 1536.66 Q2327.12 1536.66 2329.46 1534.55 Q2331.79 1532.44 2331.79 1528.83 Q2331.79 1525.22 2329.46 1523.11 Q2327.12 1521.01 2323.11 1521.01 Q2321.24 1521.01 2319.36 1521.42 Q2317.51 1521.84 2315.57 1522.72 L2315.57 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1210.02 1235.69 Q1213.37 1236.41 1215.25 1238.67 Q1217.15 1240.94 1217.15 1244.28 Q1217.15 1249.39 1213.63 1252.19 Q1210.11 1254.99 1203.63 1254.99 Q1201.45 1254.99 1199.14 1254.55 Q1196.85 1254.14 1194.39 1253.28 L1194.39 1248.77 Q1196.34 1249.9 1198.65 1250.48 Q1200.97 1251.06 1203.49 1251.06 Q1207.89 1251.06 1210.18 1249.32 Q1212.49 1247.59 1212.49 1244.28 Q1212.49 1241.22 1210.34 1239.51 Q1208.21 1237.77 1204.39 1237.77 L1200.37 1237.77 L1200.37 1233.93 L1204.58 1233.93 Q1208.03 1233.93 1209.86 1232.56 Q1211.68 1231.17 1211.68 1228.58 Q1211.68 1225.92 1209.79 1224.51 Q1207.91 1223.07 1204.39 1223.07 Q1202.47 1223.07 1200.27 1223.49 Q1198.07 1223.91 1195.43 1224.79 L1195.43 1220.62 Q1198.1 1219.88 1200.41 1219.51 Q1202.75 1219.14 1204.81 1219.14 Q1210.13 1219.14 1213.24 1221.57 Q1216.34 1223.98 1216.34 1228.1 Q1216.34 1230.97 1214.69 1232.96 Q1213.05 1234.92 1210.02 1235.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1222.22 1248.44 L1227.1 1248.44 L1227.1 1254.32 L1222.22 1254.32 L1222.22 1248.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1232.98 1250.39 L1240.62 1250.39 L1240.62 1224.02 L1232.31 1225.69 L1232.31 1221.43 L1240.57 1219.76 L1245.25 1219.76 L1245.25 1250.39 L1252.89 1250.39 L1252.89 1254.32 L1232.98 1254.32 L1232.98 1250.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1270.8 1223.84 L1259 1242.29 L1270.8 1242.29 L1270.8 1223.84 M1269.58 1219.76 L1275.46 1219.76 L1275.46 1242.29 L1280.39 1242.29 L1280.39 1246.17 L1275.46 1246.17 L1275.46 1254.32 L1270.8 1254.32 L1270.8 1246.17 L1255.2 1246.17 L1255.2 1241.66 L1269.58 1219.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1286.27 1250.39 L1293.91 1250.39 L1293.91 1224.02 L1285.6 1225.69 L1285.6 1221.43 L1293.86 1219.76 L1298.54 1219.76 L1298.54 1250.39 L1306.17 1250.39 L1306.17 1254.32 L1286.27 1254.32 L1286.27 1250.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1310.06 1219.76 L1332.29 1219.76 L1332.29 1221.75 L1319.74 1254.32 L1314.86 1254.32 L1326.66 1223.7 L1310.06 1223.7 L1310.06 1219.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1337.4 1219.76 L1355.76 1219.76 L1355.76 1223.7 L1341.68 1223.7 L1341.68 1232.17 Q1342.7 1231.82 1343.72 1231.66 Q1344.74 1231.48 1345.76 1231.48 Q1351.54 1231.48 1354.92 1234.65 Q1358.3 1237.82 1358.3 1243.23 Q1358.3 1248.81 1354.83 1251.92 Q1351.36 1254.99 1345.04 1254.99 Q1342.86 1254.99 1340.6 1254.62 Q1338.35 1254.25 1335.94 1253.51 L1335.94 1248.81 Q1338.03 1249.95 1340.25 1250.5 Q1342.47 1251.06 1344.95 1251.06 Q1348.95 1251.06 1351.29 1248.95 Q1353.63 1246.85 1353.63 1243.23 Q1353.63 1239.62 1351.29 1237.52 Q1348.95 1235.41 1344.95 1235.41 Q1343.07 1235.41 1341.2 1235.83 Q1339.35 1236.24 1337.4 1237.12 L1337.4 1219.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1208.49 904.138 Q1211.85 904.856 1213.72 907.124 Q1215.62 909.393 1215.62 912.726 Q1215.62 917.842 1212.1 920.643 Q1208.58 923.444 1202.1 923.444 Q1199.93 923.444 1197.61 923.004 Q1195.32 922.587 1192.87 921.731 L1192.87 917.217 Q1194.81 918.351 1197.12 918.93 Q1199.44 919.509 1201.96 919.509 Q1206.36 919.509 1208.65 917.772 Q1210.97 916.036 1210.97 912.726 Q1210.97 909.671 1208.81 907.958 Q1206.68 906.222 1202.87 906.222 L1198.84 906.222 L1198.84 902.379 L1203.05 902.379 Q1206.5 902.379 1208.33 901.013 Q1210.16 899.624 1210.16 897.032 Q1210.16 894.37 1208.26 892.958 Q1206.38 891.523 1202.87 891.523 Q1200.94 891.523 1198.74 891.939 Q1196.55 892.356 1193.91 893.236 L1193.91 889.069 Q1196.57 888.328 1198.88 887.958 Q1201.22 887.587 1203.28 887.587 Q1208.61 887.587 1211.71 890.018 Q1214.81 892.425 1214.81 896.546 Q1214.81 899.416 1213.17 901.407 Q1211.52 903.374 1208.49 904.138 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1220.69 916.893 L1225.57 916.893 L1225.57 922.772 L1220.69 922.772 L1220.69 916.893 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1231.45 918.837 L1239.09 918.837 L1239.09 892.472 L1230.78 894.138 L1230.78 889.879 L1239.05 888.212 L1243.72 888.212 L1243.72 918.837 L1251.36 918.837 L1251.36 922.772 L1231.45 922.772 L1231.45 918.837 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1269.28 892.286 L1257.47 910.735 L1269.28 910.735 L1269.28 892.286 M1268.05 888.212 L1273.93 888.212 L1273.93 910.735 L1278.86 910.735 L1278.86 914.624 L1273.93 914.624 L1273.93 922.772 L1269.28 922.772 L1269.28 914.624 L1253.68 914.624 L1253.68 910.11 L1268.05 888.212 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1287.96 918.837 L1304.28 918.837 L1304.28 922.772 L1282.33 922.772 L1282.33 918.837 Q1284.99 916.083 1289.58 911.453 Q1294.18 906.8 1295.36 905.458 Q1297.61 902.935 1298.49 901.198 Q1299.39 899.439 1299.39 897.749 Q1299.39 894.995 1297.45 893.259 Q1295.53 891.523 1292.42 891.523 Q1290.23 891.523 1287.77 892.286 Q1285.34 893.05 1282.56 894.601 L1282.56 889.879 Q1285.39 888.745 1287.84 888.166 Q1290.3 887.587 1292.33 887.587 Q1297.7 887.587 1300.9 890.273 Q1304.09 892.958 1304.09 897.448 Q1304.09 899.578 1303.28 901.499 Q1302.49 903.397 1300.39 905.99 Q1299.81 906.661 1296.71 909.879 Q1293.61 913.073 1287.96 918.837 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1319.35 891.291 Q1315.73 891.291 1313.91 894.856 Q1312.1 898.398 1312.1 905.527 Q1312.1 912.634 1313.91 916.198 Q1315.73 919.74 1319.35 919.74 Q1322.98 919.74 1324.79 916.198 Q1326.61 912.634 1326.61 905.527 Q1326.61 898.398 1324.79 894.856 Q1322.98 891.291 1319.35 891.291 M1319.35 887.587 Q1325.16 887.587 1328.21 892.194 Q1331.29 896.777 1331.29 905.527 Q1331.29 914.254 1328.21 918.86 Q1325.16 923.444 1319.35 923.444 Q1313.54 923.444 1310.46 918.86 Q1307.4 914.254 1307.4 905.527 Q1307.4 896.777 1310.46 892.194 Q1313.54 887.587 1319.35 887.587 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1346.36 891.291 Q1342.75 891.291 1340.92 894.856 Q1339.11 898.398 1339.11 905.527 Q1339.11 912.634 1340.92 916.198 Q1342.75 919.74 1346.36 919.74 Q1349.99 919.74 1351.8 916.198 Q1353.63 912.634 1353.63 905.527 Q1353.63 898.398 1351.8 894.856 Q1349.99 891.291 1346.36 891.291 M1346.36 887.587 Q1352.17 887.587 1355.23 892.194 Q1358.3 896.777 1358.3 905.527 Q1358.3 914.254 1355.23 918.86 Q1352.17 923.444 1346.36 923.444 Q1340.55 923.444 1337.47 918.86 Q1334.42 914.254 1334.42 905.527 Q1334.42 896.777 1337.47 892.194 Q1340.55 887.587 1346.36 887.587 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1211.08 572.588 Q1214.44 573.305 1216.31 575.574 Q1218.21 577.843 1218.21 581.176 Q1218.21 586.292 1214.69 589.092 Q1211.18 591.893 1204.69 591.893 Q1202.52 591.893 1200.2 591.454 Q1197.91 591.037 1195.46 590.18 L1195.46 585.667 Q1197.4 586.801 1199.72 587.379 Q1202.03 587.958 1204.55 587.958 Q1208.95 587.958 1211.24 586.222 Q1213.56 584.486 1213.56 581.176 Q1213.56 578.12 1211.41 576.407 Q1209.28 574.671 1205.46 574.671 L1201.43 574.671 L1201.43 570.829 L1205.64 570.829 Q1209.09 570.829 1210.92 569.463 Q1212.75 568.074 1212.75 565.481 Q1212.75 562.819 1210.85 561.407 Q1208.98 559.972 1205.46 559.972 Q1203.54 559.972 1201.34 560.389 Q1199.14 560.806 1196.5 561.685 L1196.5 557.519 Q1199.16 556.778 1201.48 556.407 Q1203.81 556.037 1205.87 556.037 Q1211.2 556.037 1214.3 558.468 Q1217.4 560.875 1217.4 564.995 Q1217.4 567.866 1215.76 569.856 Q1214.12 571.824 1211.08 572.588 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1223.28 585.342 L1228.17 585.342 L1228.17 591.222 L1223.28 591.222 L1223.28 585.342 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1234.05 587.287 L1241.68 587.287 L1241.68 560.921 L1233.37 562.588 L1233.37 558.329 L1241.64 556.662 L1246.31 556.662 L1246.31 587.287 L1253.95 587.287 L1253.95 591.222 L1234.05 591.222 L1234.05 587.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1271.87 560.736 L1260.06 579.185 L1271.87 579.185 L1271.87 560.736 M1270.64 556.662 L1276.52 556.662 L1276.52 579.185 L1281.45 579.185 L1281.45 583.074 L1276.52 583.074 L1276.52 591.222 L1271.87 591.222 L1271.87 583.074 L1256.27 583.074 L1256.27 578.56 L1270.64 556.662 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1290.55 587.287 L1306.87 587.287 L1306.87 591.222 L1284.92 591.222 L1284.92 587.287 Q1287.59 584.532 1292.17 579.903 Q1296.78 575.25 1297.96 573.907 Q1300.2 571.384 1301.08 569.648 Q1301.98 567.889 1301.98 566.199 Q1301.98 563.444 1300.04 561.708 Q1298.12 559.972 1295.02 559.972 Q1292.82 559.972 1290.36 560.736 Q1287.93 561.5 1285.16 563.051 L1285.16 558.329 Q1287.98 557.194 1290.43 556.616 Q1292.89 556.037 1294.92 556.037 Q1300.3 556.037 1303.49 558.722 Q1306.68 561.407 1306.68 565.898 Q1306.68 568.028 1305.87 569.949 Q1305.09 571.847 1302.98 574.44 Q1302.4 575.111 1299.3 578.329 Q1296.2 581.523 1290.55 587.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1315.97 587.287 L1332.29 587.287 L1332.29 591.222 L1310.34 591.222 L1310.34 587.287 Q1313 584.532 1317.59 579.903 Q1322.19 575.25 1323.37 573.907 Q1325.62 571.384 1326.5 569.648 Q1327.4 567.889 1327.4 566.199 Q1327.4 563.444 1325.46 561.708 Q1323.54 559.972 1320.43 559.972 Q1318.23 559.972 1315.78 560.736 Q1313.35 561.5 1310.57 563.051 L1310.57 558.329 Q1313.4 557.194 1315.85 556.616 Q1318.3 556.037 1320.34 556.037 Q1325.71 556.037 1328.91 558.722 Q1332.1 561.407 1332.1 565.898 Q1332.1 568.028 1331.29 569.949 Q1330.5 571.847 1328.4 574.44 Q1327.82 575.111 1324.72 578.329 Q1321.61 581.523 1315.97 587.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1337.4 556.662 L1355.76 556.662 L1355.76 560.597 L1341.68 560.597 L1341.68 569.069 Q1342.7 568.722 1343.72 568.56 Q1344.74 568.375 1345.76 568.375 Q1351.54 568.375 1354.92 571.546 Q1358.3 574.718 1358.3 580.134 Q1358.3 585.713 1354.83 588.815 Q1351.36 591.893 1345.04 591.893 Q1342.86 591.893 1340.6 591.523 Q1338.35 591.153 1335.94 590.412 L1335.94 585.713 Q1338.03 586.847 1340.25 587.403 Q1342.47 587.958 1344.95 587.958 Q1348.95 587.958 1351.29 585.852 Q1353.63 583.745 1353.63 580.134 Q1353.63 576.523 1351.29 574.417 Q1348.95 572.31 1344.95 572.31 Q1343.07 572.31 1341.2 572.727 Q1339.35 573.143 1337.4 574.023 L1337.4 556.662 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1209.49 241.038 Q1212.84 241.755 1214.72 244.024 Q1216.62 246.292 1216.62 249.626 Q1216.62 254.741 1213.1 257.542 Q1209.58 260.343 1203.1 260.343 Q1200.92 260.343 1198.61 259.903 Q1196.31 259.487 1193.86 258.63 L1193.86 254.116 Q1195.8 255.25 1198.12 255.829 Q1200.43 256.408 1202.96 256.408 Q1207.36 256.408 1209.65 254.672 Q1211.96 252.936 1211.96 249.626 Q1211.96 246.57 1209.81 244.857 Q1207.68 243.121 1203.86 243.121 L1199.83 243.121 L1199.83 239.278 L1204.05 239.278 Q1207.49 239.278 1209.32 237.913 Q1211.15 236.524 1211.15 233.931 Q1211.15 231.269 1209.25 229.857 Q1207.38 228.422 1203.86 228.422 Q1201.94 228.422 1199.74 228.839 Q1197.54 229.255 1194.9 230.135 L1194.9 225.968 Q1197.56 225.228 1199.88 224.857 Q1202.22 224.487 1204.28 224.487 Q1209.6 224.487 1212.7 226.917 Q1215.8 229.325 1215.8 233.445 Q1215.8 236.315 1214.16 238.306 Q1212.52 240.274 1209.49 241.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1221.68 253.792 L1226.57 253.792 L1226.57 259.672 L1221.68 259.672 L1221.68 253.792 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1232.45 255.737 L1240.09 255.737 L1240.09 229.371 L1231.78 231.038 L1231.78 226.778 L1240.04 225.112 L1244.72 225.112 L1244.72 255.737 L1252.36 255.737 L1252.36 259.672 L1232.45 259.672 L1232.45 255.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1270.27 229.186 L1258.47 247.635 L1270.27 247.635 L1270.27 229.186 M1269.05 225.112 L1274.92 225.112 L1274.92 247.635 L1279.86 247.635 L1279.86 251.524 L1274.92 251.524 L1274.92 259.672 L1270.27 259.672 L1270.27 251.524 L1254.67 251.524 L1254.67 247.01 L1269.05 225.112 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1288.95 255.737 L1305.27 255.737 L1305.27 259.672 L1283.33 259.672 L1283.33 255.737 Q1285.99 252.982 1290.57 248.352 Q1295.18 243.7 1296.36 242.357 Q1298.61 239.834 1299.48 238.098 Q1300.39 236.339 1300.39 234.649 Q1300.39 231.894 1298.44 230.158 Q1296.52 228.422 1293.42 228.422 Q1291.22 228.422 1288.77 229.186 Q1286.34 229.95 1283.56 231.501 L1283.56 226.778 Q1286.38 225.644 1288.84 225.065 Q1291.29 224.487 1293.33 224.487 Q1298.7 224.487 1301.89 227.172 Q1305.09 229.857 1305.09 234.348 Q1305.09 236.477 1304.28 238.399 Q1303.49 240.297 1301.38 242.889 Q1300.8 243.561 1297.7 246.778 Q1294.6 249.973 1288.95 255.737 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1310.39 225.112 L1328.74 225.112 L1328.74 229.047 L1314.67 229.047 L1314.67 237.519 Q1315.69 237.172 1316.71 237.01 Q1317.73 236.825 1318.74 236.825 Q1324.53 236.825 1327.91 239.996 Q1331.29 243.167 1331.29 248.584 Q1331.29 254.163 1327.82 257.264 Q1324.35 260.343 1318.03 260.343 Q1315.85 260.343 1313.58 259.973 Q1311.34 259.602 1308.93 258.862 L1308.93 254.163 Q1311.01 255.297 1313.23 255.852 Q1315.46 256.408 1317.93 256.408 Q1321.94 256.408 1324.28 254.301 Q1326.61 252.195 1326.61 248.584 Q1326.61 244.973 1324.28 242.866 Q1321.94 240.76 1317.93 240.76 Q1316.06 240.76 1314.18 241.176 Q1312.33 241.593 1310.39 242.473 L1310.39 225.112 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip830)\" d=\"M 0 0 M1346.36 228.19 Q1342.75 228.19 1340.92 231.755 Q1339.11 235.297 1339.11 242.426 Q1339.11 249.533 1340.92 253.098 Q1342.75 256.639 1346.36 256.639 Q1349.99 256.639 1351.8 253.098 Q1353.63 249.533 1353.63 242.426 Q1353.63 235.297 1351.8 231.755 Q1349.99 228.19 1346.36 228.19 M1346.36 224.487 Q1352.17 224.487 1355.23 229.093 Q1358.3 233.677 1358.3 242.426 Q1358.3 251.153 1355.23 255.76 Q1352.17 260.343 1346.36 260.343 Q1340.55 260.343 1337.47 255.76 Q1334.42 251.153 1334.42 242.426 Q1334.42 233.677 1337.47 229.093 Q1340.55 224.487 1346.36 224.487 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip834)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1409.77,1445.72 1419.02,1322.85 1428.27,999.797 1437.51,596.257 1446.76,261.767 1456.01,120.26 1465.26,224.155 1474.5,534.933 1483.75,937.43 1493,1282.51 \n",
+       "  1502.25,1442.32 1511.49,1357.67 1520.74,1059.89 1529.99,659.278 1539.24,304.161 1548.48,125.998 1557.73,190.7 1566.98,474.255 1576.23,871.647 1585.48,1235.76 \n",
+       "  1594.72,1431.83 1603.97,1387.29 1613.22,1118.63 1622.47,725.193 1631.71,352.43 1640.96,138.102 1650.21,161.346 1659.46,413.472 1668.7,801.227 1677.95,1181.3 \n",
+       "  1687.2,1413.27 1696.45,1411.46 1705.7,1176.55 1714.94,795.19 1724.19,408.051 1733.44,157.847 1742.69,136.714 1751.93,352.308 1761.18,725.042 1770.43,1117.49 \n",
+       "  1779.68,1385.03 1788.92,1429.14 1798.17,1233.57 1807.42,870.255 1816.67,472.769 1825.92,187.159 1835.16,118.251 1844.41,291.187 1853.66,642.276 1862.91,1042.48 \n",
+       "  1872.15,1344.85 1881.4,1438.4 1890.65,1288.82 1899.9,950.92 1909.14,548.423 1918.39,228.614 1927.64,108.38 1936.89,231.499 1946.14,552.728 1955.38,954.465 \n",
+       "  1964.63,1289.81 1973.88,1436.23 1983.13,1340.27 1992.37,1036.91 2001.62,636.688 2010.87,285.343 2020.12,110.644 2029.36,175.941 2038.61,457.215 2047.86,851.959 \n",
+       "  2057.11,1216.55 2066.36,1418.47 2075.6,1384.39 2084.85,1126.65 2094.1,738.629 2103.35,360.804 2112.59,129.782 2121.84,128.884 2131.09,358.134 2140.34,734.398 \n",
+       "  2149.58,1121.57 2158.83,1379.76 2168.08,1415.8 2177.33,1216.67 2186.58,854.034 2195.82,458.311 2205.07,171.621 2214.32,96.7104 2223.57,260.142 2232.81,602.927 \n",
+       "  2242.06,1001.86 2251.31,1313.82 2260.56,1426.99 2269.8,1300.85 2279.05,980.453 2288.3,580.158 2297.55,242.641 2306.79,87.9763 2316.04,170.905 2325.29,461.512 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"\n",
+       "M2181.66 216.178 L2320.41 216.178 L2320.41 95.2176 L2181.66 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2181.66,216.178 2320.41,216.178 2320.41,95.2176 2181.66,95.2176 2181.66,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip830)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2192.45,155.698 2257.14,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip830)\" d=\"M 0 0 M2296.99 149.584 Q2296.99 150.989 2296.45 153.449 Q2295.94 155.908 2295.52 157.079 Q2294.35 160.194 2292 162.818 Q2290.72 164.27 2289.31 165.324 Q2287.93 166.354 2286.9 166.87 Q2285.87 167.362 2284.65 167.619 Q2283.43 167.9 2282.87 167.924 Q2282.31 167.971 2281.51 167.971 L2279.68 175.114 Q2279.31 176.965 2279.12 177.082 Q2279.07 177.176 2278.96 177.223 Q2278.86 177.269 2278.77 177.269 L2278.68 177.269 Q2278.42 177.269 2278.28 177.152 Q2278.14 177.035 2278.11 176.895 L2278.11 176.777 Q2278.11 176.45 2279.21 172.234 Q2279.78 170.079 2280.27 167.854 Q2276.52 167.619 2274.2 165.956 Q2271.91 164.293 2271.91 161.061 Q2271.91 159.07 2274.23 152.957 Q2275.33 150.029 2275.33 148.811 Q2275.33 148.272 2275.21 147.944 Q2275.09 147.593 2274.86 147.476 Q2274.62 147.335 2274.48 147.312 Q2274.37 147.289 2274.13 147.289 Q2272.75 147.289 2271.46 148.671 Q2270.17 150.052 2269.28 153.238 Q2269.1 153.823 2268.98 153.964 Q2268.86 154.105 2268.51 154.105 Q2267.93 154.081 2267.93 153.613 Q2267.93 153.425 2268.14 152.699 Q2268.35 151.95 2268.84 150.849 Q2269.35 149.725 2270.06 148.717 Q2270.76 147.687 2271.86 146.961 Q2272.98 146.235 2274.27 146.235 Q2276.03 146.235 2277.11 147.382 Q2278.21 148.507 2278.21 150.17 Q2278.21 150.498 2278.14 150.872 Q2278.07 151.247 2278 151.458 Q2277.95 151.669 2277.81 152.067 Q2277.69 152.442 2277.67 152.512 Q2276.47 155.604 2275.87 157.618 Q2275.26 159.609 2275.16 160.194 Q2275.09 160.757 2275.09 161.436 Q2275.09 166.167 2280.55 166.8 L2288.51 135.109 Q2288.65 134.453 2288.77 134.313 Q2288.89 134.149 2289.24 134.149 Q2289.8 134.149 2289.8 134.664 Q2289.8 134.828 2289.66 135.39 L2281.74 166.893 Q2282.49 166.893 2282.96 166.87 Q2283.43 166.846 2284.41 166.636 Q2285.42 166.401 2286.26 165.98 Q2287.13 165.558 2288.35 164.715 Q2289.57 163.848 2290.76 162.63 Q2292.26 161.108 2293.6 158.555 Q2294.93 156.002 2294.93 153.894 Q2294.93 151.528 2293.22 149.818 Q2292.96 149.584 2292.82 149.443 Q2292.71 149.303 2292.59 149.069 Q2292.5 148.835 2292.5 148.53 Q2292.5 147.734 2293.24 146.984 Q2293.99 146.235 2294.88 146.235 Q2295.68 146.235 2296.34 147.008 Q2296.99 147.78 2296.99 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip870\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip871\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip872\">\n",
+       "    <rect x=\"1382\" y=\"47\" width=\"971\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"\n",
+       "M112.177 1486.45 L1095.83 1486.45 L1095.83 47.2441 L112.177 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip873\">\n",
+       "    <rect x=\"112\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  140.017,1486.45 140.017,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  325.612,1486.45 325.612,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  511.208,1486.45 511.208,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  696.804,1486.45 696.804,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  882.4,1486.45 882.4,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1068,1486.45 1068,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1445.72 1095.83,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,1217.86 1095.83,1217.86 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,990.011 1095.83,990.011 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,762.159 1095.83,762.159 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,534.307 1095.83,534.307 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,306.455 1095.83,306.455 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip873)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  112.177,78.603 1095.83,78.603 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 1095.83,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1486.45 112.177,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  140.017,1486.45 140.017,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  325.612,1486.45 325.612,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  511.208,1486.45 511.208,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  696.804,1486.45 696.804,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  882.4,1486.45 882.4,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1068,1486.45 1068,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1445.72 123.981,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,1217.86 123.981,1217.86 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,990.011 123.981,990.011 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,762.159 123.981,762.159 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,534.307 123.981,534.307 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,306.455 123.981,306.455 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  112.177,78.603 123.981,78.603 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"M 0 0 M140.017 1508.44 Q136.405 1508.44 134.577 1512 Q132.771 1515.55 132.771 1522.67 Q132.771 1529.78 134.577 1533.35 Q136.405 1536.89 140.017 1536.89 Q143.651 1536.89 145.456 1533.35 Q147.285 1529.78 147.285 1522.67 Q147.285 1515.55 145.456 1512 Q143.651 1508.44 140.017 1508.44 M140.017 1504.73 Q145.827 1504.73 148.882 1509.34 Q151.961 1513.92 151.961 1522.67 Q151.961 1531.4 148.882 1536.01 Q145.827 1540.59 140.017 1540.59 Q134.206 1540.59 131.128 1536.01 Q128.072 1531.4 128.072 1522.67 Q128.072 1513.92 131.128 1509.34 Q134.206 1504.73 140.017 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M315.994 1535.98 L323.633 1535.98 L323.633 1509.62 L315.323 1511.29 L315.323 1507.03 L323.587 1505.36 L328.263 1505.36 L328.263 1535.98 L335.902 1535.98 L335.902 1539.92 L315.994 1539.92 L315.994 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M505.861 1535.98 L522.18 1535.98 L522.18 1539.92 L500.236 1539.92 L500.236 1535.98 Q502.898 1533.23 507.481 1528.6 Q512.088 1523.95 513.268 1522.61 Q515.514 1520.08 516.393 1518.35 Q517.296 1516.59 517.296 1514.9 Q517.296 1512.14 515.352 1510.41 Q513.43 1508.67 510.329 1508.67 Q508.129 1508.67 505.676 1509.43 Q503.245 1510.2 500.467 1511.75 L500.467 1507.03 Q503.292 1505.89 505.745 1505.31 Q508.199 1504.73 510.236 1504.73 Q515.606 1504.73 518.801 1507.42 Q521.995 1510.11 521.995 1514.6 Q521.995 1516.73 521.185 1518.65 Q520.398 1520.54 518.291 1523.14 Q517.713 1523.81 514.611 1527.03 Q511.509 1530.22 505.861 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M701.052 1521.29 Q704.408 1522 706.283 1524.27 Q708.181 1526.54 708.181 1529.87 Q708.181 1534.99 704.663 1537.79 Q701.144 1540.59 694.663 1540.59 Q692.487 1540.59 690.172 1540.15 Q687.88 1539.73 685.427 1538.88 L685.427 1534.36 Q687.371 1535.5 689.686 1536.08 Q692.001 1536.66 694.524 1536.66 Q698.922 1536.66 701.214 1534.92 Q703.528 1533.18 703.528 1529.87 Q703.528 1526.82 701.376 1525.11 Q699.246 1523.37 695.427 1523.37 L691.399 1523.37 L691.399 1519.53 L695.612 1519.53 Q699.061 1519.53 700.89 1518.16 Q702.718 1516.77 702.718 1514.18 Q702.718 1511.52 700.82 1510.11 Q698.945 1508.67 695.427 1508.67 Q693.505 1508.67 691.306 1509.09 Q689.107 1509.5 686.468 1510.38 L686.468 1506.22 Q689.13 1505.48 691.445 1505.11 Q693.783 1504.73 695.843 1504.73 Q701.167 1504.73 704.269 1507.17 Q707.371 1509.57 707.371 1513.69 Q707.371 1516.56 705.728 1518.55 Q704.084 1520.52 701.052 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M885.409 1509.43 L873.603 1527.88 L885.409 1527.88 L885.409 1509.43 M884.182 1505.36 L890.062 1505.36 L890.062 1527.88 L894.992 1527.88 L894.992 1531.77 L890.062 1531.77 L890.062 1539.92 L885.409 1539.92 L885.409 1531.77 L869.807 1531.77 L869.807 1527.26 L884.182 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1058.27 1505.36 L1076.63 1505.36 L1076.63 1509.3 L1062.56 1509.3 L1062.56 1517.77 Q1063.57 1517.42 1064.59 1517.26 Q1065.61 1517.07 1066.63 1517.07 Q1072.42 1517.07 1075.8 1520.24 Q1079.18 1523.42 1079.18 1528.83 Q1079.18 1534.41 1075.7 1537.51 Q1072.23 1540.59 1065.91 1540.59 Q1063.74 1540.59 1061.47 1540.22 Q1059.22 1539.85 1056.82 1539.11 L1056.82 1534.41 Q1058.9 1535.54 1061.12 1536.1 Q1063.34 1536.66 1065.82 1536.66 Q1069.82 1536.66 1072.16 1534.55 Q1074.5 1532.44 1074.5 1528.83 Q1074.5 1525.22 1072.16 1523.11 Q1069.82 1521.01 1065.82 1521.01 Q1063.94 1521.01 1062.07 1521.42 Q1060.22 1521.84 1058.27 1522.72 L1058.27 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M76.2328 1431.51 Q72.6217 1431.51 70.793 1435.08 Q68.9875 1438.62 68.9875 1445.75 Q68.9875 1452.86 70.793 1456.42 Q72.6217 1459.96 76.2328 1459.96 Q79.867 1459.96 81.6726 1456.42 Q83.5013 1452.86 83.5013 1445.75 Q83.5013 1438.62 81.6726 1435.08 Q79.867 1431.51 76.2328 1431.51 M76.2328 1427.81 Q82.0429 1427.81 85.0985 1432.42 Q88.1772 1437 88.1772 1445.75 Q88.1772 1454.48 85.0985 1459.08 Q82.0429 1463.67 76.2328 1463.67 Q70.4226 1463.67 67.344 1459.08 Q64.2884 1454.48 64.2884 1445.75 Q64.2884 1437 67.344 1432.42 Q70.4226 1427.81 76.2328 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M68.2699 1231.21 L75.9087 1231.21 L75.9087 1204.84 L67.5986 1206.51 L67.5986 1202.25 L75.8624 1200.58 L80.5383 1200.58 L80.5383 1231.21 L88.1772 1231.21 L88.1772 1235.14 L68.2699 1235.14 L68.2699 1231.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M71.8578 1003.36 L88.1772 1003.36 L88.1772 1007.29 L66.2328 1007.29 L66.2328 1003.36 Q68.8949 1000.6 73.4782 995.972 Q78.0846 991.319 79.2652 989.977 Q81.5105 987.454 82.3902 985.718 Q83.2929 983.958 83.2929 982.268 Q83.2929 979.514 81.3485 977.778 Q79.4272 976.042 76.3254 976.042 Q74.1263 976.042 71.6726 976.806 Q69.2421 977.569 66.4643 979.12 L66.4643 974.398 Q69.2884 973.264 71.7421 972.685 Q74.1958 972.106 76.2328 972.106 Q81.6031 972.106 84.7976 974.792 Q87.992 977.477 87.992 981.968 Q87.992 984.097 87.1818 986.018 Q86.3948 987.917 84.2883 990.509 Q83.7096 991.18 80.6078 994.398 Q77.5059 997.592 71.8578 1003.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M81.0476 760.805 Q84.404 761.523 86.279 763.791 Q88.1772 766.06 88.1772 769.393 Q88.1772 774.509 84.6587 777.31 Q81.1402 780.111 74.6587 780.111 Q72.4828 780.111 70.168 779.671 Q67.8764 779.254 65.4227 778.398 L65.4227 773.884 Q67.3671 775.018 69.6819 775.597 Q71.9967 776.175 74.5198 776.175 Q78.918 776.175 81.2096 774.439 Q83.5244 772.703 83.5244 769.393 Q83.5244 766.338 81.3717 764.625 Q79.242 762.889 75.4226 762.889 L71.3949 762.889 L71.3949 759.046 L75.6078 759.046 Q79.0569 759.046 80.8855 757.68 Q82.7142 756.291 82.7142 753.699 Q82.7142 751.037 80.8161 749.625 Q78.9411 748.19 75.4226 748.19 Q73.5013 748.19 71.3023 748.606 Q69.1032 749.023 66.4643 749.902 L66.4643 745.736 Q69.1264 744.995 71.4412 744.625 Q73.7791 744.254 75.8393 744.254 Q81.1633 744.254 84.2652 746.685 Q87.367 749.092 87.367 753.213 Q87.367 756.083 85.7235 758.074 Q84.08 760.041 81.0476 760.805 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M78.5939 521.101 L66.7884 539.55 L78.5939 539.55 L78.5939 521.101 M77.367 517.027 L83.2466 517.027 L83.2466 539.55 L88.1772 539.55 L88.1772 543.439 L83.2466 543.439 L83.2466 551.587 L78.5939 551.587 L78.5939 543.439 L62.9921 543.439 L62.9921 538.925 L77.367 517.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M67.2745 289.175 L85.6309 289.175 L85.6309 293.11 L71.5569 293.11 L71.5569 301.582 Q72.5754 301.235 73.5939 301.073 Q74.6124 300.888 75.6309 300.888 Q81.418 300.888 84.7976 304.059 Q88.1772 307.231 88.1772 312.647 Q88.1772 318.226 84.705 321.328 Q81.2328 324.406 74.9134 324.406 Q72.7374 324.406 70.4689 324.036 Q68.2236 323.666 65.8162 322.925 L65.8162 318.226 Q67.8995 319.36 70.1217 319.916 Q72.3439 320.471 74.8208 320.471 Q78.8254 320.471 81.1633 318.365 Q83.5013 316.258 83.5013 312.647 Q83.5013 309.036 81.1633 306.93 Q78.8254 304.823 74.8208 304.823 Q72.9458 304.823 71.0708 305.24 Q69.2189 305.657 67.2745 306.536 L67.2745 289.175 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M76.6495 76.7396 Q73.5013 76.7396 71.6495 78.8924 Q69.8208 81.0452 69.8208 84.7951 Q69.8208 88.522 71.6495 90.6979 Q73.5013 92.8507 76.6495 92.8507 Q79.7976 92.8507 81.6263 90.6979 Q83.4781 88.522 83.4781 84.7951 Q83.4781 81.0452 81.6263 78.8924 Q79.7976 76.7396 76.6495 76.7396 M85.9318 62.0869 L85.9318 66.3462 Q84.1726 65.5128 82.367 65.073 Q80.5846 64.6332 78.8254 64.6332 Q74.1958 64.6332 71.7421 67.7582 Q69.3115 70.8832 68.9643 77.2026 Q70.33 75.1887 72.3902 74.1239 Q74.4504 73.0359 76.9272 73.0359 Q82.1355 73.0359 85.1448 76.2072 Q88.1772 79.3554 88.1772 84.7951 Q88.1772 90.1192 85.029 93.3368 Q81.8809 96.5543 76.6495 96.5543 Q70.6541 96.5543 67.4828 91.971 Q64.3116 87.3646 64.3116 78.6378 Q64.3116 70.4434 68.2004 65.5823 Q72.0893 60.698 78.6402 60.698 Q80.3994 60.698 82.1818 61.0453 Q83.9874 61.3925 85.9318 62.0869 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip873)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  140.017,1445.72 149.39,1445.71 158.764,1445.68 168.137,1445.58 177.511,1445.4 186.884,1445.11 196.258,1444.66 205.631,1444.05 215.005,1443.23 224.378,1442.19 \n",
+       "  233.752,1440.89 243.125,1439.3 252.499,1437.42 261.872,1435.2 271.246,1432.62 280.619,1429.67 289.993,1426.32 299.366,1422.55 308.74,1418.34 318.114,1413.67 \n",
+       "  327.487,1408.53 336.861,1402.89 346.234,1396.75 355.608,1390.08 364.981,1382.88 374.355,1375.14 383.728,1366.85 393.102,1357.99 402.475,1348.56 411.849,1338.56 \n",
+       "  421.222,1327.99 430.596,1316.83 439.969,1305.09 449.343,1292.77 458.716,1279.87 468.09,1266.4 477.463,1252.36 486.837,1237.75 496.211,1222.59 505.584,1206.88 \n",
+       "  514.958,1190.64 524.331,1173.87 533.705,1156.6 543.078,1138.82 552.452,1120.57 561.825,1101.86 571.199,1082.7 580.572,1063.12 589.946,1043.14 599.319,1022.77 \n",
+       "  608.693,1002.05 618.066,980.985 627.44,959.612 636.813,937.952 646.187,916.032 655.56,893.878 664.934,871.517 674.307,848.978 683.681,826.287 693.055,803.474 \n",
+       "  702.428,780.567 711.802,757.596 721.175,734.589 730.549,711.576 739.922,688.587 749.296,665.65 758.669,642.796 768.043,620.052 777.416,597.447 786.79,575.01 \n",
+       "  796.163,552.768 805.537,530.75 814.91,508.981 824.284,487.488 833.657,466.297 843.031,445.431 852.404,424.916 861.778,404.773 871.152,385.026 880.525,365.694 \n",
+       "  889.899,346.798 899.272,328.357 908.646,310.389 918.019,292.909 927.393,275.933 936.766,259.476 946.14,243.549 955.513,228.164 964.887,213.331 974.26,199.058 \n",
+       "  983.634,185.353 993.007,172.22 1002.38,159.665 1011.75,147.69 1021.13,136.295 1030.5,125.482 1039.87,115.247 1049.25,105.588 1058.62,96.4996 1068,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"\n",
+       "M925.455 216.178 L1063.05 216.178 L1063.05 95.2176 L925.455 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  925.455,216.178 1063.05,216.178 1063.05,95.2176 925.455,95.2176 925.455,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  936.385,155.698 1001.96,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"M 0 0 M1038.05 154.854 Q1038.05 157.22 1036.83 159.585 Q1035.61 161.951 1033.62 163.778 Q1031.63 165.582 1028.91 166.753 Q1026.2 167.924 1023.36 168.017 L1021.53 175.161 Q1021.18 176.895 1021 177.082 Q1020.81 177.269 1020.53 177.269 Q1019.94 177.269 1019.94 176.731 Q1019.94 176.567 1021 172.515 L1022.12 168.017 Q1017.86 167.783 1015.37 165.324 Q1012.89 162.865 1012.89 159.328 Q1012.89 156.939 1014.11 154.573 Q1015.35 152.184 1017.34 150.38 Q1019.36 148.577 1022.07 147.429 Q1024.79 146.281 1027.58 146.188 L1030.36 135.109 Q1030.51 134.477 1030.62 134.313 Q1030.74 134.149 1031.09 134.149 Q1031.35 134.149 1031.49 134.266 Q1031.63 134.383 1031.63 134.5 L1031.65 134.617 L1031.51 135.296 L1028.82 146.188 Q1031.21 146.352 1033.06 147.195 Q1034.91 148.038 1035.96 149.303 Q1037.02 150.544 1037.53 151.95 Q1038.05 153.355 1038.05 154.854 M1027.3 147.242 Q1024.72 147.476 1022.54 148.741 Q1020.36 150.006 1018.96 151.879 Q1017.55 153.73 1016.78 155.955 Q1016.01 158.157 1016.01 160.335 Q1016.01 162.045 1016.57 163.356 Q1017.15 164.668 1018.11 165.418 Q1019.07 166.144 1020.13 166.542 Q1021.21 166.917 1022.35 166.963 L1027.3 147.242 M1034.91 153.847 Q1034.91 150.802 1033.15 149.092 Q1031.4 147.382 1028.54 147.242 L1023.6 166.963 Q1025.68 166.8 1027.51 165.933 Q1029.36 165.043 1030.69 163.731 Q1032.03 162.396 1032.99 160.757 Q1033.95 159.094 1034.42 157.337 Q1034.91 155.557 1034.91 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"\n",
+       "M1369.1 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1369.1 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip874\">\n",
+       "    <rect x=\"1369\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1396.94,1486.45 1396.94,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1582.53,1486.45 1582.53,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1768.13,1486.45 1768.13,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1953.72,1486.45 1953.72,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2139.32,1486.45 2139.32,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2324.92,1486.45 2324.92,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.1,1447.57 2352.76,1447.57 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.1,1134.87 2352.76,1134.87 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.1,822.162 2352.76,822.162 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.1,509.456 2352.76,509.456 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip874)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1369.1,196.751 2352.76,196.751 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,1486.45 1369.1,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.94,1486.45 1396.94,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1582.53,1486.45 1582.53,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1768.13,1486.45 1768.13,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1953.72,1486.45 1953.72,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2139.32,1486.45 2139.32,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2324.92,1486.45 2324.92,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,1447.57 1380.9,1447.57 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,1134.87 1380.9,1134.87 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,822.162 1380.9,822.162 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,509.456 1380.9,509.456 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1369.1,196.751 1380.9,196.751 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"M 0 0 M1396.94 1508.44 Q1393.33 1508.44 1391.5 1512 Q1389.69 1515.55 1389.69 1522.67 Q1389.69 1529.78 1391.5 1533.35 Q1393.33 1536.89 1396.94 1536.89 Q1400.57 1536.89 1402.38 1533.35 Q1404.21 1529.78 1404.21 1522.67 Q1404.21 1515.55 1402.38 1512 Q1400.57 1508.44 1396.94 1508.44 M1396.94 1504.73 Q1402.75 1504.73 1405.8 1509.34 Q1408.88 1513.92 1408.88 1522.67 Q1408.88 1531.4 1405.8 1536.01 Q1402.75 1540.59 1396.94 1540.59 Q1391.13 1540.59 1388.05 1536.01 Q1384.99 1531.4 1384.99 1522.67 Q1384.99 1513.92 1388.05 1509.34 Q1391.13 1504.73 1396.94 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1572.92 1535.98 L1580.55 1535.98 L1580.55 1509.62 L1572.24 1511.29 L1572.24 1507.03 L1580.51 1505.36 L1585.18 1505.36 L1585.18 1535.98 L1592.82 1535.98 L1592.82 1539.92 L1572.92 1539.92 L1572.92 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1762.78 1535.98 L1779.1 1535.98 L1779.1 1539.92 L1757.16 1539.92 L1757.16 1535.98 Q1759.82 1533.23 1764.4 1528.6 Q1769.01 1523.95 1770.19 1522.61 Q1772.43 1520.08 1773.31 1518.35 Q1774.22 1516.59 1774.22 1514.9 Q1774.22 1512.14 1772.27 1510.41 Q1770.35 1508.67 1767.25 1508.67 Q1765.05 1508.67 1762.6 1509.43 Q1760.17 1510.2 1757.39 1511.75 L1757.39 1507.03 Q1760.21 1505.89 1762.67 1505.31 Q1765.12 1504.73 1767.16 1504.73 Q1772.53 1504.73 1775.72 1507.42 Q1778.92 1510.11 1778.92 1514.6 Q1778.92 1516.73 1778.11 1518.65 Q1777.32 1520.54 1775.21 1523.14 Q1774.63 1523.81 1771.53 1527.03 Q1768.43 1530.22 1762.78 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1957.97 1521.29 Q1961.33 1522 1963.2 1524.27 Q1965.1 1526.54 1965.1 1529.87 Q1965.1 1534.99 1961.58 1537.79 Q1958.07 1540.59 1951.58 1540.59 Q1949.41 1540.59 1947.09 1540.15 Q1944.8 1539.73 1942.35 1538.88 L1942.35 1534.36 Q1944.29 1535.5 1946.61 1536.08 Q1948.92 1536.66 1951.44 1536.66 Q1955.84 1536.66 1958.13 1534.92 Q1960.45 1533.18 1960.45 1529.87 Q1960.45 1526.82 1958.3 1525.11 Q1956.17 1523.37 1952.35 1523.37 L1948.32 1523.37 L1948.32 1519.53 L1952.53 1519.53 Q1955.98 1519.53 1957.81 1518.16 Q1959.64 1516.77 1959.64 1514.18 Q1959.64 1511.52 1957.74 1510.11 Q1955.87 1508.67 1952.35 1508.67 Q1950.43 1508.67 1948.23 1509.09 Q1946.03 1509.5 1943.39 1510.38 L1943.39 1506.22 Q1946.05 1505.48 1948.37 1505.11 Q1950.7 1504.73 1952.76 1504.73 Q1958.09 1504.73 1961.19 1507.17 Q1964.29 1509.57 1964.29 1513.69 Q1964.29 1516.56 1962.65 1518.55 Q1961 1520.52 1957.97 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M2142.33 1509.43 L2130.52 1527.88 L2142.33 1527.88 L2142.33 1509.43 M2141.1 1505.36 L2146.98 1505.36 L2146.98 1527.88 L2151.91 1527.88 L2151.91 1531.77 L2146.98 1531.77 L2146.98 1539.92 L2142.33 1539.92 L2142.33 1531.77 L2126.73 1531.77 L2126.73 1527.26 L2141.1 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M2315.19 1505.36 L2333.55 1505.36 L2333.55 1509.3 L2319.48 1509.3 L2319.48 1517.77 Q2320.5 1517.42 2321.51 1517.26 Q2322.53 1517.07 2323.55 1517.07 Q2329.34 1517.07 2332.72 1520.24 Q2336.1 1523.42 2336.1 1528.83 Q2336.1 1534.41 2332.62 1537.51 Q2329.15 1540.59 2322.83 1540.59 Q2320.66 1540.59 2318.39 1540.22 Q2316.14 1539.85 2313.74 1539.11 L2313.74 1534.41 Q2315.82 1535.54 2318.04 1536.1 Q2320.26 1536.66 2322.74 1536.66 Q2326.75 1536.66 2329.08 1534.55 Q2331.42 1532.44 2331.42 1528.83 Q2331.42 1525.22 2329.08 1523.11 Q2326.75 1521.01 2322.74 1521.01 Q2320.87 1521.01 2318.99 1521.42 Q2317.14 1521.84 2315.19 1522.72 L2315.19 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1221.7 1446.22 Q1225.05 1446.94 1226.93 1449.21 Q1228.83 1451.47 1228.83 1454.81 Q1228.83 1459.92 1225.31 1462.72 Q1221.79 1465.53 1215.31 1465.53 Q1213.13 1465.53 1210.82 1465.09 Q1208.52 1464.67 1206.07 1463.81 L1206.07 1459.3 Q1208.02 1460.43 1210.33 1461.01 Q1212.65 1461.59 1215.17 1461.59 Q1219.57 1461.59 1221.86 1459.85 Q1224.17 1458.12 1224.17 1454.81 Q1224.17 1451.75 1222.02 1450.04 Q1219.89 1448.3 1216.07 1448.3 L1212.04 1448.3 L1212.04 1444.46 L1216.26 1444.46 Q1219.71 1444.46 1221.53 1443.1 Q1223.36 1441.71 1223.36 1439.11 Q1223.36 1436.45 1221.46 1435.04 Q1219.59 1433.6 1216.07 1433.6 Q1214.15 1433.6 1211.95 1434.02 Q1209.75 1434.44 1207.11 1435.32 L1207.11 1431.15 Q1209.77 1430.41 1212.09 1430.04 Q1214.43 1429.67 1216.49 1429.67 Q1221.81 1429.67 1224.91 1432.1 Q1228.02 1434.51 1228.02 1438.63 Q1228.02 1441.5 1226.37 1443.49 Q1224.73 1445.46 1221.7 1446.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1233.9 1458.97 L1238.78 1458.97 L1238.78 1464.85 L1233.9 1464.85 L1233.9 1458.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1244.66 1460.92 L1252.3 1460.92 L1252.3 1434.55 L1243.99 1436.22 L1243.99 1431.96 L1252.25 1430.29 L1256.93 1430.29 L1256.93 1460.92 L1264.57 1460.92 L1264.57 1464.85 L1244.66 1464.85 L1244.66 1460.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1282.48 1434.37 L1270.68 1452.82 L1282.48 1452.82 L1282.48 1434.37 M1281.26 1430.29 L1287.14 1430.29 L1287.14 1452.82 L1292.07 1452.82 L1292.07 1456.71 L1287.14 1456.71 L1287.14 1464.85 L1282.48 1464.85 L1282.48 1456.71 L1266.88 1456.71 L1266.88 1452.19 L1281.26 1430.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1307.14 1433.37 Q1303.52 1433.37 1301.7 1436.94 Q1299.89 1440.48 1299.89 1447.61 Q1299.89 1454.72 1301.7 1458.28 Q1303.52 1461.82 1307.14 1461.82 Q1310.77 1461.82 1312.58 1458.28 Q1314.4 1454.72 1314.4 1447.61 Q1314.4 1440.48 1312.58 1436.94 Q1310.77 1433.37 1307.14 1433.37 M1307.14 1429.67 Q1312.95 1429.67 1316 1434.28 Q1319.08 1438.86 1319.08 1447.61 Q1319.08 1456.34 1316 1460.94 Q1312.95 1465.53 1307.14 1465.53 Q1301.33 1465.53 1298.25 1460.94 Q1295.19 1456.34 1295.19 1447.61 Q1295.19 1438.86 1298.25 1434.28 Q1301.33 1429.67 1307.14 1429.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1324.2 1430.29 L1342.55 1430.29 L1342.55 1434.23 L1328.48 1434.23 L1328.48 1442.7 Q1329.5 1442.35 1330.51 1442.19 Q1331.53 1442.01 1332.55 1442.01 Q1338.34 1442.01 1341.72 1445.18 Q1345.1 1448.35 1345.1 1453.77 Q1345.1 1459.35 1341.63 1462.45 Q1338.15 1465.53 1331.83 1465.53 Q1329.66 1465.53 1327.39 1465.16 Q1325.14 1464.78 1322.74 1464.04 L1322.74 1459.35 Q1324.82 1460.48 1327.04 1461.03 Q1329.26 1461.59 1331.74 1461.59 Q1335.75 1461.59 1338.08 1459.48 Q1340.42 1457.38 1340.42 1453.77 Q1340.42 1450.16 1338.08 1448.05 Q1335.75 1445.94 1331.74 1445.94 Q1329.87 1445.94 1327.99 1446.36 Q1326.14 1446.78 1324.2 1447.66 L1324.2 1430.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1221.93 1133.51 Q1225.28 1134.23 1227.16 1136.5 Q1229.06 1138.77 1229.06 1142.1 Q1229.06 1147.22 1225.54 1150.02 Q1222.02 1152.82 1215.54 1152.82 Q1213.36 1152.82 1211.05 1152.38 Q1208.76 1151.96 1206.3 1151.11 L1206.3 1146.59 Q1208.25 1147.73 1210.56 1148.31 Q1212.88 1148.88 1215.4 1148.88 Q1219.8 1148.88 1222.09 1147.15 Q1224.4 1145.41 1224.4 1142.1 Q1224.4 1139.05 1222.25 1137.33 Q1220.12 1135.6 1216.3 1135.6 L1212.27 1135.6 L1212.27 1131.75 L1216.49 1131.75 Q1219.94 1131.75 1221.77 1130.39 Q1223.59 1129 1223.59 1126.41 Q1223.59 1123.75 1221.7 1122.33 Q1219.82 1120.9 1216.3 1120.9 Q1214.38 1120.9 1212.18 1121.32 Q1209.98 1121.73 1207.34 1122.61 L1207.34 1118.44 Q1210.01 1117.7 1212.32 1117.33 Q1214.66 1116.96 1216.72 1116.96 Q1222.04 1116.96 1225.15 1119.39 Q1228.25 1121.8 1228.25 1125.92 Q1228.25 1128.79 1226.6 1130.78 Q1224.96 1132.75 1221.93 1133.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1234.13 1146.27 L1239.01 1146.27 L1239.01 1152.15 L1234.13 1152.15 L1234.13 1146.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1244.89 1148.21 L1252.53 1148.21 L1252.53 1121.85 L1244.22 1123.51 L1244.22 1119.25 L1252.48 1117.59 L1257.16 1117.59 L1257.16 1148.21 L1264.8 1148.21 L1264.8 1152.15 L1244.89 1152.15 L1244.89 1148.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1282.71 1121.66 L1270.91 1140.11 L1282.71 1140.11 L1282.71 1121.66 M1281.49 1117.59 L1287.37 1117.59 L1287.37 1140.11 L1292.3 1140.11 L1292.3 1144 L1287.37 1144 L1287.37 1152.15 L1282.71 1152.15 L1282.71 1144 L1267.11 1144 L1267.11 1139.49 L1281.49 1117.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1298.18 1148.21 L1305.82 1148.21 L1305.82 1121.85 L1297.51 1123.51 L1297.51 1119.25 L1305.77 1117.59 L1310.45 1117.59 L1310.45 1148.21 L1318.08 1148.21 L1318.08 1152.15 L1298.18 1152.15 L1298.18 1148.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1333.15 1120.67 Q1329.54 1120.67 1327.71 1124.23 Q1325.91 1127.77 1325.91 1134.9 Q1325.91 1142.01 1327.71 1145.57 Q1329.54 1149.12 1333.15 1149.12 Q1336.79 1149.12 1338.59 1145.57 Q1340.42 1142.01 1340.42 1134.9 Q1340.42 1127.77 1338.59 1124.23 Q1336.79 1120.67 1333.15 1120.67 M1333.15 1116.96 Q1338.96 1116.96 1342.02 1121.57 Q1345.1 1126.15 1345.1 1134.9 Q1345.1 1143.63 1342.02 1148.24 Q1338.96 1152.82 1333.15 1152.82 Q1327.34 1152.82 1324.26 1148.24 Q1321.21 1143.63 1321.21 1134.9 Q1321.21 1126.15 1324.26 1121.57 Q1327.34 1116.96 1333.15 1116.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1222.92 820.808 Q1226.28 821.526 1228.15 823.794 Q1230.05 826.063 1230.05 829.396 Q1230.05 834.512 1226.53 837.313 Q1223.02 840.114 1216.53 840.114 Q1214.36 840.114 1212.04 839.674 Q1209.75 839.257 1207.3 838.401 L1207.3 833.887 Q1209.24 835.021 1211.56 835.6 Q1213.87 836.179 1216.4 836.179 Q1220.79 836.179 1223.08 834.442 Q1225.4 832.706 1225.4 829.396 Q1225.4 826.341 1223.25 824.628 Q1221.12 822.892 1217.3 822.892 L1213.27 822.892 L1213.27 819.049 L1217.48 819.049 Q1220.93 819.049 1222.76 817.683 Q1224.59 816.294 1224.59 813.702 Q1224.59 811.04 1222.69 809.628 Q1220.82 808.193 1217.3 808.193 Q1215.38 808.193 1213.18 808.609 Q1210.98 809.026 1208.34 809.906 L1208.34 805.739 Q1211 804.998 1213.32 804.628 Q1215.65 804.257 1217.71 804.257 Q1223.04 804.257 1226.14 806.688 Q1229.24 809.095 1229.24 813.216 Q1229.24 816.086 1227.6 818.077 Q1225.96 820.044 1222.92 820.808 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1235.12 833.563 L1240.01 833.563 L1240.01 839.442 L1235.12 839.442 L1235.12 833.563 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1245.89 835.507 L1253.52 835.507 L1253.52 809.142 L1245.21 810.808 L1245.21 806.549 L1253.48 804.882 L1258.15 804.882 L1258.15 835.507 L1265.79 835.507 L1265.79 839.442 L1245.89 839.442 L1245.89 835.507 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1283.71 808.956 L1271.9 827.405 L1283.71 827.405 L1283.71 808.956 M1282.48 804.882 L1288.36 804.882 L1288.36 827.405 L1293.29 827.405 L1293.29 831.294 L1288.36 831.294 L1288.36 839.442 L1283.71 839.442 L1283.71 831.294 L1268.11 831.294 L1268.11 826.78 L1282.48 804.882 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1299.17 835.507 L1306.81 835.507 L1306.81 809.142 L1298.5 810.808 L1298.5 806.549 L1306.77 804.882 L1311.44 804.882 L1311.44 835.507 L1319.08 835.507 L1319.08 839.442 L1299.17 839.442 L1299.17 835.507 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1324.2 804.882 L1342.55 804.882 L1342.55 808.818 L1328.48 808.818 L1328.48 817.29 Q1329.5 816.943 1330.51 816.78 Q1331.53 816.595 1332.55 816.595 Q1338.34 816.595 1341.72 819.767 Q1345.1 822.938 1345.1 828.354 Q1345.1 833.933 1341.63 837.035 Q1338.15 840.114 1331.83 840.114 Q1329.66 840.114 1327.39 839.743 Q1325.14 839.373 1322.74 838.632 L1322.74 833.933 Q1324.82 835.067 1327.04 835.623 Q1329.26 836.179 1331.74 836.179 Q1335.75 836.179 1338.08 834.072 Q1340.42 831.966 1340.42 828.354 Q1340.42 824.743 1338.08 822.637 Q1335.75 820.53 1331.74 820.53 Q1329.87 820.53 1327.99 820.947 Q1326.14 821.364 1324.2 822.243 L1324.2 804.882 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1222.3 508.102 Q1225.65 508.82 1227.53 511.088 Q1229.43 513.357 1229.43 516.69 Q1229.43 521.806 1225.91 524.607 Q1222.39 527.408 1215.91 527.408 Q1213.73 527.408 1211.42 526.968 Q1209.13 526.551 1206.67 525.695 L1206.67 521.181 Q1208.62 522.315 1210.93 522.894 Q1213.25 523.473 1215.77 523.473 Q1220.17 523.473 1222.46 521.736 Q1224.77 520 1224.77 516.69 Q1224.77 513.635 1222.62 511.922 Q1220.49 510.186 1216.67 510.186 L1212.65 510.186 L1212.65 506.343 L1216.86 506.343 Q1220.31 506.343 1222.14 504.977 Q1223.96 503.588 1223.96 500.996 Q1223.96 498.334 1222.07 496.922 Q1220.19 495.487 1216.67 495.487 Q1214.75 495.487 1212.55 495.903 Q1210.35 496.32 1207.71 497.2 L1207.71 493.033 Q1210.38 492.292 1212.69 491.922 Q1215.03 491.551 1217.09 491.551 Q1222.41 491.551 1225.52 493.982 Q1228.62 496.389 1228.62 500.51 Q1228.62 503.38 1226.97 505.371 Q1225.33 507.338 1222.3 508.102 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1234.5 520.857 L1239.38 520.857 L1239.38 526.736 L1234.5 526.736 L1234.5 520.857 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1245.26 522.801 L1252.9 522.801 L1252.9 496.436 L1244.59 498.102 L1244.59 493.843 L1252.85 492.176 L1257.53 492.176 L1257.53 522.801 L1265.17 522.801 L1265.17 526.736 L1245.26 526.736 L1245.26 522.801 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1283.08 496.251 L1271.28 514.699 L1283.08 514.699 L1283.08 496.251 M1281.86 492.176 L1287.74 492.176 L1287.74 514.699 L1292.67 514.699 L1292.67 518.588 L1287.74 518.588 L1287.74 526.736 L1283.08 526.736 L1283.08 518.588 L1267.48 518.588 L1267.48 514.074 L1281.86 492.176 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1301.77 522.801 L1318.08 522.801 L1318.08 526.736 L1296.14 526.736 L1296.14 522.801 Q1298.8 520.047 1303.39 515.417 Q1307.99 510.764 1309.17 509.422 Q1311.42 506.899 1312.3 505.162 Q1313.2 503.403 1313.2 501.713 Q1313.2 498.959 1311.26 497.223 Q1309.33 495.487 1306.23 495.487 Q1304.03 495.487 1301.58 496.251 Q1299.15 497.014 1296.37 498.565 L1296.37 493.843 Q1299.2 492.709 1301.65 492.13 Q1304.1 491.551 1306.14 491.551 Q1311.51 491.551 1314.7 494.237 Q1317.9 496.922 1317.9 501.413 Q1317.9 503.542 1317.09 505.463 Q1316.3 507.362 1314.2 509.954 Q1313.62 510.625 1310.52 513.843 Q1307.41 517.037 1301.77 522.801 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1333.15 495.255 Q1329.54 495.255 1327.71 498.82 Q1325.91 502.362 1325.91 509.491 Q1325.91 516.598 1327.71 520.162 Q1329.54 523.704 1333.15 523.704 Q1336.79 523.704 1338.59 520.162 Q1340.42 516.598 1340.42 509.491 Q1340.42 502.362 1338.59 498.82 Q1336.79 495.255 1333.15 495.255 M1333.15 491.551 Q1338.96 491.551 1342.02 496.158 Q1345.1 500.741 1345.1 509.491 Q1345.1 518.218 1342.02 522.824 Q1338.96 527.408 1333.15 527.408 Q1327.34 527.408 1324.26 522.824 Q1321.21 518.218 1321.21 509.491 Q1321.21 500.741 1324.26 496.158 Q1327.34 491.551 1333.15 491.551 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1223.29 195.396 Q1226.65 196.114 1228.52 198.382 Q1230.42 200.651 1230.42 203.984 Q1230.42 209.1 1226.9 211.901 Q1223.39 214.702 1216.9 214.702 Q1214.73 214.702 1212.41 214.262 Q1210.12 213.845 1207.67 212.989 L1207.67 208.475 Q1209.61 209.609 1211.93 210.188 Q1214.24 210.767 1216.77 210.767 Q1221.16 210.767 1223.46 209.031 Q1225.77 207.294 1225.77 203.984 Q1225.77 200.929 1223.62 199.216 Q1221.49 197.48 1217.67 197.48 L1213.64 197.48 L1213.64 193.637 L1217.85 193.637 Q1221.3 193.637 1223.13 192.271 Q1224.96 190.882 1224.96 188.29 Q1224.96 185.628 1223.06 184.216 Q1221.19 182.781 1217.67 182.781 Q1215.75 182.781 1213.55 183.197 Q1211.35 183.614 1208.71 184.494 L1208.71 180.327 Q1211.37 179.586 1213.69 179.216 Q1216.02 178.846 1218.08 178.846 Q1223.41 178.846 1226.51 181.276 Q1229.61 183.683 1229.61 187.804 Q1229.61 190.674 1227.97 192.665 Q1226.33 194.632 1223.29 195.396 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1235.49 208.151 L1240.38 208.151 L1240.38 214.031 L1235.49 214.031 L1235.49 208.151 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1246.26 210.095 L1253.89 210.095 L1253.89 183.73 L1245.58 185.396 L1245.58 181.137 L1253.85 179.471 L1258.52 179.471 L1258.52 210.095 L1266.16 210.095 L1266.16 214.031 L1246.26 214.031 L1246.26 210.095 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1284.08 183.545 L1272.27 201.994 L1284.08 201.994 L1284.08 183.545 M1282.85 179.471 L1288.73 179.471 L1288.73 201.994 L1293.66 201.994 L1293.66 205.882 L1288.73 205.882 L1288.73 214.031 L1284.08 214.031 L1284.08 205.882 L1268.48 205.882 L1268.48 201.369 L1282.85 179.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1302.76 210.095 L1319.08 210.095 L1319.08 214.031 L1297.14 214.031 L1297.14 210.095 Q1299.8 207.341 1304.38 202.711 Q1308.99 198.058 1310.17 196.716 Q1312.41 194.193 1313.29 192.457 Q1314.2 190.697 1314.2 189.008 Q1314.2 186.253 1312.25 184.517 Q1310.33 182.781 1307.23 182.781 Q1305.03 182.781 1302.58 183.545 Q1300.14 184.308 1297.37 185.859 L1297.37 181.137 Q1300.19 180.003 1302.64 179.424 Q1305.1 178.846 1307.14 178.846 Q1312.51 178.846 1315.7 181.531 Q1318.89 184.216 1318.89 188.707 Q1318.89 190.836 1318.08 192.757 Q1317.3 194.656 1315.19 197.248 Q1314.61 197.919 1311.51 201.137 Q1308.41 204.332 1302.76 210.095 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M 0 0 M1324.2 179.471 L1342.55 179.471 L1342.55 183.406 L1328.48 183.406 L1328.48 191.878 Q1329.5 191.531 1330.51 191.369 Q1331.53 191.183 1332.55 191.183 Q1338.34 191.183 1341.72 194.355 Q1345.1 197.526 1345.1 202.943 Q1345.1 208.521 1341.63 211.623 Q1338.15 214.702 1331.83 214.702 Q1329.66 214.702 1327.39 214.331 Q1325.14 213.961 1322.74 213.22 L1322.74 208.521 Q1324.82 209.656 1327.04 210.211 Q1329.26 210.767 1331.74 210.767 Q1335.75 210.767 1338.08 208.66 Q1340.42 206.554 1340.42 202.943 Q1340.42 199.332 1338.08 197.225 Q1335.75 195.119 1331.74 195.119 Q1329.87 195.119 1327.99 195.535 Q1326.14 195.952 1324.2 196.832 L1324.2 179.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip874)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1396.94,764.216 1406.31,762.24 1415.68,749.299 1425.06,718.521 1434.43,669.703 1443.81,609.417 1453.18,548.602 1462.55,498.542 1471.93,466.71 1481.3,454.028 \n",
+       "  1490.67,454.552 1500.05,457.705 1509.42,452.219 1518.79,430.337 1528.17,390.71 1537.54,338.921 1546.91,285.434 1556.29,241.741 1565.66,216.123 1575.03,210.607 \n",
+       "  1584.41,220.236 1593.78,234.924 1603.16,243.21 1612.53,236.511 1621.9,212.311 1631.28,175.092 1640.65,134.686 1650.02,102.642 1659.4,87.9763 1668.77,93.8477 \n",
+       "  1678.14,116.415 1687.52,146.264 1696.89,171.894 1706.26,183.95 1715.64,178.667 1725.01,159.238 1734.38,134.626 1743.76,116.258 1753.13,113.831 1762.51,131.747 \n",
+       "  1771.88,167.52 1781.25,212.684 1790.63,255.899 1800,287.078 1809.37,301.059 1818.75,299.454 1828.12,290.032 1837.49,283.858 1846.87,291.249 1856.24,318.008 \n",
+       "  1865.61,363.305 1874.99,419.973 1884.36,477.096 1893.73,523.941 1903.11,553.818 1912.48,566.465 1921.85,568.105 1931.23,569.159 1940.6,580.447 1949.98,609.252 \n",
+       "  1959.35,656.662 1968.72,717.151 1978.1,780.543 1987.47,835.658 1996.84,874.307 2006.22,894.22 2015.59,899.834 2024.96,900.658 2034.34,907.817 2043.71,930.002 \n",
+       "  2053.08,970.29 2062.46,1025 2071.83,1085 2081.2,1138.94 2090.58,1177.36 2099.95,1196.1 2109.33,1197.78 2118.7,1190.83 2128.07,1186.43 2137.45,1194.46 \n",
+       "  2146.82,1219.81 2156.19,1260.63 2165.57,1308.95 2174.94,1353.54 2184.31,1384.03 2193.69,1394.65 2203.06,1386.34 2212.43,1366.44 2221.81,1346 2231.18,1335.71 \n",
+       "  2240.55,1341.99 2249.93,1364.59 2259.3,1396.7 2268.68,1427.4 2278.05,1445.72 2287.42,1444.61 2296.8,1423.64 2306.17,1389.08 2315.54,1351.68 2324.92,1322.65 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"\n",
+       "M2179.76 216.178 L2319.97 216.178 L2319.97 95.2176 L2179.76 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2179.76,216.178 2319.97,216.178 2319.97,95.2176 2179.76,95.2176 2179.76,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip870)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2190.68,155.698 2256.26,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip870)\" d=\"M 0 0 M2296.26 149.584 Q2296.26 150.989 2295.72 153.449 Q2295.2 155.908 2294.78 157.079 Q2293.61 160.194 2291.27 162.818 Q2289.98 164.27 2288.58 165.324 Q2287.19 166.354 2286.16 166.87 Q2285.13 167.362 2283.92 167.619 Q2282.7 167.9 2282.14 167.924 Q2281.57 167.971 2280.78 167.971 L2278.95 175.114 Q2278.57 176.965 2278.39 177.082 Q2278.34 177.176 2278.22 177.223 Q2278.13 177.269 2278.04 177.269 L2277.94 177.269 Q2277.68 177.269 2277.54 177.152 Q2277.4 177.035 2277.38 176.895 L2277.38 176.777 Q2277.38 176.45 2278.48 172.234 Q2279.04 170.079 2279.54 167.854 Q2275.79 167.619 2273.47 165.956 Q2271.17 164.293 2271.17 161.061 Q2271.17 159.07 2273.49 152.957 Q2274.59 150.029 2274.59 148.811 Q2274.59 148.272 2274.48 147.944 Q2274.36 147.593 2274.12 147.476 Q2273.89 147.335 2273.75 147.312 Q2273.63 147.289 2273.4 147.289 Q2272.02 147.289 2270.73 148.671 Q2269.44 150.052 2268.55 153.238 Q2268.36 153.823 2268.25 153.964 Q2268.13 154.105 2267.78 154.105 Q2267.19 154.081 2267.19 153.613 Q2267.19 153.425 2267.4 152.699 Q2267.61 151.95 2268.1 150.849 Q2268.62 149.725 2269.32 148.717 Q2270.03 147.687 2271.13 146.961 Q2272.25 146.235 2273.54 146.235 Q2275.3 146.235 2276.37 147.382 Q2277.47 148.507 2277.47 150.17 Q2277.47 150.498 2277.4 150.872 Q2277.33 151.247 2277.26 151.458 Q2277.22 151.669 2277.08 152.067 Q2276.96 152.442 2276.94 152.512 Q2275.74 155.604 2275.13 157.618 Q2274.52 159.609 2274.43 160.194 Q2274.36 160.757 2274.36 161.436 Q2274.36 166.167 2279.82 166.8 L2287.78 135.109 Q2287.92 134.453 2288.04 134.313 Q2288.15 134.149 2288.51 134.149 Q2289.07 134.149 2289.07 134.664 Q2289.07 134.828 2288.93 135.39 L2281.01 166.893 Q2281.76 166.893 2282.23 166.87 Q2282.7 166.846 2283.68 166.636 Q2284.69 166.401 2285.53 165.98 Q2286.4 165.558 2287.62 164.715 Q2288.83 163.848 2290.03 162.63 Q2291.53 161.108 2292.86 158.555 Q2294.2 156.002 2294.2 153.894 Q2294.2 151.528 2292.49 149.818 Q2292.23 149.584 2292.09 149.443 Q2291.97 149.303 2291.86 149.069 Q2291.76 148.835 2291.76 148.53 Q2291.76 147.734 2292.51 146.984 Q2293.26 146.235 2294.15 146.235 Q2294.95 146.235 2295.6 147.008 Q2296.26 147.78 2296.26 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip910\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip911\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip912\">\n",
+       "    <rect x=\"1369\" y=\"47\" width=\"985\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"\n",
+       "M147.848 1486.45 L1113.67 1486.45 L1113.67 47.2441 L147.848 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip913\">\n",
+       "    <rect x=\"147\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  175.183,1486.45 175.183,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  357.413,1486.45 357.413,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  539.644,1486.45 539.644,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  721.875,1486.45 721.875,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  904.105,1486.45 904.105,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1086.34,1486.45 1086.34,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1445.72 1113.67,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1188.18 1113.67,1188.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,930.636 1113.67,930.636 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,673.096 1113.67,673.096 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,415.556 1113.67,415.556 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip913)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,158.016 1113.67,158.016 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 1113.67,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 147.848,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.183,1486.45 175.183,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  357.413,1486.45 357.413,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  539.644,1486.45 539.644,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  721.875,1486.45 721.875,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  904.105,1486.45 904.105,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1086.34,1486.45 1086.34,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1445.72 159.438,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1188.18 159.438,1188.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,930.636 159.438,930.636 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,673.096 159.438,673.096 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,415.556 159.438,415.556 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,158.016 159.438,158.016 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"M 0 0 M175.183 1508.44 Q171.572 1508.44 169.743 1512 Q167.938 1515.55 167.938 1522.67 Q167.938 1529.78 169.743 1533.35 Q171.572 1536.89 175.183 1536.89 Q178.817 1536.89 180.623 1533.35 Q182.451 1529.78 182.451 1522.67 Q182.451 1515.55 180.623 1512 Q178.817 1508.44 175.183 1508.44 M175.183 1504.73 Q180.993 1504.73 184.049 1509.34 Q187.127 1513.92 187.127 1522.67 Q187.127 1531.4 184.049 1536.01 Q180.993 1540.59 175.183 1540.59 Q169.373 1540.59 166.294 1536.01 Q163.238 1531.4 163.238 1522.67 Q163.238 1513.92 166.294 1509.34 Q169.373 1504.73 175.183 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M347.795 1535.98 L355.434 1535.98 L355.434 1509.62 L347.124 1511.29 L347.124 1507.03 L355.388 1505.36 L360.064 1505.36 L360.064 1535.98 L367.703 1535.98 L367.703 1539.92 L347.795 1539.92 L347.795 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M534.297 1535.98 L550.616 1535.98 L550.616 1539.92 L528.672 1539.92 L528.672 1535.98 Q531.334 1533.23 535.917 1528.6 Q540.524 1523.95 541.704 1522.61 Q543.95 1520.08 544.829 1518.35 Q545.732 1516.59 545.732 1514.9 Q545.732 1512.14 543.788 1510.41 Q541.866 1508.67 538.764 1508.67 Q536.565 1508.67 534.112 1509.43 Q531.681 1510.2 528.903 1511.75 L528.903 1507.03 Q531.727 1505.89 534.181 1505.31 Q536.635 1504.73 538.672 1504.73 Q544.042 1504.73 547.237 1507.42 Q550.431 1510.11 550.431 1514.6 Q550.431 1516.73 549.621 1518.65 Q548.834 1520.54 546.727 1523.14 Q546.149 1523.81 543.047 1527.03 Q539.945 1530.22 534.297 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M726.122 1521.29 Q729.479 1522 731.354 1524.27 Q733.252 1526.54 733.252 1529.87 Q733.252 1534.99 729.733 1537.79 Q726.215 1540.59 719.733 1540.59 Q717.558 1540.59 715.243 1540.15 Q712.951 1539.73 710.497 1538.88 L710.497 1534.36 Q712.442 1535.5 714.757 1536.08 Q717.071 1536.66 719.595 1536.66 Q723.993 1536.66 726.284 1534.92 Q728.599 1533.18 728.599 1529.87 Q728.599 1526.82 726.446 1525.11 Q724.317 1523.37 720.497 1523.37 L716.47 1523.37 L716.47 1519.53 L720.683 1519.53 Q724.132 1519.53 725.96 1518.16 Q727.789 1516.77 727.789 1514.18 Q727.789 1511.52 725.891 1510.11 Q724.016 1508.67 720.497 1508.67 Q718.576 1508.67 716.377 1509.09 Q714.178 1509.5 711.539 1510.38 L711.539 1506.22 Q714.201 1505.48 716.516 1505.11 Q718.854 1504.73 720.914 1504.73 Q726.238 1504.73 729.34 1507.17 Q732.442 1509.57 732.442 1513.69 Q732.442 1516.56 730.798 1518.55 Q729.155 1520.52 726.122 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M907.115 1509.43 L895.309 1527.88 L907.115 1527.88 L907.115 1509.43 M905.888 1505.36 L911.767 1505.36 L911.767 1527.88 L916.698 1527.88 L916.698 1531.77 L911.767 1531.77 L911.767 1539.92 L907.115 1539.92 L907.115 1531.77 L891.513 1531.77 L891.513 1527.26 L905.888 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1076.61 1505.36 L1094.97 1505.36 L1094.97 1509.3 L1080.9 1509.3 L1080.9 1517.77 Q1081.91 1517.42 1082.93 1517.26 Q1083.95 1517.07 1084.97 1517.07 Q1090.76 1517.07 1094.14 1520.24 Q1097.52 1523.42 1097.52 1528.83 Q1097.52 1534.41 1094.04 1537.51 Q1090.57 1540.59 1084.25 1540.59 Q1082.08 1540.59 1079.81 1540.22 Q1077.56 1539.85 1075.16 1539.11 L1075.16 1534.41 Q1077.24 1535.54 1079.46 1536.1 Q1081.68 1536.66 1084.16 1536.66 Q1088.16 1536.66 1090.5 1534.55 Q1092.84 1532.44 1092.84 1528.83 Q1092.84 1525.22 1090.5 1523.11 Q1088.16 1521.01 1084.16 1521.01 Q1082.28 1521.01 1080.41 1521.42 Q1078.56 1521.84 1076.61 1522.72 L1076.61 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M91.9503 1457.12 L96.8345 1457.12 L96.8345 1463 L91.9503 1463 L91.9503 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M111.904 1431.51 Q108.293 1431.51 106.464 1435.08 Q104.659 1438.62 104.659 1445.75 Q104.659 1452.86 106.464 1456.42 Q108.293 1459.96 111.904 1459.96 Q115.538 1459.96 117.344 1456.42 Q119.172 1452.86 119.172 1445.75 Q119.172 1438.62 117.344 1435.08 Q115.538 1431.51 111.904 1431.51 M111.904 1427.81 Q117.714 1427.81 120.77 1432.42 Q123.848 1437 123.848 1445.75 Q123.848 1454.48 120.77 1459.08 Q117.714 1463.67 111.904 1463.67 Q106.094 1463.67 103.015 1459.08 Q99.9595 1454.48 99.9595 1445.75 Q99.9595 1437 103.015 1432.42 Q106.094 1427.81 111.904 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M75.9319 1173.97 Q72.3208 1173.97 70.4921 1177.54 Q68.6865 1181.08 68.6865 1188.21 Q68.6865 1195.32 70.4921 1198.88 Q72.3208 1202.42 75.9319 1202.42 Q79.5661 1202.42 81.3717 1198.88 Q83.2004 1195.32 83.2004 1188.21 Q83.2004 1181.08 81.3717 1177.54 Q79.5661 1173.97 75.9319 1173.97 M75.9319 1170.27 Q81.742 1170.27 84.7976 1174.88 Q87.8763 1179.46 87.8763 1188.21 Q87.8763 1196.94 84.7976 1201.54 Q81.742 1206.13 75.9319 1206.13 Q70.1217 1206.13 67.043 1201.54 Q63.9875 1196.94 63.9875 1188.21 Q63.9875 1179.46 67.043 1174.88 Q70.1217 1170.27 75.9319 1170.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M92.9457 1199.58 L97.8299 1199.58 L97.8299 1205.46 L92.9457 1205.46 L92.9457 1199.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M102.946 1170.9 L121.302 1170.9 L121.302 1174.83 L107.228 1174.83 L107.228 1183.3 Q108.247 1182.96 109.265 1182.79 Q110.284 1182.61 111.302 1182.61 Q117.089 1182.61 120.469 1185.78 Q123.848 1188.95 123.848 1194.37 Q123.848 1199.95 120.376 1203.05 Q116.904 1206.13 110.584 1206.13 Q108.409 1206.13 106.14 1205.76 Q103.895 1205.39 101.487 1204.65 L101.487 1199.95 Q103.571 1201.08 105.793 1201.64 Q108.015 1202.19 110.492 1202.19 Q114.496 1202.19 116.834 1200.09 Q119.172 1197.98 119.172 1194.37 Q119.172 1190.76 116.834 1188.65 Q114.496 1186.54 110.492 1186.54 Q108.617 1186.54 106.742 1186.96 Q104.89 1187.38 102.946 1188.26 L102.946 1170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M66.9736 943.981 L74.6124 943.981 L74.6124 917.615 L66.3023 919.282 L66.3023 915.022 L74.5661 913.356 L79.242 913.356 L79.242 943.981 L86.8809 943.981 L86.8809 947.916 L66.9736 947.916 L66.9736 943.981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M91.9503 942.036 L96.8345 942.036 L96.8345 947.916 L91.9503 947.916 L91.9503 942.036 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M111.904 916.434 Q108.293 916.434 106.464 919.999 Q104.659 923.541 104.659 930.67 Q104.659 937.777 106.464 941.342 Q108.293 944.883 111.904 944.883 Q115.538 944.883 117.344 941.342 Q119.172 937.777 119.172 930.67 Q119.172 923.541 117.344 919.999 Q115.538 916.434 111.904 916.434 M111.904 912.731 Q117.714 912.731 120.77 917.337 Q123.848 921.921 123.848 930.67 Q123.848 939.397 120.77 944.004 Q117.714 948.587 111.904 948.587 Q106.094 948.587 103.015 944.004 Q99.9595 939.397 99.9595 930.67 Q99.9595 921.921 103.015 917.337 Q106.094 912.731 111.904 912.731 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M67.969 686.441 L75.6078 686.441 L75.6078 660.075 L67.2977 661.742 L67.2977 657.482 L75.5615 655.816 L80.2374 655.816 L80.2374 686.441 L87.8763 686.441 L87.8763 690.376 L67.969 690.376 L67.969 686.441 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M92.9457 684.496 L97.8299 684.496 L97.8299 690.376 L92.9457 690.376 L92.9457 684.496 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M102.946 655.816 L121.302 655.816 L121.302 659.751 L107.228 659.751 L107.228 668.223 Q108.247 667.876 109.265 667.714 Q110.284 667.529 111.302 667.529 Q117.089 667.529 120.469 670.7 Q123.848 673.871 123.848 679.288 Q123.848 684.867 120.376 687.968 Q116.904 691.047 110.584 691.047 Q108.409 691.047 106.14 690.677 Q103.895 690.306 101.487 689.566 L101.487 684.867 Q103.571 686.001 105.793 686.556 Q108.015 687.112 110.492 687.112 Q114.496 687.112 116.834 685.005 Q119.172 682.899 119.172 679.288 Q119.172 675.677 116.834 673.57 Q114.496 671.464 110.492 671.464 Q108.617 671.464 106.742 671.881 Q104.89 672.297 102.946 673.177 L102.946 655.816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M70.5615 428.901 L86.8809 428.901 L86.8809 432.836 L64.9366 432.836 L64.9366 428.901 Q67.5986 426.146 72.1819 421.516 Q76.7883 416.864 77.9689 415.521 Q80.2143 412.998 81.0939 411.262 Q81.9967 409.503 81.9967 407.813 Q81.9967 405.058 80.0522 403.322 Q78.1309 401.586 75.0291 401.586 Q72.83 401.586 70.3763 402.35 Q67.9458 403.114 65.168 404.665 L65.168 399.942 Q67.9921 398.808 70.4458 398.23 Q72.8995 397.651 74.9365 397.651 Q80.3068 397.651 83.5013 400.336 Q86.6957 403.021 86.6957 407.512 Q86.6957 409.641 85.8855 411.563 Q85.0985 413.461 82.992 416.053 Q82.4133 416.725 79.3115 419.942 Q76.2096 423.137 70.5615 428.901 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M91.9503 426.956 L96.8345 426.956 L96.8345 432.836 L91.9503 432.836 L91.9503 426.956 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M111.904 401.354 Q108.293 401.354 106.464 404.919 Q104.659 408.461 104.659 415.591 Q104.659 422.697 106.464 426.262 Q108.293 429.803 111.904 429.803 Q115.538 429.803 117.344 426.262 Q119.172 422.697 119.172 415.591 Q119.172 408.461 117.344 404.919 Q115.538 401.354 111.904 401.354 M111.904 397.651 Q117.714 397.651 120.77 402.257 Q123.848 406.841 123.848 415.591 Q123.848 424.317 120.77 428.924 Q117.714 433.507 111.904 433.507 Q106.094 433.507 103.015 428.924 Q99.9595 424.317 99.9595 415.591 Q99.9595 406.841 103.015 402.257 Q106.094 397.651 111.904 397.651 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M71.5569 171.361 L87.8763 171.361 L87.8763 175.296 L65.9319 175.296 L65.9319 171.361 Q68.5939 168.606 73.1773 163.976 Q77.7837 159.324 78.9643 157.981 Q81.2096 155.458 82.0892 153.722 Q82.992 151.963 82.992 150.273 Q82.992 147.518 81.0476 145.782 Q79.1263 144.046 76.0245 144.046 Q73.8254 144.046 71.3717 144.81 Q68.9412 145.574 66.1634 147.125 L66.1634 142.402 Q68.9875 141.268 71.4412 140.69 Q73.8948 140.111 75.9319 140.111 Q81.3022 140.111 84.4966 142.796 Q87.6911 145.481 87.6911 149.972 Q87.6911 152.102 86.8809 154.023 Q86.0939 155.921 83.9874 158.514 Q83.4087 159.185 80.3068 162.402 Q77.205 165.597 71.5569 171.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M92.9457 169.416 L97.8299 169.416 L97.8299 175.296 L92.9457 175.296 L92.9457 169.416 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M102.946 140.736 L121.302 140.736 L121.302 144.671 L107.228 144.671 L107.228 153.143 Q108.247 152.796 109.265 152.634 Q110.284 152.449 111.302 152.449 Q117.089 152.449 120.469 155.62 Q123.848 158.791 123.848 164.208 Q123.848 169.787 120.376 172.888 Q116.904 175.967 110.584 175.967 Q108.409 175.967 106.14 175.597 Q103.895 175.226 101.487 174.486 L101.487 169.787 Q103.571 170.921 105.793 171.476 Q108.015 172.032 110.492 172.032 Q114.496 172.032 116.834 169.925 Q119.172 167.819 119.172 164.208 Q119.172 160.597 116.834 158.49 Q114.496 156.384 110.492 156.384 Q108.617 156.384 106.742 156.801 Q104.89 157.217 102.946 158.097 L102.946 140.736 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip913)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.183,1445.72 184.386,1445.69 193.59,1445.54 202.794,1445.12 211.997,1444.31 221.201,1442.99 230.404,1441.03 239.608,1438.32 248.811,1434.76 258.015,1430.24 \n",
+       "  267.219,1424.7 276.422,1418.04 285.626,1410.21 294.829,1401.14 304.033,1390.81 313.236,1379.18 322.44,1366.24 331.643,1351.99 340.847,1336.44 350.051,1319.62 \n",
+       "  359.254,1301.56 368.458,1282.32 377.661,1261.96 386.865,1240.56 396.068,1218.2 405.272,1194.98 414.476,1171 423.679,1146.37 432.883,1121.21 442.086,1095.65 \n",
+       "  451.29,1069.81 460.493,1043.82 469.697,1017.83 478.901,991.948 488.104,966.319 497.308,941.069 506.511,916.323 515.715,892.2 524.918,868.814 534.122,846.27 \n",
+       "  543.325,824.666 552.529,804.089 561.733,784.616 570.936,766.314 580.14,749.237 589.343,733.425 598.547,718.908 607.75,705.7 616.954,693.805 626.158,683.21 \n",
+       "  635.361,673.891 644.565,665.81 653.768,658.918 662.972,653.152 672.175,648.437 681.379,644.69 690.583,641.816 699.786,639.712 708.99,638.266 718.193,637.362 \n",
+       "  727.397,636.874 736.6,636.677 745.804,636.639 755.008,636.627 764.211,636.51 773.415,636.157 782.618,635.437 791.822,634.226 801.025,632.404 810.229,629.856 \n",
+       "  819.432,626.477 828.636,622.167 837.84,616.838 847.043,610.412 856.247,602.822 865.45,594.012 874.654,583.941 883.857,572.577 893.061,559.904 902.265,545.919 \n",
+       "  911.468,530.631 920.672,514.065 929.875,496.255 939.079,477.252 948.282,457.116 957.486,435.92 966.69,413.747 975.893,390.692 985.097,366.855 994.3,342.349 \n",
+       "  1003.5,317.289 1012.71,291.799 1021.91,266.007 1031.11,240.041 1040.32,214.035 1049.52,188.122 1058.73,162.431 1067.93,137.094 1077.13,112.235 1086.34,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"\n",
+       "M945.867 216.178 L1081.48 216.178 L1081.48 95.2176 L945.867 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  945.867,216.178 1081.48,216.178 1081.48,95.2176 945.867,95.2176 945.867,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  956.598,155.698 1020.99,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"M 0 0 M1056.87 154.854 Q1056.87 157.22 1055.66 159.585 Q1054.44 161.951 1052.45 163.778 Q1050.46 165.582 1047.74 166.753 Q1045.02 167.924 1042.19 168.017 L1040.36 175.161 Q1040.01 176.895 1039.82 177.082 Q1039.63 177.269 1039.35 177.269 Q1038.77 177.269 1038.77 176.731 Q1038.77 176.567 1039.82 172.515 L1040.95 168.017 Q1036.68 167.783 1034.2 165.324 Q1031.72 162.865 1031.72 159.328 Q1031.72 156.939 1032.94 154.573 Q1034.18 152.184 1036.17 150.38 Q1038.18 148.577 1040.9 147.429 Q1043.62 146.281 1046.4 146.188 L1049.19 135.109 Q1049.33 134.477 1049.45 134.313 Q1049.57 134.149 1049.92 134.149 Q1050.17 134.149 1050.32 134.266 Q1050.46 134.383 1050.46 134.5 L1050.48 134.617 L1050.34 135.296 L1047.65 146.188 Q1050.03 146.352 1051.88 147.195 Q1053.73 148.038 1054.79 149.303 Q1055.84 150.544 1056.36 151.95 Q1056.87 153.355 1056.87 154.854 M1046.12 147.242 Q1043.55 147.476 1041.37 148.741 Q1039.19 150.006 1037.78 151.879 Q1036.38 153.73 1035.61 155.955 Q1034.83 158.157 1034.83 160.335 Q1034.83 162.045 1035.4 163.356 Q1035.98 164.668 1036.94 165.418 Q1037.9 166.144 1038.96 166.542 Q1040.03 166.917 1041.18 166.963 L1046.12 147.242 M1053.73 153.847 Q1053.73 150.802 1051.98 149.092 Q1050.22 147.382 1047.36 147.242 L1042.42 166.963 Q1044.51 166.8 1046.33 165.933 Q1048.18 165.043 1049.52 163.731 Q1050.85 162.396 1051.81 160.757 Q1052.77 159.094 1053.24 157.337 Q1053.73 155.557 1053.73 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"\n",
+       "M1386.93 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1386.93 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip914\">\n",
+       "    <rect x=\"1386\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1414.27,1486.45 1414.27,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1596.5,1486.45 1596.5,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1778.73,1486.45 1778.73,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1960.96,1486.45 1960.96,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2143.19,1486.45 2143.19,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,1416.25 2352.76,1416.25 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,1125.05 2352.76,1125.05 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,833.854 2352.76,833.854 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,542.654 2352.76,542.654 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip914)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,251.454 2352.76,251.454 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1486.45 1386.93,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.27,1486.45 1414.27,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1596.5,1486.45 1596.5,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1778.73,1486.45 1778.73,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1960.96,1486.45 1960.96,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2143.19,1486.45 2143.19,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1416.25 1398.52,1416.25 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1125.05 1398.52,1125.05 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,833.854 1398.52,833.854 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,542.654 1398.52,542.654 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,251.454 1398.52,251.454 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"M 0 0 M1414.27 1508.44 Q1410.66 1508.44 1408.83 1512 Q1407.02 1515.55 1407.02 1522.67 Q1407.02 1529.78 1408.83 1533.35 Q1410.66 1536.89 1414.27 1536.89 Q1417.9 1536.89 1419.71 1533.35 Q1421.54 1529.78 1421.54 1522.67 Q1421.54 1515.55 1419.71 1512 Q1417.9 1508.44 1414.27 1508.44 M1414.27 1504.73 Q1420.08 1504.73 1423.13 1509.34 Q1426.21 1513.92 1426.21 1522.67 Q1426.21 1531.4 1423.13 1536.01 Q1420.08 1540.59 1414.27 1540.59 Q1408.46 1540.59 1405.38 1536.01 Q1402.32 1531.4 1402.32 1522.67 Q1402.32 1513.92 1405.38 1509.34 Q1408.46 1504.73 1414.27 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1586.88 1535.98 L1594.52 1535.98 L1594.52 1509.62 L1586.21 1511.29 L1586.21 1507.03 L1594.47 1505.36 L1599.15 1505.36 L1599.15 1535.98 L1606.79 1535.98 L1606.79 1539.92 L1586.88 1539.92 L1586.88 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1773.38 1535.98 L1789.7 1535.98 L1789.7 1539.92 L1767.76 1539.92 L1767.76 1535.98 Q1770.42 1533.23 1775 1528.6 Q1779.61 1523.95 1780.79 1522.61 Q1783.04 1520.08 1783.91 1518.35 Q1784.82 1516.59 1784.82 1514.9 Q1784.82 1512.14 1782.87 1510.41 Q1780.95 1508.67 1777.85 1508.67 Q1775.65 1508.67 1773.2 1509.43 Q1770.77 1510.2 1767.99 1511.75 L1767.99 1507.03 Q1770.81 1505.89 1773.27 1505.31 Q1775.72 1504.73 1777.76 1504.73 Q1783.13 1504.73 1786.32 1507.42 Q1789.52 1510.11 1789.52 1514.6 Q1789.52 1516.73 1788.71 1518.65 Q1787.92 1520.54 1785.81 1523.14 Q1785.23 1523.81 1782.13 1527.03 Q1779.03 1530.22 1773.38 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1965.21 1521.29 Q1968.56 1522 1970.44 1524.27 Q1972.34 1526.54 1972.34 1529.87 Q1972.34 1534.99 1968.82 1537.79 Q1965.3 1540.59 1958.82 1540.59 Q1956.64 1540.59 1954.33 1540.15 Q1952.04 1539.73 1949.58 1538.88 L1949.58 1534.36 Q1951.53 1535.5 1953.84 1536.08 Q1956.16 1536.66 1958.68 1536.66 Q1963.08 1536.66 1965.37 1534.92 Q1967.68 1533.18 1967.68 1529.87 Q1967.68 1526.82 1965.53 1525.11 Q1963.4 1523.37 1959.58 1523.37 L1955.56 1523.37 L1955.56 1519.53 L1959.77 1519.53 Q1963.22 1519.53 1965.05 1518.16 Q1966.87 1516.77 1966.87 1514.18 Q1966.87 1511.52 1964.98 1510.11 Q1963.1 1508.67 1959.58 1508.67 Q1957.66 1508.67 1955.46 1509.09 Q1953.26 1509.5 1950.62 1510.38 L1950.62 1506.22 Q1953.29 1505.48 1955.6 1505.11 Q1957.94 1504.73 1960 1504.73 Q1965.32 1504.73 1968.43 1507.17 Q1971.53 1509.57 1971.53 1513.69 Q1971.53 1516.56 1969.88 1518.55 Q1968.24 1520.52 1965.21 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M2146.2 1509.43 L2134.39 1527.88 L2146.2 1527.88 L2146.2 1509.43 M2144.97 1505.36 L2150.85 1505.36 L2150.85 1527.88 L2155.78 1527.88 L2155.78 1531.77 L2150.85 1531.77 L2150.85 1539.92 L2146.2 1539.92 L2146.2 1531.77 L2130.6 1531.77 L2130.6 1527.26 L2144.97 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M2315.7 1505.36 L2334.06 1505.36 L2334.06 1509.3 L2319.98 1509.3 L2319.98 1517.77 Q2321 1517.42 2322.02 1517.26 Q2323.04 1517.07 2324.06 1517.07 Q2329.84 1517.07 2333.22 1520.24 Q2336.6 1523.42 2336.6 1528.83 Q2336.6 1534.41 2333.13 1537.51 Q2329.66 1540.59 2323.34 1540.59 Q2321.16 1540.59 2318.89 1540.22 Q2316.65 1539.85 2314.24 1539.11 L2314.24 1534.41 Q2316.32 1535.54 2318.55 1536.1 Q2320.77 1536.66 2323.25 1536.66 Q2327.25 1536.66 2329.59 1534.55 Q2331.93 1532.44 2331.93 1528.83 Q2331.93 1525.22 2329.59 1523.11 Q2327.25 1521.01 2323.25 1521.01 Q2321.37 1521.01 2319.5 1521.42 Q2317.64 1521.84 2315.7 1522.72 L2315.7 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1239.53 1414.9 Q1242.89 1415.62 1244.76 1417.89 Q1246.66 1420.15 1246.66 1423.49 Q1246.66 1428.6 1243.14 1431.4 Q1239.62 1434.2 1233.14 1434.2 Q1230.97 1434.2 1228.65 1433.77 Q1226.36 1433.35 1223.91 1432.49 L1223.91 1427.98 Q1225.85 1429.11 1228.17 1429.69 Q1230.48 1430.27 1233 1430.27 Q1237.4 1430.27 1239.69 1428.53 Q1242.01 1426.8 1242.01 1423.49 Q1242.01 1420.43 1239.86 1418.72 Q1237.73 1416.98 1233.91 1416.98 L1229.88 1416.98 L1229.88 1413.14 L1234.09 1413.14 Q1237.54 1413.14 1239.37 1411.77 Q1241.2 1410.39 1241.2 1407.79 Q1241.2 1405.13 1239.3 1403.72 Q1237.43 1402.28 1233.91 1402.28 Q1231.99 1402.28 1229.79 1402.7 Q1227.59 1403.12 1224.95 1404 L1224.95 1399.83 Q1227.61 1399.09 1229.93 1398.72 Q1232.26 1398.35 1234.32 1398.35 Q1239.65 1398.35 1242.75 1400.78 Q1245.85 1403.19 1245.85 1407.31 Q1245.85 1410.18 1244.21 1412.17 Q1242.56 1414.14 1239.53 1414.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1251.73 1427.65 L1256.61 1427.65 L1256.61 1433.53 L1251.73 1433.53 L1251.73 1427.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1262.49 1429.6 L1270.13 1429.6 L1270.13 1403.23 L1261.82 1404.9 L1261.82 1400.64 L1270.09 1398.97 L1274.76 1398.97 L1274.76 1429.6 L1282.4 1429.6 L1282.4 1433.53 L1262.49 1433.53 L1262.49 1429.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1300.32 1403.05 L1288.51 1421.5 L1300.32 1421.5 L1300.32 1403.05 M1299.09 1398.97 L1304.97 1398.97 L1304.97 1421.5 L1309.9 1421.5 L1309.9 1425.39 L1304.97 1425.39 L1304.97 1433.53 L1300.32 1433.53 L1300.32 1425.39 L1284.72 1425.39 L1284.72 1420.87 L1299.09 1398.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1324.97 1402.05 Q1321.36 1402.05 1319.53 1405.62 Q1317.73 1409.16 1317.73 1416.29 Q1317.73 1423.39 1319.53 1426.96 Q1321.36 1430.5 1324.97 1430.5 Q1328.61 1430.5 1330.41 1426.96 Q1332.24 1423.39 1332.24 1416.29 Q1332.24 1409.16 1330.41 1405.62 Q1328.61 1402.05 1324.97 1402.05 M1324.97 1398.35 Q1330.78 1398.35 1333.84 1402.95 Q1336.92 1407.54 1336.92 1416.29 Q1336.92 1425.02 1333.84 1429.62 Q1330.78 1434.2 1324.97 1434.2 Q1319.16 1434.2 1316.08 1429.62 Q1313.03 1425.02 1313.03 1416.29 Q1313.03 1407.54 1316.08 1402.95 Q1319.16 1398.35 1324.97 1398.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1342.03 1398.97 L1360.39 1398.97 L1360.39 1402.91 L1346.31 1402.91 L1346.31 1411.38 Q1347.33 1411.03 1348.35 1410.87 Q1349.37 1410.69 1350.39 1410.69 Q1356.17 1410.69 1359.55 1413.86 Q1362.93 1417.03 1362.93 1422.45 Q1362.93 1428.02 1359.46 1431.13 Q1355.99 1434.2 1349.67 1434.2 Q1347.49 1434.2 1345.23 1433.83 Q1342.98 1433.46 1340.57 1432.72 L1340.57 1428.02 Q1342.66 1429.16 1344.88 1429.71 Q1347.1 1430.27 1349.58 1430.27 Q1353.58 1430.27 1355.92 1428.16 Q1358.26 1426.06 1358.26 1422.45 Q1358.26 1418.83 1355.92 1416.73 Q1353.58 1414.62 1349.58 1414.62 Q1347.7 1414.62 1345.83 1415.04 Q1343.98 1415.45 1342.03 1416.33 L1342.03 1398.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1239.76 1123.7 Q1243.12 1124.42 1244.99 1126.69 Q1246.89 1128.95 1246.89 1132.29 Q1246.89 1137.4 1243.37 1140.2 Q1239.86 1143 1233.37 1143 Q1231.2 1143 1228.88 1142.57 Q1226.59 1142.15 1224.14 1141.29 L1224.14 1136.78 Q1226.08 1137.91 1228.4 1138.49 Q1230.71 1139.07 1233.24 1139.07 Q1237.63 1139.07 1239.93 1137.33 Q1242.24 1135.6 1242.24 1132.29 Q1242.24 1129.23 1240.09 1127.52 Q1237.96 1125.78 1234.14 1125.78 L1230.11 1125.78 L1230.11 1121.94 L1234.32 1121.94 Q1237.77 1121.94 1239.6 1120.57 Q1241.43 1119.19 1241.43 1116.59 Q1241.43 1113.93 1239.53 1112.52 Q1237.66 1111.08 1234.14 1111.08 Q1232.22 1111.08 1230.02 1111.5 Q1227.82 1111.92 1225.18 1112.8 L1225.18 1108.63 Q1227.84 1107.89 1230.16 1107.52 Q1232.49 1107.15 1234.55 1107.15 Q1239.88 1107.15 1242.98 1109.58 Q1246.08 1111.99 1246.08 1116.11 Q1246.08 1118.98 1244.44 1120.97 Q1242.8 1122.94 1239.76 1123.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1251.96 1136.45 L1256.85 1136.45 L1256.85 1142.33 L1251.96 1142.33 L1251.96 1136.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1262.73 1138.4 L1270.36 1138.4 L1270.36 1112.03 L1262.05 1113.7 L1262.05 1109.44 L1270.32 1107.77 L1274.99 1107.77 L1274.99 1138.4 L1282.63 1138.4 L1282.63 1142.33 L1262.73 1142.33 L1262.73 1138.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1300.55 1111.85 L1288.74 1130.3 L1300.55 1130.3 L1300.55 1111.85 M1299.32 1107.77 L1305.2 1107.77 L1305.2 1130.3 L1310.13 1130.3 L1310.13 1134.19 L1305.2 1134.19 L1305.2 1142.33 L1300.55 1142.33 L1300.55 1134.19 L1284.95 1134.19 L1284.95 1129.67 L1299.32 1107.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1316.01 1138.4 L1323.65 1138.4 L1323.65 1112.03 L1315.34 1113.7 L1315.34 1109.44 L1323.61 1107.77 L1328.28 1107.77 L1328.28 1138.4 L1335.92 1138.4 L1335.92 1142.33 L1316.01 1142.33 L1316.01 1138.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1350.99 1110.85 Q1347.38 1110.85 1345.55 1114.42 Q1343.74 1117.96 1343.74 1125.09 Q1343.74 1132.19 1345.55 1135.76 Q1347.38 1139.3 1350.99 1139.3 Q1354.62 1139.3 1356.43 1135.76 Q1358.26 1132.19 1358.26 1125.09 Q1358.26 1117.96 1356.43 1114.42 Q1354.62 1110.85 1350.99 1110.85 M1350.99 1107.15 Q1356.8 1107.15 1359.86 1111.76 Q1362.93 1116.34 1362.93 1125.09 Q1362.93 1133.82 1359.86 1138.42 Q1356.8 1143 1350.99 1143 Q1345.18 1143 1342.1 1138.42 Q1339.04 1133.82 1339.04 1125.09 Q1339.04 1116.34 1342.1 1111.76 Q1345.18 1107.15 1350.99 1107.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1240.76 832.5 Q1244.11 833.217 1245.99 835.486 Q1247.89 837.754 1247.89 841.088 Q1247.89 846.203 1244.37 849.004 Q1240.85 851.805 1234.37 851.805 Q1232.19 851.805 1229.88 851.365 Q1227.59 850.949 1225.13 850.092 L1225.13 845.578 Q1227.08 846.712 1229.39 847.291 Q1231.71 847.87 1234.23 847.87 Q1238.63 847.87 1240.92 846.134 Q1243.24 844.398 1243.24 841.088 Q1243.24 838.032 1241.08 836.319 Q1238.95 834.583 1235.13 834.583 L1231.11 834.583 L1231.11 830.74 L1235.32 830.74 Q1238.77 830.74 1240.6 829.375 Q1242.43 827.986 1242.43 825.393 Q1242.43 822.731 1240.53 821.319 Q1238.65 819.884 1235.13 819.884 Q1233.21 819.884 1231.01 820.301 Q1228.81 820.717 1226.18 821.597 L1226.18 817.43 Q1228.84 816.69 1231.15 816.319 Q1233.49 815.949 1235.55 815.949 Q1240.87 815.949 1243.98 818.379 Q1247.08 820.787 1247.08 824.907 Q1247.08 827.777 1245.43 829.768 Q1243.79 831.736 1240.76 832.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1252.96 845.254 L1257.84 845.254 L1257.84 851.134 L1252.96 851.134 L1252.96 845.254 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1263.72 847.199 L1271.36 847.199 L1271.36 820.833 L1263.05 822.5 L1263.05 818.24 L1271.31 816.574 L1275.99 816.574 L1275.99 847.199 L1283.63 847.199 L1283.63 851.134 L1263.72 851.134 L1263.72 847.199 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1301.55 820.648 L1289.74 839.097 L1301.55 839.097 L1301.55 820.648 M1300.32 816.574 L1306.2 816.574 L1306.2 839.097 L1311.13 839.097 L1311.13 842.986 L1306.2 842.986 L1306.2 851.134 L1301.55 851.134 L1301.55 842.986 L1285.94 842.986 L1285.94 838.472 L1300.32 816.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1317.01 847.199 L1324.65 847.199 L1324.65 820.833 L1316.34 822.5 L1316.34 818.24 L1324.6 816.574 L1329.28 816.574 L1329.28 847.199 L1336.92 847.199 L1336.92 851.134 L1317.01 851.134 L1317.01 847.199 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1342.03 816.574 L1360.39 816.574 L1360.39 820.509 L1346.31 820.509 L1346.31 828.981 Q1347.33 828.634 1348.35 828.472 Q1349.37 828.287 1350.39 828.287 Q1356.17 828.287 1359.55 831.458 Q1362.93 834.629 1362.93 840.046 Q1362.93 845.625 1359.46 848.726 Q1355.99 851.805 1349.67 851.805 Q1347.49 851.805 1345.23 851.435 Q1342.98 851.064 1340.57 850.324 L1340.57 845.625 Q1342.66 846.759 1344.88 847.314 Q1347.1 847.87 1349.58 847.87 Q1353.58 847.87 1355.92 845.763 Q1358.26 843.657 1358.26 840.046 Q1358.26 836.435 1355.92 834.328 Q1353.58 832.222 1349.58 832.222 Q1347.7 832.222 1345.83 832.638 Q1343.98 833.055 1342.03 833.935 L1342.03 816.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1240.13 541.3 Q1243.49 542.017 1245.36 544.286 Q1247.26 546.554 1247.26 549.888 Q1247.26 555.003 1243.74 557.804 Q1240.23 560.605 1233.74 560.605 Q1231.57 560.605 1229.25 560.165 Q1226.96 559.749 1224.51 558.892 L1224.51 554.378 Q1226.45 555.513 1228.77 556.091 Q1231.08 556.67 1233.61 556.67 Q1238 556.67 1240.3 554.934 Q1242.61 553.198 1242.61 549.888 Q1242.61 546.832 1240.46 545.119 Q1238.33 543.383 1234.51 543.383 L1230.48 543.383 L1230.48 539.54 L1234.69 539.54 Q1238.14 539.54 1239.97 538.175 Q1241.8 536.786 1241.8 534.193 Q1241.8 531.531 1239.9 530.119 Q1238.03 528.684 1234.51 528.684 Q1232.59 528.684 1230.39 529.101 Q1228.19 529.517 1225.55 530.397 L1225.55 526.23 Q1228.21 525.49 1230.53 525.119 Q1232.86 524.749 1234.93 524.749 Q1240.25 524.749 1243.35 527.179 Q1246.45 529.587 1246.45 533.707 Q1246.45 536.578 1244.81 538.568 Q1243.17 540.536 1240.13 541.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1252.33 554.054 L1257.22 554.054 L1257.22 559.934 L1252.33 559.934 L1252.33 554.054 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1263.1 555.999 L1270.74 555.999 L1270.74 529.633 L1262.42 531.3 L1262.42 527.041 L1270.69 525.374 L1275.36 525.374 L1275.36 555.999 L1283 555.999 L1283 559.934 L1263.1 559.934 L1263.1 555.999 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1300.92 529.448 L1289.11 547.897 L1300.92 547.897 L1300.92 529.448 M1299.69 525.374 L1305.57 525.374 L1305.57 547.897 L1310.5 547.897 L1310.5 551.786 L1305.57 551.786 L1305.57 559.934 L1300.92 559.934 L1300.92 551.786 L1285.32 551.786 L1285.32 547.272 L1299.69 525.374 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1319.6 555.999 L1335.92 555.999 L1335.92 559.934 L1313.98 559.934 L1313.98 555.999 Q1316.64 553.244 1321.22 548.614 Q1325.83 543.962 1327.01 542.619 Q1329.25 540.096 1330.13 538.36 Q1331.04 536.601 1331.04 534.911 Q1331.04 532.156 1329.09 530.42 Q1327.17 528.684 1324.07 528.684 Q1321.87 528.684 1319.42 529.448 Q1316.98 530.212 1314.21 531.763 L1314.21 527.041 Q1317.03 525.906 1319.48 525.328 Q1321.94 524.749 1323.98 524.749 Q1329.35 524.749 1332.54 527.434 Q1335.73 530.119 1335.73 534.61 Q1335.73 536.74 1334.92 538.661 Q1334.14 540.559 1332.03 543.152 Q1331.45 543.823 1328.35 547.04 Q1325.25 550.235 1319.6 555.999 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1350.99 528.453 Q1347.38 528.453 1345.55 532.017 Q1343.74 535.559 1343.74 542.689 Q1343.74 549.795 1345.55 553.36 Q1347.38 556.901 1350.99 556.901 Q1354.62 556.901 1356.43 553.36 Q1358.26 549.795 1358.26 542.689 Q1358.26 535.559 1356.43 532.017 Q1354.62 528.453 1350.99 528.453 M1350.99 524.749 Q1356.8 524.749 1359.86 529.355 Q1362.93 533.939 1362.93 542.689 Q1362.93 551.415 1359.86 556.022 Q1356.8 560.605 1350.99 560.605 Q1345.18 560.605 1342.1 556.022 Q1339.04 551.415 1339.04 542.689 Q1339.04 533.939 1342.1 529.355 Q1345.18 524.749 1350.99 524.749 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1241.13 250.1 Q1244.49 250.817 1246.36 253.086 Q1248.26 255.354 1248.26 258.688 Q1248.26 263.803 1244.74 266.604 Q1241.22 269.405 1234.74 269.405 Q1232.56 269.405 1230.25 268.965 Q1227.96 268.549 1225.5 267.692 L1225.5 263.178 Q1227.45 264.313 1229.76 264.891 Q1232.08 265.47 1234.6 265.47 Q1239 265.47 1241.29 263.734 Q1243.61 261.998 1243.61 258.688 Q1243.61 255.632 1241.45 253.919 Q1239.32 252.183 1235.5 252.183 L1231.48 252.183 L1231.48 248.341 L1235.69 248.341 Q1239.14 248.341 1240.97 246.975 Q1242.8 245.586 1242.8 242.993 Q1242.8 240.331 1240.9 238.919 Q1239.02 237.484 1235.5 237.484 Q1233.58 237.484 1231.38 237.901 Q1229.18 238.317 1226.55 239.197 L1226.55 235.03 Q1229.21 234.29 1231.52 233.919 Q1233.86 233.549 1235.92 233.549 Q1241.24 233.549 1244.35 235.98 Q1247.45 238.387 1247.45 242.507 Q1247.45 245.378 1245.8 247.368 Q1244.16 249.336 1241.13 250.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1253.33 262.854 L1258.21 262.854 L1258.21 268.734 L1253.33 268.734 L1253.33 262.854 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1264.09 264.799 L1271.73 264.799 L1271.73 238.433 L1263.42 240.1 L1263.42 235.841 L1271.68 234.174 L1276.36 234.174 L1276.36 264.799 L1284 264.799 L1284 268.734 L1264.09 268.734 L1264.09 264.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1301.92 238.248 L1290.11 256.697 L1301.92 256.697 L1301.92 238.248 M1300.69 234.174 L1306.57 234.174 L1306.57 256.697 L1311.5 256.697 L1311.5 260.586 L1306.57 260.586 L1306.57 268.734 L1301.92 268.734 L1301.92 260.586 L1286.31 260.586 L1286.31 256.072 L1300.69 234.174 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1320.6 264.799 L1336.92 264.799 L1336.92 268.734 L1314.97 268.734 L1314.97 264.799 Q1317.63 262.044 1322.22 257.415 Q1326.82 252.762 1328 251.419 Q1330.25 248.896 1331.13 247.16 Q1332.03 245.401 1332.03 243.711 Q1332.03 240.956 1330.09 239.22 Q1328.17 237.484 1325.06 237.484 Q1322.86 237.484 1320.41 238.248 Q1317.98 239.012 1315.2 240.563 L1315.2 235.841 Q1318.03 234.706 1320.48 234.128 Q1322.93 233.549 1324.97 233.549 Q1330.34 233.549 1333.54 236.234 Q1336.73 238.919 1336.73 243.41 Q1336.73 245.54 1335.92 247.461 Q1335.13 249.359 1333.03 251.952 Q1332.45 252.623 1329.35 255.841 Q1326.24 259.035 1320.6 264.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M 0 0 M1342.03 234.174 L1360.39 234.174 L1360.39 238.109 L1346.31 238.109 L1346.31 246.581 Q1347.33 246.234 1348.35 246.072 Q1349.37 245.887 1350.39 245.887 Q1356.17 245.887 1359.55 249.058 Q1362.93 252.229 1362.93 257.646 Q1362.93 263.225 1359.46 266.327 Q1355.99 269.405 1349.67 269.405 Q1347.49 269.405 1345.23 269.035 Q1342.98 268.665 1340.57 267.924 L1340.57 263.225 Q1342.66 264.359 1344.88 264.915 Q1347.1 265.47 1349.58 265.47 Q1353.58 265.47 1355.92 263.364 Q1358.26 261.257 1358.26 257.646 Q1358.26 254.035 1355.92 251.929 Q1353.58 249.822 1349.58 249.822 Q1347.7 249.822 1345.83 250.239 Q1343.98 250.655 1342.03 251.535 L1342.03 234.174 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip914)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.27,779.892 1423.47,776.214 1432.68,752.155 1441.88,695.108 1451.08,605.132 1460.29,495.144 1469.49,386.339 1478.69,300.534 1487.9,252.272 1497.1,243.607 \n",
+       "  1506.3,263.502 1515.51,292.072 1524.71,308.073 1533.91,296.884 1543.12,256.003 1552.32,196.037 1561.53,136.81 1570.73,100.047 1579.93,101.34 1589.14,144.373 \n",
+       "  1598.34,219.533 1607.54,307.417 1616.75,385.927 1625.95,438.325 1635.15,459.281 1644.36,456.679 1653.56,448.546 1662.76,456.22 1671.97,496.305 1681.17,574.363 \n",
+       "  1690.38,682.659 1699.58,802.804 1708.78,912.297 1717.99,992.58 1727.19,1035.65 1736.39,1046.76 1745.6,1042.32 1754.8,1043.59 1764,1068.7 1773.21,1125.72 \n",
+       "  1782.41,1209.56 1791.61,1303.63 1800.82,1385.8 1810.02,1436.48 1819.23,1445.72 1828.43,1416.81 1837.63,1365.04 1846.84,1312.01 1856.04,1277.6 1865.24,1272.63 \n",
+       "  1874.45,1294.83 1883.65,1329.78 1892.85,1356.24 1902.06,1354.14 1911.26,1312.11 1920.46,1231.81 1929.67,1127.48 1938.87,1020.79 1948.08,933.036 1957.28,877.359 \n",
+       "  1966.48,854.128 1975.69,850.988 1984.89,847.651 1994.09,823.638 2003.3,766.084 2012.5,674.733 2021.7,562.248 2030.91,449.736 2040.11,359.136 2049.31,305.287 \n",
+       "  2058.52,290.621 2067.72,304.441 2076.93,327.048 2086.13,337.19 2095.33,320.064 2104.54,272.913 2113.74,206.128 2122.94,139.467 2132.15,94.7852 2141.35,87.9763 \n",
+       "  2150.55,123.106 2159.76,190.909 2168.96,272.192 2178.16,344.883 2187.37,392.1 2196.57,408.288 2205.77,401.127 2214.98,388.552 2224.18,391.976 2233.39,428.226 \n",
+       "  2242.59,503.168 2251.79,609.354 2261,728.573 2270.2,838.333 2279.4,919.927 2288.61,965.083 2297.81,978.789 2307.01,977.23 2316.22,981.618 2325.42,1010.17 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"\n",
+       "M2182.33 216.178 L2320.56 216.178 L2320.56 95.2176 L2182.33 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2182.33,216.178 2320.56,216.178 2320.56,95.2176 2182.33,95.2176 2182.33,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip910)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2193.06,155.698 2257.45,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip910)\" d=\"M 0 0 M2297.25 149.584 Q2297.25 150.989 2296.71 153.449 Q2296.2 155.908 2295.77 157.079 Q2294.6 160.194 2292.26 162.818 Q2290.97 164.27 2289.57 165.324 Q2288.19 166.354 2287.15 166.87 Q2286.12 167.362 2284.91 167.619 Q2283.69 167.9 2283.13 167.924 Q2282.56 167.971 2281.77 167.971 L2279.94 175.114 Q2279.57 176.965 2279.38 177.082 Q2279.33 177.176 2279.21 177.223 Q2279.12 177.269 2279.03 177.269 L2278.93 177.269 Q2278.68 177.269 2278.54 177.152 Q2278.39 177.035 2278.37 176.895 L2278.37 176.777 Q2278.37 176.45 2279.47 172.234 Q2280.03 170.079 2280.53 167.854 Q2276.78 167.619 2274.46 165.956 Q2272.16 164.293 2272.16 161.061 Q2272.16 159.07 2274.48 152.957 Q2275.58 150.029 2275.58 148.811 Q2275.58 148.272 2275.47 147.944 Q2275.35 147.593 2275.12 147.476 Q2274.88 147.335 2274.74 147.312 Q2274.62 147.289 2274.39 147.289 Q2273.01 147.289 2271.72 148.671 Q2270.43 150.052 2269.54 153.238 Q2269.35 153.823 2269.24 153.964 Q2269.12 154.105 2268.77 154.105 Q2268.18 154.081 2268.18 153.613 Q2268.18 153.425 2268.39 152.699 Q2268.6 151.95 2269.1 150.849 Q2269.61 149.725 2270.31 148.717 Q2271.02 147.687 2272.12 146.961 Q2273.24 146.235 2274.53 146.235 Q2276.29 146.235 2277.36 147.382 Q2278.46 148.507 2278.46 150.17 Q2278.46 150.498 2278.39 150.872 Q2278.32 151.247 2278.25 151.458 Q2278.21 151.669 2278.07 152.067 Q2277.95 152.442 2277.93 152.512 Q2276.73 155.604 2276.12 157.618 Q2275.51 159.609 2275.42 160.194 Q2275.35 160.757 2275.35 161.436 Q2275.35 166.167 2280.81 166.8 L2288.77 135.109 Q2288.91 134.453 2289.03 134.313 Q2289.15 134.149 2289.5 134.149 Q2290.06 134.149 2290.06 134.664 Q2290.06 134.828 2289.92 135.39 L2282 166.893 Q2282.75 166.893 2283.22 166.87 Q2283.69 166.846 2284.67 166.636 Q2285.68 166.401 2286.52 165.98 Q2287.39 165.558 2288.61 164.715 Q2289.82 163.848 2291.02 162.63 Q2292.52 161.108 2293.85 158.555 Q2295.19 156.002 2295.19 153.894 Q2295.19 151.528 2293.48 149.818 Q2293.22 149.584 2293.08 149.443 Q2292.96 149.303 2292.85 149.069 Q2292.75 148.835 2292.75 148.53 Q2292.75 147.734 2293.5 146.984 Q2294.25 146.235 2295.14 146.235 Q2295.94 146.235 2296.59 147.008 Q2297.25 147.78 2297.25 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip950\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip951\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip952\">\n",
+       "    <rect x=\"1386\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"\n",
+       "M147.848 1486.45 L1113.67 1486.45 L1113.67 47.2441 L147.848 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip953\">\n",
+       "    <rect x=\"147\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  175.183,1486.45 175.183,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  357.413,1486.45 357.413,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  539.644,1486.45 539.644,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  721.875,1486.45 721.875,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  904.105,1486.45 904.105,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1086.34,1486.45 1086.34,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1445.72 1113.67,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,1019.93 1113.67,1019.93 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,594.146 1113.67,594.146 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip953)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  147.848,168.361 1113.67,168.361 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 1113.67,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1486.45 147.848,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.183,1486.45 175.183,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  357.413,1486.45 357.413,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  539.644,1486.45 539.644,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  721.875,1486.45 721.875,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  904.105,1486.45 904.105,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1086.34,1486.45 1086.34,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1445.72 159.438,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,1019.93 159.438,1019.93 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,594.146 159.438,594.146 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  147.848,168.361 159.438,168.361 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"M 0 0 M175.183 1508.44 Q171.572 1508.44 169.743 1512 Q167.938 1515.55 167.938 1522.67 Q167.938 1529.78 169.743 1533.35 Q171.572 1536.89 175.183 1536.89 Q178.817 1536.89 180.623 1533.35 Q182.451 1529.78 182.451 1522.67 Q182.451 1515.55 180.623 1512 Q178.817 1508.44 175.183 1508.44 M175.183 1504.73 Q180.993 1504.73 184.049 1509.34 Q187.127 1513.92 187.127 1522.67 Q187.127 1531.4 184.049 1536.01 Q180.993 1540.59 175.183 1540.59 Q169.373 1540.59 166.294 1536.01 Q163.238 1531.4 163.238 1522.67 Q163.238 1513.92 166.294 1509.34 Q169.373 1504.73 175.183 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M347.795 1535.98 L355.434 1535.98 L355.434 1509.62 L347.124 1511.29 L347.124 1507.03 L355.388 1505.36 L360.064 1505.36 L360.064 1535.98 L367.703 1535.98 L367.703 1539.92 L347.795 1539.92 L347.795 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M534.297 1535.98 L550.616 1535.98 L550.616 1539.92 L528.672 1539.92 L528.672 1535.98 Q531.334 1533.23 535.917 1528.6 Q540.524 1523.95 541.704 1522.61 Q543.95 1520.08 544.829 1518.35 Q545.732 1516.59 545.732 1514.9 Q545.732 1512.14 543.788 1510.41 Q541.866 1508.67 538.764 1508.67 Q536.565 1508.67 534.112 1509.43 Q531.681 1510.2 528.903 1511.75 L528.903 1507.03 Q531.727 1505.89 534.181 1505.31 Q536.635 1504.73 538.672 1504.73 Q544.042 1504.73 547.237 1507.42 Q550.431 1510.11 550.431 1514.6 Q550.431 1516.73 549.621 1518.65 Q548.834 1520.54 546.727 1523.14 Q546.149 1523.81 543.047 1527.03 Q539.945 1530.22 534.297 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M726.122 1521.29 Q729.479 1522 731.354 1524.27 Q733.252 1526.54 733.252 1529.87 Q733.252 1534.99 729.733 1537.79 Q726.215 1540.59 719.733 1540.59 Q717.558 1540.59 715.243 1540.15 Q712.951 1539.73 710.497 1538.88 L710.497 1534.36 Q712.442 1535.5 714.757 1536.08 Q717.071 1536.66 719.595 1536.66 Q723.993 1536.66 726.284 1534.92 Q728.599 1533.18 728.599 1529.87 Q728.599 1526.82 726.446 1525.11 Q724.317 1523.37 720.497 1523.37 L716.47 1523.37 L716.47 1519.53 L720.683 1519.53 Q724.132 1519.53 725.96 1518.16 Q727.789 1516.77 727.789 1514.18 Q727.789 1511.52 725.891 1510.11 Q724.016 1508.67 720.497 1508.67 Q718.576 1508.67 716.377 1509.09 Q714.178 1509.5 711.539 1510.38 L711.539 1506.22 Q714.201 1505.48 716.516 1505.11 Q718.854 1504.73 720.914 1504.73 Q726.238 1504.73 729.34 1507.17 Q732.442 1509.57 732.442 1513.69 Q732.442 1516.56 730.798 1518.55 Q729.155 1520.52 726.122 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M907.115 1509.43 L895.309 1527.88 L907.115 1527.88 L907.115 1509.43 M905.888 1505.36 L911.767 1505.36 L911.767 1527.88 L916.698 1527.88 L916.698 1531.77 L911.767 1531.77 L911.767 1539.92 L907.115 1539.92 L907.115 1531.77 L891.513 1531.77 L891.513 1527.26 L905.888 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1076.61 1505.36 L1094.97 1505.36 L1094.97 1509.3 L1080.9 1509.3 L1080.9 1517.77 Q1081.91 1517.42 1082.93 1517.26 Q1083.95 1517.07 1084.97 1517.07 Q1090.76 1517.07 1094.14 1520.24 Q1097.52 1523.42 1097.52 1528.83 Q1097.52 1534.41 1094.04 1537.51 Q1090.57 1540.59 1084.25 1540.59 Q1082.08 1540.59 1079.81 1540.22 Q1077.56 1539.85 1075.16 1539.11 L1075.16 1534.41 Q1077.24 1535.54 1079.46 1536.1 Q1081.68 1536.66 1084.16 1536.66 Q1088.16 1536.66 1090.5 1534.55 Q1092.84 1532.44 1092.84 1528.83 Q1092.84 1525.22 1090.5 1523.11 Q1088.16 1521.01 1084.16 1521.01 Q1082.28 1521.01 1080.41 1521.42 Q1078.56 1521.84 1076.61 1522.72 L1076.61 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M91.9503 1457.12 L96.8345 1457.12 L96.8345 1463 L91.9503 1463 L91.9503 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M111.904 1431.51 Q108.293 1431.51 106.464 1435.08 Q104.659 1438.62 104.659 1445.75 Q104.659 1452.86 106.464 1456.42 Q108.293 1459.96 111.904 1459.96 Q115.538 1459.96 117.344 1456.42 Q119.172 1452.86 119.172 1445.75 Q119.172 1438.62 117.344 1435.08 Q115.538 1431.51 111.904 1431.51 M111.904 1427.81 Q117.714 1427.81 120.77 1432.42 Q123.848 1437 123.848 1445.75 Q123.848 1454.48 120.77 1459.08 Q117.714 1463.67 111.904 1463.67 Q106.094 1463.67 103.015 1459.08 Q99.9595 1454.48 99.9595 1445.75 Q99.9595 1437 103.015 1432.42 Q106.094 1427.81 111.904 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M75.9319 1005.73 Q72.3208 1005.73 70.4921 1009.29 Q68.6865 1012.84 68.6865 1019.97 Q68.6865 1027.07 70.4921 1030.64 Q72.3208 1034.18 75.9319 1034.18 Q79.5661 1034.18 81.3717 1030.64 Q83.2004 1027.07 83.2004 1019.97 Q83.2004 1012.84 81.3717 1009.29 Q79.5661 1005.73 75.9319 1005.73 M75.9319 1002.03 Q81.742 1002.03 84.7976 1006.63 Q87.8763 1011.22 87.8763 1019.97 Q87.8763 1028.69 84.7976 1033.3 Q81.742 1037.88 75.9319 1037.88 Q70.1217 1037.88 67.043 1033.3 Q63.9875 1028.69 63.9875 1019.97 Q63.9875 1011.22 67.043 1006.63 Q70.1217 1002.03 75.9319 1002.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M92.9457 1031.33 L97.8299 1031.33 L97.8299 1037.21 L92.9457 1037.21 L92.9457 1031.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M102.946 1002.65 L121.302 1002.65 L121.302 1006.59 L107.228 1006.59 L107.228 1015.06 Q108.247 1014.71 109.265 1014.55 Q110.284 1014.36 111.302 1014.36 Q117.089 1014.36 120.469 1017.54 Q123.848 1020.71 123.848 1026.12 Q123.848 1031.7 120.376 1034.8 Q116.904 1037.88 110.584 1037.88 Q108.409 1037.88 106.14 1037.51 Q103.895 1037.14 101.487 1036.4 L101.487 1031.7 Q103.571 1032.84 105.793 1033.39 Q108.015 1033.95 110.492 1033.95 Q114.496 1033.95 116.834 1031.84 Q119.172 1029.73 119.172 1026.12 Q119.172 1022.51 116.834 1020.41 Q114.496 1018.3 110.492 1018.3 Q108.617 1018.3 106.742 1018.72 Q104.89 1019.13 102.946 1020.01 L102.946 1002.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M66.9736 607.491 L74.6124 607.491 L74.6124 581.125 L66.3023 582.792 L66.3023 578.533 L74.5661 576.866 L79.242 576.866 L79.242 607.491 L86.8809 607.491 L86.8809 611.426 L66.9736 611.426 L66.9736 607.491 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M91.9503 605.546 L96.8345 605.546 L96.8345 611.426 L91.9503 611.426 L91.9503 605.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M111.904 579.945 Q108.293 579.945 106.464 583.509 Q104.659 587.051 104.659 594.181 Q104.659 601.287 106.464 604.852 Q108.293 608.394 111.904 608.394 Q115.538 608.394 117.344 604.852 Q119.172 601.287 119.172 594.181 Q119.172 587.051 117.344 583.509 Q115.538 579.945 111.904 579.945 M111.904 576.241 Q117.714 576.241 120.77 580.847 Q123.848 585.431 123.848 594.181 Q123.848 602.907 120.77 607.514 Q117.714 612.097 111.904 612.097 Q106.094 612.097 103.015 607.514 Q99.9595 602.907 99.9595 594.181 Q99.9595 585.431 103.015 580.847 Q106.094 576.241 111.904 576.241 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M67.969 181.706 L75.6078 181.706 L75.6078 155.34 L67.2977 157.007 L67.2977 152.748 L75.5615 151.081 L80.2374 151.081 L80.2374 181.706 L87.8763 181.706 L87.8763 185.641 L67.969 185.641 L67.969 181.706 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M92.9457 179.761 L97.8299 179.761 L97.8299 185.641 L92.9457 185.641 L92.9457 179.761 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M102.946 151.081 L121.302 151.081 L121.302 155.016 L107.228 155.016 L107.228 163.488 Q108.247 163.141 109.265 162.979 Q110.284 162.794 111.302 162.794 Q117.089 162.794 120.469 165.965 Q123.848 169.137 123.848 174.553 Q123.848 180.132 120.376 183.234 Q116.904 186.312 110.584 186.312 Q108.409 186.312 106.14 185.942 Q103.895 185.572 101.487 184.831 L101.487 180.132 Q103.571 181.266 105.793 181.822 Q108.015 182.377 110.492 182.377 Q114.496 182.377 116.834 180.271 Q119.172 178.164 119.172 174.553 Q119.172 170.942 116.834 168.836 Q114.496 166.729 110.492 166.729 Q108.617 166.729 106.742 167.146 Q104.89 167.562 102.946 168.442 L102.946 151.081 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip953)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  175.183,1445.72 184.386,1445.66 193.59,1445.28 202.794,1444.25 211.997,1442.27 221.201,1439.05 230.404,1434.35 239.608,1427.93 248.811,1419.62 258.015,1409.29 \n",
+       "  267.219,1396.83 276.422,1382.2 285.626,1365.42 294.829,1346.54 304.033,1325.65 313.236,1302.92 322.44,1278.54 331.643,1252.73 340.847,1225.76 350.051,1197.91 \n",
+       "  359.254,1169.5 368.458,1140.85 377.661,1112.29 386.865,1084.14 396.068,1056.72 405.272,1030.33 414.476,1005.25 423.679,981.717 432.883,959.947 442.086,940.11 \n",
+       "  451.29,922.332 460.493,906.692 469.697,893.219 478.901,881.895 488.104,872.649 497.308,865.366 506.511,859.884 515.715,855.999 524.918,853.472 534.122,852.034 \n",
+       "  543.325,851.387 552.529,851.22 561.733,851.206 570.936,851.018 580.14,850.331 589.343,848.834 598.547,846.231 607.75,842.253 616.954,836.665 626.158,829.264 \n",
+       "  635.361,819.893 644.565,808.437 653.768,794.83 662.972,779.056 672.175,761.148 681.379,741.187 690.583,719.303 699.786,695.668 708.99,670.495 718.193,644.033 \n",
+       "  727.397,616.559 736.6,588.376 745.804,559.798 755.008,531.155 764.211,502.772 773.415,474.972 782.618,448.063 791.822,422.333 801.025,398.045 810.229,375.424 \n",
+       "  819.432,354.662 828.636,335.906 837.84,319.256 847.043,304.767 856.247,292.44 865.45,282.232 874.654,274.045 883.857,267.741 893.061,263.135 902.265,260.003 \n",
+       "  911.468,258.09 920.672,257.11 929.875,256.758 939.079,256.712 948.282,256.647 957.486,256.234 966.69,255.155 975.893,253.105 985.097,249.804 994.3,244.999 \n",
+       "  1003.5,238.47 1012.71,230.04 1021.91,219.573 1031.11,206.98 1040.32,192.222 1049.52,175.307 1058.73,156.296 1067.93,135.295 1077.13,112.457 1086.34,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"\n",
+       "M945.867 216.178 L1081.48 216.178 L1081.48 95.2176 L945.867 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  945.867,216.178 1081.48,216.178 1081.48,95.2176 945.867,95.2176 945.867,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  956.598,155.698 1020.99,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"M 0 0 M1056.87 154.854 Q1056.87 157.22 1055.66 159.585 Q1054.44 161.951 1052.45 163.778 Q1050.46 165.582 1047.74 166.753 Q1045.02 167.924 1042.19 168.017 L1040.36 175.161 Q1040.01 176.895 1039.82 177.082 Q1039.63 177.269 1039.35 177.269 Q1038.77 177.269 1038.77 176.731 Q1038.77 176.567 1039.82 172.515 L1040.95 168.017 Q1036.68 167.783 1034.2 165.324 Q1031.72 162.865 1031.72 159.328 Q1031.72 156.939 1032.94 154.573 Q1034.18 152.184 1036.17 150.38 Q1038.18 148.577 1040.9 147.429 Q1043.62 146.281 1046.4 146.188 L1049.19 135.109 Q1049.33 134.477 1049.45 134.313 Q1049.57 134.149 1049.92 134.149 Q1050.17 134.149 1050.32 134.266 Q1050.46 134.383 1050.46 134.5 L1050.48 134.617 L1050.34 135.296 L1047.65 146.188 Q1050.03 146.352 1051.88 147.195 Q1053.73 148.038 1054.79 149.303 Q1055.84 150.544 1056.36 151.95 Q1056.87 153.355 1056.87 154.854 M1046.12 147.242 Q1043.55 147.476 1041.37 148.741 Q1039.19 150.006 1037.78 151.879 Q1036.38 153.73 1035.61 155.955 Q1034.83 158.157 1034.83 160.335 Q1034.83 162.045 1035.4 163.356 Q1035.98 164.668 1036.94 165.418 Q1037.9 166.144 1038.96 166.542 Q1040.03 166.917 1041.18 166.963 L1046.12 147.242 M1053.73 153.847 Q1053.73 150.802 1051.98 149.092 Q1050.22 147.382 1047.36 147.242 L1042.42 166.963 Q1044.51 166.8 1046.33 165.933 Q1048.18 165.043 1049.52 163.731 Q1050.85 162.396 1051.81 160.757 Q1052.77 159.094 1053.24 157.337 Q1053.73 155.557 1053.73 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"\n",
+       "M1386.93 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1386.93 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1414.27,1486.45 1414.27,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1596.5,1486.45 1596.5,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1778.73,1486.45 1778.73,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1960.96,1486.45 1960.96,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2143.19,1486.45 2143.19,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,1335.59 2352.76,1335.59 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,1069.27 2352.76,1069.27 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,802.947 2352.76,802.947 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,536.626 2352.76,536.626 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1386.93,270.305 2352.76,270.305 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1486.45 1386.93,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.27,1486.45 1414.27,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1596.5,1486.45 1596.5,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1778.73,1486.45 1778.73,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1960.96,1486.45 1960.96,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2143.19,1486.45 2143.19,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.42,1486.45 2325.42,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1335.59 1398.52,1335.59 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,1069.27 1398.52,1069.27 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,802.947 1398.52,802.947 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,536.626 1398.52,536.626 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1386.93,270.305 1398.52,270.305 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"M 0 0 M1414.27 1508.44 Q1410.66 1508.44 1408.83 1512 Q1407.02 1515.55 1407.02 1522.67 Q1407.02 1529.78 1408.83 1533.35 Q1410.66 1536.89 1414.27 1536.89 Q1417.9 1536.89 1419.71 1533.35 Q1421.54 1529.78 1421.54 1522.67 Q1421.54 1515.55 1419.71 1512 Q1417.9 1508.44 1414.27 1508.44 M1414.27 1504.73 Q1420.08 1504.73 1423.13 1509.34 Q1426.21 1513.92 1426.21 1522.67 Q1426.21 1531.4 1423.13 1536.01 Q1420.08 1540.59 1414.27 1540.59 Q1408.46 1540.59 1405.38 1536.01 Q1402.32 1531.4 1402.32 1522.67 Q1402.32 1513.92 1405.38 1509.34 Q1408.46 1504.73 1414.27 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1586.88 1535.98 L1594.52 1535.98 L1594.52 1509.62 L1586.21 1511.29 L1586.21 1507.03 L1594.47 1505.36 L1599.15 1505.36 L1599.15 1535.98 L1606.79 1535.98 L1606.79 1539.92 L1586.88 1539.92 L1586.88 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1773.38 1535.98 L1789.7 1535.98 L1789.7 1539.92 L1767.76 1539.92 L1767.76 1535.98 Q1770.42 1533.23 1775 1528.6 Q1779.61 1523.95 1780.79 1522.61 Q1783.04 1520.08 1783.91 1518.35 Q1784.82 1516.59 1784.82 1514.9 Q1784.82 1512.14 1782.87 1510.41 Q1780.95 1508.67 1777.85 1508.67 Q1775.65 1508.67 1773.2 1509.43 Q1770.77 1510.2 1767.99 1511.75 L1767.99 1507.03 Q1770.81 1505.89 1773.27 1505.31 Q1775.72 1504.73 1777.76 1504.73 Q1783.13 1504.73 1786.32 1507.42 Q1789.52 1510.11 1789.52 1514.6 Q1789.52 1516.73 1788.71 1518.65 Q1787.92 1520.54 1785.81 1523.14 Q1785.23 1523.81 1782.13 1527.03 Q1779.03 1530.22 1773.38 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1965.21 1521.29 Q1968.56 1522 1970.44 1524.27 Q1972.34 1526.54 1972.34 1529.87 Q1972.34 1534.99 1968.82 1537.79 Q1965.3 1540.59 1958.82 1540.59 Q1956.64 1540.59 1954.33 1540.15 Q1952.04 1539.73 1949.58 1538.88 L1949.58 1534.36 Q1951.53 1535.5 1953.84 1536.08 Q1956.16 1536.66 1958.68 1536.66 Q1963.08 1536.66 1965.37 1534.92 Q1967.68 1533.18 1967.68 1529.87 Q1967.68 1526.82 1965.53 1525.11 Q1963.4 1523.37 1959.58 1523.37 L1955.56 1523.37 L1955.56 1519.53 L1959.77 1519.53 Q1963.22 1519.53 1965.05 1518.16 Q1966.87 1516.77 1966.87 1514.18 Q1966.87 1511.52 1964.98 1510.11 Q1963.1 1508.67 1959.58 1508.67 Q1957.66 1508.67 1955.46 1509.09 Q1953.26 1509.5 1950.62 1510.38 L1950.62 1506.22 Q1953.29 1505.48 1955.6 1505.11 Q1957.94 1504.73 1960 1504.73 Q1965.32 1504.73 1968.43 1507.17 Q1971.53 1509.57 1971.53 1513.69 Q1971.53 1516.56 1969.88 1518.55 Q1968.24 1520.52 1965.21 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M2146.2 1509.43 L2134.39 1527.88 L2146.2 1527.88 L2146.2 1509.43 M2144.97 1505.36 L2150.85 1505.36 L2150.85 1527.88 L2155.78 1527.88 L2155.78 1531.77 L2150.85 1531.77 L2150.85 1539.92 L2146.2 1539.92 L2146.2 1531.77 L2130.6 1531.77 L2130.6 1527.26 L2144.97 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M2315.7 1505.36 L2334.06 1505.36 L2334.06 1509.3 L2319.98 1509.3 L2319.98 1517.77 Q2321 1517.42 2322.02 1517.26 Q2323.04 1517.07 2324.06 1517.07 Q2329.84 1517.07 2333.22 1520.24 Q2336.6 1523.42 2336.6 1528.83 Q2336.6 1534.41 2333.13 1537.51 Q2329.66 1540.59 2323.34 1540.59 Q2321.16 1540.59 2318.89 1540.22 Q2316.65 1539.85 2314.24 1539.11 L2314.24 1534.41 Q2316.32 1535.54 2318.55 1536.1 Q2320.77 1536.66 2323.25 1536.66 Q2327.25 1536.66 2329.59 1534.55 Q2331.93 1532.44 2331.93 1528.83 Q2331.93 1525.22 2329.59 1523.11 Q2327.25 1521.01 2323.25 1521.01 Q2321.37 1521.01 2319.5 1521.42 Q2317.64 1521.84 2315.7 1522.72 L2315.7 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1239.53 1334.24 Q1242.89 1334.95 1244.76 1337.22 Q1246.66 1339.49 1246.66 1342.82 Q1246.66 1347.94 1243.14 1350.74 Q1239.62 1353.54 1233.14 1353.54 Q1230.97 1353.54 1228.65 1353.1 Q1226.36 1352.68 1223.91 1351.83 L1223.91 1347.31 Q1225.85 1348.45 1228.17 1349.03 Q1230.48 1349.61 1233 1349.61 Q1237.4 1349.61 1239.69 1347.87 Q1242.01 1346.13 1242.01 1342.82 Q1242.01 1339.77 1239.86 1338.06 Q1237.73 1336.32 1233.91 1336.32 L1229.88 1336.32 L1229.88 1332.48 L1234.09 1332.48 Q1237.54 1332.48 1239.37 1331.11 Q1241.2 1329.72 1241.2 1327.13 Q1241.2 1324.47 1239.3 1323.06 Q1237.43 1321.62 1233.91 1321.62 Q1231.99 1321.62 1229.79 1322.04 Q1227.59 1322.45 1224.95 1323.33 L1224.95 1319.17 Q1227.61 1318.43 1229.93 1318.06 Q1232.26 1317.69 1234.32 1317.69 Q1239.65 1317.69 1242.75 1320.12 Q1245.85 1322.52 1245.85 1326.64 Q1245.85 1329.51 1244.21 1331.5 Q1242.56 1333.47 1239.53 1334.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1251.73 1346.99 L1256.61 1346.99 L1256.61 1352.87 L1251.73 1352.87 L1251.73 1346.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1262.49 1348.93 L1270.13 1348.93 L1270.13 1322.57 L1261.82 1324.24 L1261.82 1319.98 L1270.09 1318.31 L1274.76 1318.31 L1274.76 1348.93 L1282.4 1348.93 L1282.4 1352.87 L1262.49 1352.87 L1262.49 1348.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1300.32 1322.38 L1288.51 1340.83 L1300.32 1340.83 L1300.32 1322.38 M1299.09 1318.31 L1304.97 1318.31 L1304.97 1340.83 L1309.9 1340.83 L1309.9 1344.72 L1304.97 1344.72 L1304.97 1352.87 L1300.32 1352.87 L1300.32 1344.72 L1284.72 1344.72 L1284.72 1340.21 L1299.09 1318.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1324.97 1321.39 Q1321.36 1321.39 1319.53 1324.95 Q1317.73 1328.5 1317.73 1335.62 Q1317.73 1342.73 1319.53 1346.3 Q1321.36 1349.84 1324.97 1349.84 Q1328.61 1349.84 1330.41 1346.3 Q1332.24 1342.73 1332.24 1335.62 Q1332.24 1328.5 1330.41 1324.95 Q1328.61 1321.39 1324.97 1321.39 M1324.97 1317.69 Q1330.78 1317.69 1333.84 1322.29 Q1336.92 1326.87 1336.92 1335.62 Q1336.92 1344.35 1333.84 1348.96 Q1330.78 1353.54 1324.97 1353.54 Q1319.16 1353.54 1316.08 1348.96 Q1313.03 1344.35 1313.03 1335.62 Q1313.03 1326.87 1316.08 1322.29 Q1319.16 1317.69 1324.97 1317.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1342.03 1318.31 L1360.39 1318.31 L1360.39 1322.25 L1346.31 1322.25 L1346.31 1330.72 Q1347.33 1330.37 1348.35 1330.21 Q1349.37 1330.02 1350.39 1330.02 Q1356.17 1330.02 1359.55 1333.19 Q1362.93 1336.37 1362.93 1341.78 Q1362.93 1347.36 1359.46 1350.46 Q1355.99 1353.54 1349.67 1353.54 Q1347.49 1353.54 1345.23 1353.17 Q1342.98 1352.8 1340.57 1352.06 L1340.57 1347.36 Q1342.66 1348.5 1344.88 1349.05 Q1347.1 1349.61 1349.58 1349.61 Q1353.58 1349.61 1355.92 1347.5 Q1358.26 1345.39 1358.26 1341.78 Q1358.26 1338.17 1355.92 1336.06 Q1353.58 1333.96 1349.58 1333.96 Q1347.7 1333.96 1345.83 1334.37 Q1343.98 1334.79 1342.03 1335.67 L1342.03 1318.31 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1239.76 1067.91 Q1243.12 1068.63 1244.99 1070.9 Q1246.89 1073.17 1246.89 1076.5 Q1246.89 1081.62 1243.37 1084.42 Q1239.86 1087.22 1233.37 1087.22 Q1231.2 1087.22 1228.88 1086.78 Q1226.59 1086.36 1224.14 1085.51 L1224.14 1080.99 Q1226.08 1082.13 1228.4 1082.71 Q1230.71 1083.28 1233.24 1083.28 Q1237.63 1083.28 1239.93 1081.55 Q1242.24 1079.81 1242.24 1076.5 Q1242.24 1073.45 1240.09 1071.73 Q1237.96 1070 1234.14 1070 L1230.11 1070 L1230.11 1066.16 L1234.32 1066.16 Q1237.77 1066.16 1239.6 1064.79 Q1241.43 1063.4 1241.43 1060.81 Q1241.43 1058.15 1239.53 1056.73 Q1237.66 1055.3 1234.14 1055.3 Q1232.22 1055.3 1230.02 1055.72 Q1227.82 1056.13 1225.18 1057.01 L1225.18 1052.85 Q1227.84 1052.1 1230.16 1051.73 Q1232.49 1051.36 1234.55 1051.36 Q1239.88 1051.36 1242.98 1053.79 Q1246.08 1056.2 1246.08 1060.32 Q1246.08 1063.19 1244.44 1065.18 Q1242.8 1067.15 1239.76 1067.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1251.96 1080.67 L1256.85 1080.67 L1256.85 1086.55 L1251.96 1086.55 L1251.96 1080.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1262.73 1082.61 L1270.36 1082.61 L1270.36 1056.25 L1262.05 1057.91 L1262.05 1053.66 L1270.32 1051.99 L1274.99 1051.99 L1274.99 1082.61 L1282.63 1082.61 L1282.63 1086.55 L1262.73 1086.55 L1262.73 1082.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1300.55 1056.06 L1288.74 1074.51 L1300.55 1074.51 L1300.55 1056.06 M1299.32 1051.99 L1305.2 1051.99 L1305.2 1074.51 L1310.13 1074.51 L1310.13 1078.4 L1305.2 1078.4 L1305.2 1086.55 L1300.55 1086.55 L1300.55 1078.4 L1284.95 1078.4 L1284.95 1073.89 L1299.32 1051.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1316.01 1082.61 L1323.65 1082.61 L1323.65 1056.25 L1315.34 1057.91 L1315.34 1053.66 L1323.61 1051.99 L1328.28 1051.99 L1328.28 1082.61 L1335.92 1082.61 L1335.92 1086.55 L1316.01 1086.55 L1316.01 1082.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1350.99 1055.07 Q1347.38 1055.07 1345.55 1058.63 Q1343.74 1062.17 1343.74 1069.3 Q1343.74 1076.41 1345.55 1079.97 Q1347.38 1083.52 1350.99 1083.52 Q1354.62 1083.52 1356.43 1079.97 Q1358.26 1076.41 1358.26 1069.3 Q1358.26 1062.17 1356.43 1058.63 Q1354.62 1055.07 1350.99 1055.07 M1350.99 1051.36 Q1356.8 1051.36 1359.86 1055.97 Q1362.93 1060.55 1362.93 1069.3 Q1362.93 1078.03 1359.86 1082.64 Q1356.8 1087.22 1350.99 1087.22 Q1345.18 1087.22 1342.1 1082.64 Q1339.04 1078.03 1339.04 1069.3 Q1339.04 1060.55 1342.1 1055.97 Q1345.18 1051.36 1350.99 1051.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1240.76 801.593 Q1244.11 802.311 1245.99 804.579 Q1247.89 806.848 1247.89 810.181 Q1247.89 815.297 1244.37 818.098 Q1240.85 820.899 1234.37 820.899 Q1232.19 820.899 1229.88 820.459 Q1227.59 820.042 1225.13 819.186 L1225.13 814.672 Q1227.08 815.806 1229.39 816.385 Q1231.71 816.963 1234.23 816.963 Q1238.63 816.963 1240.92 815.227 Q1243.24 813.491 1243.24 810.181 Q1243.24 807.126 1241.08 805.413 Q1238.95 803.677 1235.13 803.677 L1231.11 803.677 L1231.11 799.834 L1235.32 799.834 Q1238.77 799.834 1240.6 798.468 Q1242.43 797.079 1242.43 794.487 Q1242.43 791.825 1240.53 790.413 Q1238.65 788.978 1235.13 788.978 Q1233.21 788.978 1231.01 789.394 Q1228.81 789.811 1226.18 790.69 L1226.18 786.524 Q1228.84 785.783 1231.15 785.413 Q1233.49 785.042 1235.55 785.042 Q1240.87 785.042 1243.98 787.473 Q1247.08 789.88 1247.08 794.001 Q1247.08 796.871 1245.43 798.862 Q1243.79 800.829 1240.76 801.593 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1252.96 814.348 L1257.84 814.348 L1257.84 820.227 L1252.96 820.227 L1252.96 814.348 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1263.72 816.292 L1271.36 816.292 L1271.36 789.927 L1263.05 791.593 L1263.05 787.334 L1271.31 785.667 L1275.99 785.667 L1275.99 816.292 L1283.63 816.292 L1283.63 820.227 L1263.72 820.227 L1263.72 816.292 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1301.55 789.741 L1289.74 808.19 L1301.55 808.19 L1301.55 789.741 M1300.32 785.667 L1306.2 785.667 L1306.2 808.19 L1311.13 808.19 L1311.13 812.079 L1306.2 812.079 L1306.2 820.227 L1301.55 820.227 L1301.55 812.079 L1285.94 812.079 L1285.94 807.565 L1300.32 785.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1317.01 816.292 L1324.65 816.292 L1324.65 789.927 L1316.34 791.593 L1316.34 787.334 L1324.6 785.667 L1329.28 785.667 L1329.28 816.292 L1336.92 816.292 L1336.92 820.227 L1317.01 820.227 L1317.01 816.292 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1342.03 785.667 L1360.39 785.667 L1360.39 789.603 L1346.31 789.603 L1346.31 798.075 Q1347.33 797.727 1348.35 797.565 Q1349.37 797.38 1350.39 797.38 Q1356.17 797.38 1359.55 800.552 Q1362.93 803.723 1362.93 809.139 Q1362.93 814.718 1359.46 817.82 Q1355.99 820.899 1349.67 820.899 Q1347.49 820.899 1345.23 820.528 Q1342.98 820.158 1340.57 819.417 L1340.57 814.718 Q1342.66 815.852 1344.88 816.408 Q1347.1 816.963 1349.58 816.963 Q1353.58 816.963 1355.92 814.857 Q1358.26 812.751 1358.26 809.139 Q1358.26 805.528 1355.92 803.422 Q1353.58 801.315 1349.58 801.315 Q1347.7 801.315 1345.83 801.732 Q1343.98 802.149 1342.03 803.028 L1342.03 785.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1240.13 535.272 Q1243.49 535.989 1245.36 538.258 Q1247.26 540.526 1247.26 543.86 Q1247.26 548.975 1243.74 551.776 Q1240.23 554.577 1233.74 554.577 Q1231.57 554.577 1229.25 554.137 Q1226.96 553.721 1224.51 552.864 L1224.51 548.35 Q1226.45 549.485 1228.77 550.063 Q1231.08 550.642 1233.61 550.642 Q1238 550.642 1240.3 548.906 Q1242.61 547.17 1242.61 543.86 Q1242.61 540.804 1240.46 539.091 Q1238.33 537.355 1234.51 537.355 L1230.48 537.355 L1230.48 533.513 L1234.69 533.513 Q1238.14 533.513 1239.97 532.147 Q1241.8 530.758 1241.8 528.165 Q1241.8 525.503 1239.9 524.091 Q1238.03 522.656 1234.51 522.656 Q1232.59 522.656 1230.39 523.073 Q1228.19 523.489 1225.55 524.369 L1225.55 520.202 Q1228.21 519.462 1230.53 519.091 Q1232.86 518.721 1234.93 518.721 Q1240.25 518.721 1243.35 521.152 Q1246.45 523.559 1246.45 527.679 Q1246.45 530.55 1244.81 532.54 Q1243.17 534.508 1240.13 535.272 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1252.33 548.026 L1257.22 548.026 L1257.22 553.906 L1252.33 553.906 L1252.33 548.026 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1263.1 549.971 L1270.74 549.971 L1270.74 523.605 L1262.42 525.272 L1262.42 521.013 L1270.69 519.346 L1275.36 519.346 L1275.36 549.971 L1283 549.971 L1283 553.906 L1263.1 553.906 L1263.1 549.971 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1300.92 523.42 L1289.11 541.869 L1300.92 541.869 L1300.92 523.42 M1299.69 519.346 L1305.57 519.346 L1305.57 541.869 L1310.5 541.869 L1310.5 545.758 L1305.57 545.758 L1305.57 553.906 L1300.92 553.906 L1300.92 545.758 L1285.32 545.758 L1285.32 541.244 L1299.69 519.346 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1319.6 549.971 L1335.92 549.971 L1335.92 553.906 L1313.98 553.906 L1313.98 549.971 Q1316.64 547.216 1321.22 542.587 Q1325.83 537.934 1327.01 536.591 Q1329.25 534.068 1330.13 532.332 Q1331.04 530.573 1331.04 528.883 Q1331.04 526.128 1329.09 524.392 Q1327.17 522.656 1324.07 522.656 Q1321.87 522.656 1319.42 523.42 Q1316.98 524.184 1314.21 525.735 L1314.21 521.013 Q1317.03 519.878 1319.48 519.3 Q1321.94 518.721 1323.98 518.721 Q1329.35 518.721 1332.54 521.406 Q1335.73 524.091 1335.73 528.582 Q1335.73 530.712 1334.92 532.633 Q1334.14 534.531 1332.03 537.124 Q1331.45 537.795 1328.35 541.013 Q1325.25 544.207 1319.6 549.971 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1350.99 522.425 Q1347.38 522.425 1345.55 525.989 Q1343.74 529.531 1343.74 536.661 Q1343.74 543.767 1345.55 547.332 Q1347.38 550.874 1350.99 550.874 Q1354.62 550.874 1356.43 547.332 Q1358.26 543.767 1358.26 536.661 Q1358.26 529.531 1356.43 525.989 Q1354.62 522.425 1350.99 522.425 M1350.99 518.721 Q1356.8 518.721 1359.86 523.327 Q1362.93 527.911 1362.93 536.661 Q1362.93 545.388 1359.86 549.994 Q1356.8 554.577 1350.99 554.577 Q1345.18 554.577 1342.1 549.994 Q1339.04 545.388 1339.04 536.661 Q1339.04 527.911 1342.1 523.327 Q1345.18 518.721 1350.99 518.721 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1241.13 268.95 Q1244.49 269.668 1246.36 271.937 Q1248.26 274.205 1248.26 277.538 Q1248.26 282.654 1244.74 285.455 Q1241.22 288.256 1234.74 288.256 Q1232.56 288.256 1230.25 287.816 Q1227.96 287.399 1225.5 286.543 L1225.5 282.029 Q1227.45 283.163 1229.76 283.742 Q1232.08 284.321 1234.6 284.321 Q1239 284.321 1241.29 282.585 Q1243.61 280.849 1243.61 277.538 Q1243.61 274.483 1241.45 272.77 Q1239.32 271.034 1235.5 271.034 L1231.48 271.034 L1231.48 267.191 L1235.69 267.191 Q1239.14 267.191 1240.97 265.826 Q1242.8 264.437 1242.8 261.844 Q1242.8 259.182 1240.9 257.77 Q1239.02 256.335 1235.5 256.335 Q1233.58 256.335 1231.38 256.751 Q1229.18 257.168 1226.55 258.048 L1226.55 253.881 Q1229.21 253.14 1231.52 252.77 Q1233.86 252.4 1235.92 252.4 Q1241.24 252.4 1244.35 254.83 Q1247.45 257.238 1247.45 261.358 Q1247.45 264.228 1245.8 266.219 Q1244.16 268.187 1241.13 268.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1253.33 281.705 L1258.21 281.705 L1258.21 287.585 L1253.33 287.585 L1253.33 281.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1264.09 283.649 L1271.73 283.649 L1271.73 257.284 L1263.42 258.951 L1263.42 254.691 L1271.68 253.025 L1276.36 253.025 L1276.36 283.649 L1284 283.649 L1284 287.585 L1264.09 287.585 L1264.09 283.649 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1301.92 257.099 L1290.11 275.548 L1301.92 275.548 L1301.92 257.099 M1300.69 253.025 L1306.57 253.025 L1306.57 275.548 L1311.5 275.548 L1311.5 279.437 L1306.57 279.437 L1306.57 287.585 L1301.92 287.585 L1301.92 279.437 L1286.31 279.437 L1286.31 274.923 L1300.69 253.025 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1320.6 283.649 L1336.92 283.649 L1336.92 287.585 L1314.97 287.585 L1314.97 283.649 Q1317.63 280.895 1322.22 276.265 Q1326.82 271.613 1328 270.27 Q1330.25 267.747 1331.13 266.011 Q1332.03 264.251 1332.03 262.562 Q1332.03 259.807 1330.09 258.071 Q1328.17 256.335 1325.06 256.335 Q1322.86 256.335 1320.41 257.099 Q1317.98 257.863 1315.2 259.414 L1315.2 254.691 Q1318.03 253.557 1320.48 252.978 Q1322.93 252.4 1324.97 252.4 Q1330.34 252.4 1333.54 255.085 Q1336.73 257.77 1336.73 262.261 Q1336.73 264.39 1335.92 266.312 Q1335.13 268.21 1333.03 270.802 Q1332.45 271.474 1329.35 274.691 Q1326.24 277.886 1320.6 283.649 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M 0 0 M1342.03 253.025 L1360.39 253.025 L1360.39 256.96 L1346.31 256.96 L1346.31 265.432 Q1347.33 265.085 1348.35 264.923 Q1349.37 264.738 1350.39 264.738 Q1356.17 264.738 1359.55 267.909 Q1362.93 271.08 1362.93 276.497 Q1362.93 282.075 1359.46 285.177 Q1355.99 288.256 1349.67 288.256 Q1347.49 288.256 1345.23 287.886 Q1342.98 287.515 1340.57 286.774 L1340.57 282.075 Q1342.66 283.21 1344.88 283.765 Q1347.1 284.321 1349.58 284.321 Q1353.58 284.321 1355.92 282.214 Q1358.26 280.108 1358.26 276.497 Q1358.26 272.886 1355.92 270.779 Q1353.58 268.673 1349.58 268.673 Q1347.7 268.673 1345.83 269.089 Q1343.98 269.506 1342.03 270.386 L1342.03 253.025 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip952)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.27,753.596 1423.47,748.553 1432.68,715.645 1441.88,638.015 1451.08,516.723 1460.29,370.992 1469.49,231.667 1478.69,130.313 1487.9,87.9763 1497.1,107.763 \n",
+       "  1506.3,173.982 1515.51,258.158 1524.71,329.676 1533.91,367.107 1543.12,366.024 1552.32,340.416 1561.53,317.188 1570.73,325.812 1579.93,386.953 1589.14,504.295 \n",
+       "  1598.34,662.584 1607.54,832.624 1616.75,981.385 1625.95,1083.51 1635.15,1130.02 1644.36,1130.93 1653.56,1110.99 1662.76,1099.9 1671.97,1120.88 1681.17,1181.61 \n",
+       "  1690.38,1271.02 1699.58,1363.14 1708.78,1426.52 1717.99,1435.85 1727.19,1381.35 1736.39,1272.59 1745.6,1135.15 1754.8,1001.52 1764,899.448 1773.21,842.169 \n",
+       "  1782.41,824.056 1791.61,823.318 1800.82,810.731 1810.02,761.139 1819.23,663.465 1828.43,525.484 1837.63,371.598 1846.84,234.399 1856.04,143.152 1865.24,113.44 \n",
+       "  1874.45,141.808 1883.65,207.379 1892.85,279.833 1902.06,330.778 1911.26,344.305 1920.46,322.801 1929.67,285.891 1938.87,262.898 1948.08,281.639 1957.28,357.704 \n",
+       "  1966.48,488.188 1975.69,652.198 1984.89,817.951 1994.09,953.85 2003.3,1039.47 2012.5,1072.41 2021.7,1068.51 2030.91,1055.38 2040.11,1061.56 2049.31,1105.46 \n",
+       "  2058.52,1188.05 2067.72,1292.11 2076.93,1388.28 2086.13,1445.72 2095.33,1443.42 2104.54,1378 2113.74,1265.07 2122.94,1133.64 2132.15,1015.66 2141.35,934.599 \n",
+       "  2150.55,897.151 2159.76,891.333 2168.96,891.492 2178.16,868.455 2187.37,801.006 2196.57,684.427 2205.77,532.932 2214.98,375.059 2224.18,243.726 2233.39,164.62 \n",
+       "  2242.59,147.199 2251.79,181.642 2261,242.866 2270.2,300.108 2279.4,328.5 2288.61,318.371 2297.81,278.798 2307.01,234.113 2316.22,214.674 2325.42,245.32 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"\n",
+       "M2182.33 216.178 L2320.56 216.178 L2320.56 95.2176 L2182.33 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2182.33,216.178 2320.56,216.178 2320.56,95.2176 2182.33,95.2176 2182.33,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip950)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2193.06,155.698 2257.45,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip950)\" d=\"M 0 0 M2297.25 149.584 Q2297.25 150.989 2296.71 153.449 Q2296.2 155.908 2295.77 157.079 Q2294.6 160.194 2292.26 162.818 Q2290.97 164.27 2289.57 165.324 Q2288.19 166.354 2287.15 166.87 Q2286.12 167.362 2284.91 167.619 Q2283.69 167.9 2283.13 167.924 Q2282.56 167.971 2281.77 167.971 L2279.94 175.114 Q2279.57 176.965 2279.38 177.082 Q2279.33 177.176 2279.21 177.223 Q2279.12 177.269 2279.03 177.269 L2278.93 177.269 Q2278.68 177.269 2278.54 177.152 Q2278.39 177.035 2278.37 176.895 L2278.37 176.777 Q2278.37 176.45 2279.47 172.234 Q2280.03 170.079 2280.53 167.854 Q2276.78 167.619 2274.46 165.956 Q2272.16 164.293 2272.16 161.061 Q2272.16 159.07 2274.48 152.957 Q2275.58 150.029 2275.58 148.811 Q2275.58 148.272 2275.47 147.944 Q2275.35 147.593 2275.12 147.476 Q2274.88 147.335 2274.74 147.312 Q2274.62 147.289 2274.39 147.289 Q2273.01 147.289 2271.72 148.671 Q2270.43 150.052 2269.54 153.238 Q2269.35 153.823 2269.24 153.964 Q2269.12 154.105 2268.77 154.105 Q2268.18 154.081 2268.18 153.613 Q2268.18 153.425 2268.39 152.699 Q2268.6 151.95 2269.1 150.849 Q2269.61 149.725 2270.31 148.717 Q2271.02 147.687 2272.12 146.961 Q2273.24 146.235 2274.53 146.235 Q2276.29 146.235 2277.36 147.382 Q2278.46 148.507 2278.46 150.17 Q2278.46 150.498 2278.39 150.872 Q2278.32 151.247 2278.25 151.458 Q2278.21 151.669 2278.07 152.067 Q2277.95 152.442 2277.93 152.512 Q2276.73 155.604 2276.12 157.618 Q2275.51 159.609 2275.42 160.194 Q2275.35 160.757 2275.35 161.436 Q2275.35 166.167 2280.81 166.8 L2288.77 135.109 Q2288.91 134.453 2289.03 134.313 Q2289.15 134.149 2289.5 134.149 Q2290.06 134.149 2290.06 134.664 Q2290.06 134.828 2289.92 135.39 L2282 166.893 Q2282.75 166.893 2283.22 166.87 Q2283.69 166.846 2284.67 166.636 Q2285.68 166.401 2286.52 165.98 Q2287.39 165.558 2288.61 164.715 Q2289.82 163.848 2291.02 162.63 Q2292.52 161.108 2293.85 158.555 Q2295.19 156.002 2295.19 153.894 Q2295.19 151.528 2293.48 149.818 Q2293.22 149.584 2293.08 149.443 Q2292.96 149.303 2292.85 149.069 Q2292.75 148.835 2292.75 148.53 Q2292.75 147.734 2293.5 146.984 Q2294.25 146.235 2295.14 146.235 Q2295.94 146.235 2296.59 147.008 Q2297.25 147.78 2297.25 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip990\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip991\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip992\">\n",
+       "    <rect x=\"1386\" y=\"47\" width=\"967\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"\n",
+       "M174.862 1486.45 L1127 1486.45 L1127 47.2441 L174.862 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip993\">\n",
+       "    <rect x=\"174\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  201.809,1486.45 201.809,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  381.459,1486.45 381.459,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  561.108,1486.45 561.108,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  740.758,1486.45 740.758,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  920.407,1486.45 920.407,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1100.06,1486.45 1100.06,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,1445.72 1127,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,1161.18 1127,1161.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,876.637 1127,876.637 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,592.098 1127,592.098 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip993)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,307.559 1127,307.559 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1486.45 1127,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1486.45 174.862,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  201.809,1486.45 201.809,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  381.459,1486.45 381.459,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  561.108,1486.45 561.108,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  740.758,1486.45 740.758,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  920.407,1486.45 920.407,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1100.06,1486.45 1100.06,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1445.72 186.288,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1161.18 186.288,1161.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,876.637 186.288,876.637 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,592.098 186.288,592.098 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,307.559 186.288,307.559 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"M 0 0 M201.809 1508.44 Q198.198 1508.44 196.37 1512 Q194.564 1515.55 194.564 1522.67 Q194.564 1529.78 196.37 1533.35 Q198.198 1536.89 201.809 1536.89 Q205.444 1536.89 207.249 1533.35 Q209.078 1529.78 209.078 1522.67 Q209.078 1515.55 207.249 1512 Q205.444 1508.44 201.809 1508.44 M201.809 1504.73 Q207.62 1504.73 210.675 1509.34 Q213.754 1513.92 213.754 1522.67 Q213.754 1531.4 210.675 1536.01 Q207.62 1540.59 201.809 1540.59 Q195.999 1540.59 192.921 1536.01 Q189.865 1531.4 189.865 1522.67 Q189.865 1513.92 192.921 1509.34 Q195.999 1504.73 201.809 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M371.841 1535.98 L379.48 1535.98 L379.48 1509.62 L371.17 1511.29 L371.17 1507.03 L379.433 1505.36 L384.109 1505.36 L384.109 1535.98 L391.748 1535.98 L391.748 1539.92 L371.841 1539.92 L371.841 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M555.761 1535.98 L572.08 1535.98 L572.08 1539.92 L550.136 1539.92 L550.136 1535.98 Q552.798 1533.23 557.381 1528.6 Q561.988 1523.95 563.168 1522.61 Q565.414 1520.08 566.293 1518.35 Q567.196 1516.59 567.196 1514.9 Q567.196 1512.14 565.252 1510.41 Q563.33 1508.67 560.229 1508.67 Q558.03 1508.67 555.576 1509.43 Q553.145 1510.2 550.368 1511.75 L550.368 1507.03 Q553.192 1505.89 555.645 1505.31 Q558.099 1504.73 560.136 1504.73 Q565.506 1504.73 568.701 1507.42 Q571.895 1510.11 571.895 1514.6 Q571.895 1516.73 571.085 1518.65 Q570.298 1520.54 568.191 1523.14 Q567.613 1523.81 564.511 1527.03 Q561.409 1530.22 555.761 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M745.005 1521.29 Q748.362 1522 750.237 1524.27 Q752.135 1526.54 752.135 1529.87 Q752.135 1534.99 748.616 1537.79 Q745.098 1540.59 738.616 1540.59 Q736.44 1540.59 734.126 1540.15 Q731.834 1539.73 729.38 1538.88 L729.38 1534.36 Q731.325 1535.5 733.64 1536.08 Q735.954 1536.66 738.477 1536.66 Q742.876 1536.66 745.167 1534.92 Q747.482 1533.18 747.482 1529.87 Q747.482 1526.82 745.329 1525.11 Q743.2 1523.37 739.38 1523.37 L735.353 1523.37 L735.353 1519.53 L739.565 1519.53 Q743.014 1519.53 744.843 1518.16 Q746.672 1516.77 746.672 1514.18 Q746.672 1511.52 744.774 1510.11 Q742.899 1508.67 739.38 1508.67 Q737.459 1508.67 735.26 1509.09 Q733.061 1509.5 730.422 1510.38 L730.422 1506.22 Q733.084 1505.48 735.399 1505.11 Q737.737 1504.73 739.797 1504.73 Q745.121 1504.73 748.223 1507.17 Q751.325 1509.57 751.325 1513.69 Q751.325 1516.56 749.681 1518.55 Q748.038 1520.52 745.005 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M923.416 1509.43 L911.611 1527.88 L923.416 1527.88 L923.416 1509.43 M922.189 1505.36 L928.069 1505.36 L928.069 1527.88 L932.999 1527.88 L932.999 1531.77 L928.069 1531.77 L928.069 1539.92 L923.416 1539.92 L923.416 1531.77 L907.814 1531.77 L907.814 1527.26 L922.189 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1090.33 1505.36 L1108.69 1505.36 L1108.69 1509.3 L1094.62 1509.3 L1094.62 1517.77 Q1095.64 1517.42 1096.65 1517.26 Q1097.67 1517.07 1098.69 1517.07 Q1104.48 1517.07 1107.86 1520.24 Q1111.24 1523.42 1111.24 1528.83 Q1111.24 1534.41 1107.76 1537.51 Q1104.29 1540.59 1097.97 1540.59 Q1095.8 1540.59 1093.53 1540.22 Q1091.28 1539.85 1088.88 1539.11 L1088.88 1534.41 Q1090.96 1535.54 1093.18 1536.1 Q1095.4 1536.66 1097.88 1536.66 Q1101.89 1536.66 1104.22 1534.55 Q1106.56 1532.44 1106.56 1528.83 Q1106.56 1525.22 1104.22 1523.11 Q1101.89 1521.01 1097.88 1521.01 Q1096.01 1521.01 1094.13 1521.42 Q1092.28 1521.84 1090.33 1522.72 L1090.33 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M91.9503 1457.12 L96.8345 1457.12 L96.8345 1463 L91.9503 1463 L91.9503 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M111.904 1431.51 Q108.293 1431.51 106.464 1435.08 Q104.659 1438.62 104.659 1445.75 Q104.659 1452.86 106.464 1456.42 Q108.293 1459.96 111.904 1459.96 Q115.538 1459.96 117.344 1456.42 Q119.172 1452.86 119.172 1445.75 Q119.172 1438.62 117.344 1435.08 Q115.538 1431.51 111.904 1431.51 M111.904 1427.81 Q117.714 1427.81 120.77 1432.42 Q123.848 1437 123.848 1445.75 Q123.848 1454.48 120.77 1459.08 Q117.714 1463.67 111.904 1463.67 Q106.094 1463.67 103.015 1459.08 Q99.9595 1454.48 99.9595 1445.75 Q99.9595 1437 103.015 1432.42 Q106.094 1427.81 111.904 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M138.918 1431.51 Q135.307 1431.51 133.478 1435.08 Q131.672 1438.62 131.672 1445.75 Q131.672 1452.86 133.478 1456.42 Q135.307 1459.96 138.918 1459.96 Q142.552 1459.96 144.357 1456.42 Q146.186 1452.86 146.186 1445.75 Q146.186 1438.62 144.357 1435.08 Q142.552 1431.51 138.918 1431.51 M138.918 1427.81 Q144.728 1427.81 147.783 1432.42 Q150.862 1437 150.862 1445.75 Q150.862 1454.48 147.783 1459.08 Q144.728 1463.67 138.918 1463.67 Q133.107 1463.67 130.029 1459.08 Q126.973 1454.48 126.973 1445.75 Q126.973 1437 130.029 1432.42 Q133.107 1427.81 138.918 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M77.5291 1146.98 Q73.918 1146.98 72.0893 1150.54 Q70.2838 1154.08 70.2838 1161.21 Q70.2838 1168.32 72.0893 1171.88 Q73.918 1175.42 77.5291 1175.42 Q81.1633 1175.42 82.9689 1171.88 Q84.7976 1168.32 84.7976 1161.21 Q84.7976 1154.08 82.9689 1150.54 Q81.1633 1146.98 77.5291 1146.98 M77.5291 1143.27 Q83.3392 1143.27 86.3948 1147.88 Q89.4735 1152.46 89.4735 1161.21 Q89.4735 1169.94 86.3948 1174.54 Q83.3392 1179.13 77.5291 1179.13 Q71.7189 1179.13 68.6402 1174.54 Q65.5847 1169.94 65.5847 1161.21 Q65.5847 1152.46 68.6402 1147.88 Q71.7189 1143.27 77.5291 1143.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M94.5429 1172.58 L99.4271 1172.58 L99.4271 1178.46 L94.5429 1178.46 L94.5429 1172.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M108.524 1174.52 L124.844 1174.52 L124.844 1178.46 L102.899 1178.46 L102.899 1174.52 Q105.561 1171.77 110.145 1167.14 Q114.751 1162.48 115.932 1161.14 Q118.177 1158.62 119.057 1156.88 Q119.959 1155.12 119.959 1153.43 Q119.959 1150.68 118.015 1148.94 Q116.094 1147.21 112.992 1147.21 Q110.793 1147.21 108.339 1147.97 Q105.909 1148.73 103.131 1150.29 L103.131 1145.56 Q105.955 1144.43 108.409 1143.85 Q110.862 1143.27 112.899 1143.27 Q118.27 1143.27 121.464 1145.96 Q124.658 1148.64 124.658 1153.13 Q124.658 1155.26 123.848 1157.18 Q123.061 1159.08 120.955 1161.67 Q120.376 1162.35 117.274 1165.56 Q114.172 1168.76 108.524 1174.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M129.959 1143.9 L148.316 1143.9 L148.316 1147.83 L134.242 1147.83 L134.242 1156.3 Q135.26 1155.96 136.279 1155.79 Q137.297 1155.61 138.316 1155.61 Q144.103 1155.61 147.482 1158.78 Q150.862 1161.95 150.862 1167.37 Q150.862 1172.95 147.39 1176.05 Q143.918 1179.13 137.598 1179.13 Q135.422 1179.13 133.154 1178.76 Q130.908 1178.39 128.501 1177.65 L128.501 1172.95 Q130.584 1174.08 132.807 1174.64 Q135.029 1175.19 137.506 1175.19 Q141.51 1175.19 143.848 1173.09 Q146.186 1170.98 146.186 1167.37 Q146.186 1163.76 143.848 1161.65 Q141.51 1159.54 137.506 1159.54 Q135.631 1159.54 133.756 1159.96 Q131.904 1160.38 129.959 1161.26 L129.959 1143.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M75.9319 862.436 Q72.3208 862.436 70.4921 866.001 Q68.6865 869.543 68.6865 876.672 Q68.6865 883.779 70.4921 887.343 Q72.3208 890.885 75.9319 890.885 Q79.5661 890.885 81.3717 887.343 Q83.2004 883.779 83.2004 876.672 Q83.2004 869.543 81.3717 866.001 Q79.5661 862.436 75.9319 862.436 M75.9319 858.732 Q81.742 858.732 84.7976 863.339 Q87.8763 867.922 87.8763 876.672 Q87.8763 885.399 84.7976 890.005 Q81.742 894.589 75.9319 894.589 Q70.1217 894.589 67.043 890.005 Q63.9875 885.399 63.9875 876.672 Q63.9875 867.922 67.043 863.339 Q70.1217 858.732 75.9319 858.732 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M92.9457 888.038 L97.8299 888.038 L97.8299 893.917 L92.9457 893.917 L92.9457 888.038 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M102.946 859.357 L121.302 859.357 L121.302 863.293 L107.228 863.293 L107.228 871.765 Q108.247 871.418 109.265 871.256 Q110.284 871.07 111.302 871.07 Q117.089 871.07 120.469 874.242 Q123.848 877.413 123.848 882.83 Q123.848 888.408 120.376 891.51 Q116.904 894.589 110.584 894.589 Q108.409 894.589 106.14 894.218 Q103.895 893.848 101.487 893.107 L101.487 888.408 Q103.571 889.543 105.793 890.098 Q108.015 890.654 110.492 890.654 Q114.496 890.654 116.834 888.547 Q119.172 886.441 119.172 882.83 Q119.172 879.218 116.834 877.112 Q114.496 875.006 110.492 875.006 Q108.617 875.006 106.742 875.422 Q104.89 875.839 102.946 876.719 L102.946 859.357 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M138.918 862.436 Q135.307 862.436 133.478 866.001 Q131.672 869.543 131.672 876.672 Q131.672 883.779 133.478 887.343 Q135.307 890.885 138.918 890.885 Q142.552 890.885 144.357 887.343 Q146.186 883.779 146.186 876.672 Q146.186 869.543 144.357 866.001 Q142.552 862.436 138.918 862.436 M138.918 858.732 Q144.728 858.732 147.783 863.339 Q150.862 867.922 150.862 876.672 Q150.862 885.399 147.783 890.005 Q144.728 894.589 138.918 894.589 Q133.107 894.589 130.029 890.005 Q126.973 885.399 126.973 876.672 Q126.973 867.922 130.029 863.339 Q133.107 858.732 138.918 858.732 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M76.8346 577.897 Q73.2236 577.897 71.3949 581.462 Q69.5893 585.004 69.5893 592.133 Q69.5893 599.24 71.3949 602.804 Q73.2236 606.346 76.8346 606.346 Q80.4689 606.346 82.2744 602.804 Q84.1031 599.24 84.1031 592.133 Q84.1031 585.004 82.2744 581.462 Q80.4689 577.897 76.8346 577.897 M76.8346 574.193 Q82.6448 574.193 85.7003 578.8 Q88.779 583.383 88.779 592.133 Q88.779 600.86 85.7003 605.466 Q82.6448 610.05 76.8346 610.05 Q71.0245 610.05 67.9458 605.466 Q64.8903 600.86 64.8903 592.133 Q64.8903 583.383 67.9458 578.8 Q71.0245 574.193 76.8346 574.193 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M93.8484 603.499 L98.7327 603.499 L98.7327 609.378 L93.8484 609.378 L93.8484 603.499 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M102.622 574.818 L124.844 574.818 L124.844 576.809 L112.297 609.378 L107.413 609.378 L119.219 578.754 L102.622 578.754 L102.622 574.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M129.959 574.818 L148.316 574.818 L148.316 578.754 L134.242 578.754 L134.242 587.226 Q135.26 586.878 136.279 586.716 Q137.297 586.531 138.316 586.531 Q144.103 586.531 147.482 589.703 Q150.862 592.874 150.862 598.29 Q150.862 603.869 147.39 606.971 Q143.918 610.05 137.598 610.05 Q135.422 610.05 133.154 609.679 Q130.908 609.309 128.501 608.568 L128.501 603.869 Q130.584 605.003 132.807 605.559 Q135.029 606.115 137.506 606.115 Q141.51 606.115 143.848 604.008 Q146.186 601.902 146.186 598.29 Q146.186 594.679 143.848 592.573 Q141.51 590.466 137.506 590.466 Q135.631 590.466 133.756 590.883 Q131.904 591.3 129.959 592.179 L129.959 574.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M66.9736 320.904 L74.6124 320.904 L74.6124 294.539 L66.3023 296.205 L66.3023 291.946 L74.5661 290.279 L79.242 290.279 L79.242 320.904 L86.8809 320.904 L86.8809 324.839 L66.9736 324.839 L66.9736 320.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M91.9503 318.96 L96.8345 318.96 L96.8345 324.839 L91.9503 324.839 L91.9503 318.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M111.904 293.358 Q108.293 293.358 106.464 296.923 Q104.659 300.464 104.659 307.594 Q104.659 314.7 106.464 318.265 Q108.293 321.807 111.904 321.807 Q115.538 321.807 117.344 318.265 Q119.172 314.7 119.172 307.594 Q119.172 300.464 117.344 296.923 Q115.538 293.358 111.904 293.358 M111.904 289.654 Q117.714 289.654 120.77 294.261 Q123.848 298.844 123.848 307.594 Q123.848 316.321 120.77 320.927 Q117.714 325.511 111.904 325.511 Q106.094 325.511 103.015 320.927 Q99.9595 316.321 99.9595 307.594 Q99.9595 298.844 103.015 294.261 Q106.094 289.654 111.904 289.654 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M138.918 293.358 Q135.307 293.358 133.478 296.923 Q131.672 300.464 131.672 307.594 Q131.672 314.7 133.478 318.265 Q135.307 321.807 138.918 321.807 Q142.552 321.807 144.357 318.265 Q146.186 314.7 146.186 307.594 Q146.186 300.464 144.357 296.923 Q142.552 293.358 138.918 293.358 M138.918 289.654 Q144.728 289.654 147.783 294.261 Q150.862 298.844 150.862 307.594 Q150.862 316.321 147.783 320.927 Q144.728 325.511 138.918 325.511 Q133.107 325.511 130.029 320.927 Q126.973 316.321 126.973 307.594 Q126.973 298.844 130.029 294.261 Q133.107 289.654 138.918 289.654 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip993)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  201.809,1445.72 210.883,1445.62 219.956,1444.94 229.029,1443.12 238.102,1439.66 247.175,1434.11 256.249,1426.1 265.322,1415.38 274.395,1401.81 283.468,1385.35 \n",
+       "  292.541,1366.08 301.615,1344.21 310.688,1320.03 319.761,1293.96 328.834,1266.45 337.907,1238.06 346.981,1209.34 356.054,1180.89 365.127,1153.27 374.2,1127.02 \n",
+       "  383.273,1102.64 392.347,1080.51 401.42,1060.97 410.493,1044.21 419.566,1030.35 428.639,1019.35 437.713,1011.08 446.786,1005.29 455.859,1001.63 464.932,999.667 \n",
+       "  474.005,998.898 483.079,998.767 492.152,998.697 501.225,998.104 510.298,996.428 519.371,993.154 528.445,987.829 537.518,980.086 546.591,969.656 555.664,956.378 \n",
+       "  564.737,940.207 573.811,921.217 582.884,899.596 591.957,875.638 601.03,849.735 610.103,822.353 619.177,794.024 628.25,765.314 637.323,736.807 646.396,709.078 \n",
+       "  655.469,682.67 664.543,658.073 673.616,635.703 682.689,615.884 691.762,598.84 700.835,584.678 709.909,573.39 718.982,564.85 728.055,558.822 737.128,554.966 \n",
+       "  746.201,552.855 755.275,551.989 764.348,551.82 773.421,551.77 782.494,551.256 791.567,549.715 800.641,546.625 809.714,541.528 818.787,534.045 827.86,523.898 \n",
+       "  836.933,510.913 846.007,495.035 855.08,476.326 864.153,454.961 873.226,431.224 882.3,405.498 891.373,378.244 900.446,349.986 909.519,321.288 918.592,292.734 \n",
+       "  927.666,264.9 936.739,238.334 945.812,213.532 954.885,190.919 963.958,170.829 973.032,153.495 982.105,139.038 991.178,127.461 1000.25,118.651 1009.32,112.381 \n",
+       "  1018.4,108.323 1027.47,106.055 1036.54,105.087 1045.62,104.873 1054.69,104.838 1063.76,104.398 1072.84,102.986 1081.91,100.076 1090.98,95.2016 1100.06,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"\n",
+       "M961.176 216.178 L1095.27 216.178 L1095.27 95.2176 L961.176 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  961.176,216.178 1095.27,216.178 1095.27,95.2176 961.176,95.2176 961.176,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  971.756,155.698 1035.23,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"M 0 0 M1070.97 154.854 Q1070.97 157.22 1069.75 159.585 Q1068.53 161.951 1066.54 163.778 Q1064.55 165.582 1061.83 166.753 Q1059.12 167.924 1056.28 168.017 L1054.45 175.161 Q1054.1 176.895 1053.92 177.082 Q1053.73 177.269 1053.45 177.269 Q1052.86 177.269 1052.86 176.731 Q1052.86 176.567 1053.92 172.515 L1055.04 168.017 Q1050.78 167.783 1048.29 165.324 Q1045.81 162.865 1045.81 159.328 Q1045.81 156.939 1047.03 154.573 Q1048.27 152.184 1050.26 150.38 Q1052.28 148.577 1054.99 147.429 Q1057.71 146.281 1060.5 146.188 L1063.28 135.109 Q1063.42 134.477 1063.54 134.313 Q1063.66 134.149 1064.01 134.149 Q1064.27 134.149 1064.41 134.266 Q1064.55 134.383 1064.55 134.5 L1064.57 134.617 L1064.43 135.296 L1061.74 146.188 Q1064.13 146.352 1065.98 147.195 Q1067.83 148.038 1068.88 149.303 Q1069.94 150.544 1070.45 151.95 Q1070.97 153.355 1070.97 154.854 M1060.22 147.242 Q1057.64 147.476 1055.46 148.741 Q1053.28 150.006 1051.88 151.879 Q1050.47 153.73 1049.7 155.955 Q1048.93 158.157 1048.93 160.335 Q1048.93 162.045 1049.49 163.356 Q1050.07 164.668 1051.03 165.418 Q1051.99 166.144 1053.05 166.542 Q1054.13 166.917 1055.27 166.963 L1060.22 147.242 M1067.83 153.847 Q1067.83 150.802 1066.07 149.092 Q1064.31 147.382 1061.46 147.242 L1056.52 166.963 Q1058.6 166.8 1060.43 165.933 Q1062.28 165.043 1063.61 163.731 Q1064.95 162.396 1065.91 160.757 Q1066.87 159.094 1067.34 157.337 Q1067.83 155.557 1067.83 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"\n",
+       "M1400.61 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1400.61 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip994\">\n",
+       "    <rect x=\"1400\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1427.56,1486.45 1427.56,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1607.21,1486.45 1607.21,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1786.86,1486.45 1786.86,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1966.51,1486.45 1966.51,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2146.16,1486.45 2146.16,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.81,1486.45 2325.81,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,1266.99 2352.76,1266.99 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,1037.32 2352.76,1037.32 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,807.642 2352.76,807.642 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,577.966 2352.76,577.966 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,348.291 2352.76,348.291 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip994)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1400.61,118.616 2352.76,118.616 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,1486.45 1400.61,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1427.56,1486.45 1427.56,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1607.21,1486.45 1607.21,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1786.86,1486.45 1786.86,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1966.51,1486.45 1966.51,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2146.16,1486.45 2146.16,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.81,1486.45 2325.81,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,1266.99 1412.04,1266.99 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,1037.32 1412.04,1037.32 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,807.642 1412.04,807.642 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,577.966 1412.04,577.966 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,348.291 1412.04,348.291 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1400.61,118.616 1412.04,118.616 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"M 0 0 M1427.56 1508.44 Q1423.95 1508.44 1422.12 1512 Q1420.32 1515.55 1420.32 1522.67 Q1420.32 1529.78 1422.12 1533.35 Q1423.95 1536.89 1427.56 1536.89 Q1431.2 1536.89 1433 1533.35 Q1434.83 1529.78 1434.83 1522.67 Q1434.83 1515.55 1433 1512 Q1431.2 1508.44 1427.56 1508.44 M1427.56 1504.73 Q1433.37 1504.73 1436.43 1509.34 Q1439.51 1513.92 1439.51 1522.67 Q1439.51 1531.4 1436.43 1536.01 Q1433.37 1540.59 1427.56 1540.59 Q1421.75 1540.59 1418.67 1536.01 Q1415.62 1531.4 1415.62 1522.67 Q1415.62 1513.92 1418.67 1509.34 Q1421.75 1504.73 1427.56 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1597.59 1535.98 L1605.23 1535.98 L1605.23 1509.62 L1596.92 1511.29 L1596.92 1507.03 L1605.19 1505.36 L1609.86 1505.36 L1609.86 1535.98 L1617.5 1535.98 L1617.5 1539.92 L1597.59 1539.92 L1597.59 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1781.51 1535.98 L1797.83 1535.98 L1797.83 1539.92 L1775.89 1539.92 L1775.89 1535.98 Q1778.55 1533.23 1783.13 1528.6 Q1787.74 1523.95 1788.92 1522.61 Q1791.17 1520.08 1792.05 1518.35 Q1792.95 1516.59 1792.95 1514.9 Q1792.95 1512.14 1791 1510.41 Q1789.08 1508.67 1785.98 1508.67 Q1783.78 1508.67 1781.33 1509.43 Q1778.9 1510.2 1776.12 1511.75 L1776.12 1507.03 Q1778.94 1505.89 1781.4 1505.31 Q1783.85 1504.73 1785.89 1504.73 Q1791.26 1504.73 1794.45 1507.42 Q1797.65 1510.11 1797.65 1514.6 Q1797.65 1516.73 1796.84 1518.65 Q1796.05 1520.54 1793.94 1523.14 Q1793.36 1523.81 1790.26 1527.03 Q1787.16 1530.22 1781.51 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1970.76 1521.29 Q1974.11 1522 1975.99 1524.27 Q1977.89 1526.54 1977.89 1529.87 Q1977.89 1534.99 1974.37 1537.79 Q1970.85 1540.59 1964.37 1540.59 Q1962.19 1540.59 1959.88 1540.15 Q1957.59 1539.73 1955.13 1538.88 L1955.13 1534.36 Q1957.08 1535.5 1959.39 1536.08 Q1961.71 1536.66 1964.23 1536.66 Q1968.63 1536.66 1970.92 1534.92 Q1973.23 1533.18 1973.23 1529.87 Q1973.23 1526.82 1971.08 1525.11 Q1968.95 1523.37 1965.13 1523.37 L1961.1 1523.37 L1961.1 1519.53 L1965.32 1519.53 Q1968.77 1519.53 1970.6 1518.16 Q1972.42 1516.77 1972.42 1514.18 Q1972.42 1511.52 1970.53 1510.11 Q1968.65 1508.67 1965.13 1508.67 Q1963.21 1508.67 1961.01 1509.09 Q1958.81 1509.5 1956.17 1510.38 L1956.17 1506.22 Q1958.84 1505.48 1961.15 1505.11 Q1963.49 1504.73 1965.55 1504.73 Q1970.87 1504.73 1973.97 1507.17 Q1977.08 1509.57 1977.08 1513.69 Q1977.08 1516.56 1975.43 1518.55 Q1973.79 1520.52 1970.76 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M2149.17 1509.43 L2137.36 1527.88 L2149.17 1527.88 L2149.17 1509.43 M2147.94 1505.36 L2153.82 1505.36 L2153.82 1527.88 L2158.75 1527.88 L2158.75 1531.77 L2153.82 1531.77 L2153.82 1539.92 L2149.17 1539.92 L2149.17 1531.77 L2133.57 1531.77 L2133.57 1527.26 L2147.94 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M2316.09 1505.36 L2334.44 1505.36 L2334.44 1509.3 L2320.37 1509.3 L2320.37 1517.77 Q2321.39 1517.42 2322.41 1517.26 Q2323.42 1517.07 2324.44 1517.07 Q2330.23 1517.07 2333.61 1520.24 Q2336.99 1523.42 2336.99 1528.83 Q2336.99 1534.41 2333.52 1537.51 Q2330.04 1540.59 2323.73 1540.59 Q2321.55 1540.59 2319.28 1540.22 Q2317.04 1539.85 2314.63 1539.11 L2314.63 1534.41 Q2316.71 1535.54 2318.93 1536.1 Q2321.16 1536.66 2323.63 1536.66 Q2327.64 1536.66 2329.98 1534.55 Q2332.31 1532.44 2332.31 1528.83 Q2332.31 1525.22 2329.98 1523.11 Q2327.64 1521.01 2323.63 1521.01 Q2321.76 1521.01 2319.88 1521.42 Q2318.03 1521.84 2316.09 1522.72 L2316.09 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1253.21 1265.64 Q1256.57 1266.36 1258.44 1268.62 Q1260.34 1270.89 1260.34 1274.23 Q1260.34 1279.34 1256.82 1282.14 Q1253.3 1284.94 1246.82 1284.94 Q1244.65 1284.94 1242.33 1284.5 Q1240.04 1284.09 1237.59 1283.23 L1237.59 1278.72 Q1239.53 1279.85 1241.85 1280.43 Q1244.16 1281.01 1246.68 1281.01 Q1251.08 1281.01 1253.37 1279.27 Q1255.69 1277.54 1255.69 1274.23 Q1255.69 1271.17 1253.54 1269.46 Q1251.41 1267.72 1247.59 1267.72 L1243.56 1267.72 L1243.56 1263.88 L1247.77 1263.88 Q1251.22 1263.88 1253.05 1262.51 Q1254.88 1261.12 1254.88 1258.53 Q1254.88 1255.87 1252.98 1254.46 Q1251.11 1253.02 1247.59 1253.02 Q1245.67 1253.02 1243.47 1253.44 Q1241.27 1253.86 1238.63 1254.74 L1238.63 1250.57 Q1241.29 1249.83 1243.61 1249.46 Q1245.94 1249.09 1248 1249.09 Q1253.33 1249.09 1256.43 1251.52 Q1259.53 1253.92 1259.53 1258.05 Q1259.53 1260.92 1257.89 1262.91 Q1256.24 1264.87 1253.21 1265.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1265.41 1278.39 L1270.3 1278.39 L1270.3 1284.27 L1265.41 1284.27 L1265.41 1278.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1276.17 1280.34 L1283.81 1280.34 L1283.81 1253.97 L1275.5 1255.64 L1275.5 1251.38 L1283.77 1249.71 L1288.44 1249.71 L1288.44 1280.34 L1296.08 1280.34 L1296.08 1284.27 L1276.17 1284.27 L1276.17 1280.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1314 1253.79 L1302.19 1272.24 L1314 1272.24 L1314 1253.79 M1312.77 1249.71 L1318.65 1249.71 L1318.65 1272.24 L1323.58 1272.24 L1323.58 1276.12 L1318.65 1276.12 L1318.65 1284.27 L1314 1284.27 L1314 1276.12 L1298.4 1276.12 L1298.4 1271.61 L1312.77 1249.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1338.65 1252.79 Q1335.04 1252.79 1333.21 1256.36 Q1331.41 1259.9 1331.41 1267.03 Q1331.41 1274.13 1333.21 1277.7 Q1335.04 1281.24 1338.65 1281.24 Q1342.29 1281.24 1344.09 1277.7 Q1345.92 1274.13 1345.92 1267.03 Q1345.92 1259.9 1344.09 1256.36 Q1342.29 1252.79 1338.65 1252.79 M1338.65 1249.09 Q1344.46 1249.09 1347.52 1253.69 Q1350.6 1258.28 1350.6 1267.03 Q1350.6 1275.75 1347.52 1280.36 Q1344.46 1284.94 1338.65 1284.94 Q1332.84 1284.94 1329.76 1280.36 Q1326.71 1275.75 1326.71 1267.03 Q1326.71 1258.28 1329.76 1253.69 Q1332.84 1249.09 1338.65 1249.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1355.71 1249.71 L1374.07 1249.71 L1374.07 1253.65 L1359.99 1253.65 L1359.99 1262.12 Q1361.01 1261.77 1362.03 1261.61 Q1363.05 1261.42 1364.07 1261.42 Q1369.85 1261.42 1373.23 1264.6 Q1376.61 1267.77 1376.61 1273.18 Q1376.61 1278.76 1373.14 1281.86 Q1369.67 1284.94 1363.35 1284.94 Q1361.17 1284.94 1358.91 1284.57 Q1356.66 1284.2 1354.25 1283.46 L1354.25 1278.76 Q1356.34 1279.9 1358.56 1280.45 Q1360.78 1281.01 1363.26 1281.01 Q1367.26 1281.01 1369.6 1278.9 Q1371.94 1276.8 1371.94 1273.18 Q1371.94 1269.57 1369.6 1267.47 Q1367.26 1265.36 1363.26 1265.36 Q1361.38 1265.36 1359.51 1265.78 Q1357.66 1266.19 1355.71 1267.07 L1355.71 1249.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1253.44 1035.96 Q1256.8 1036.68 1258.68 1038.95 Q1260.57 1041.22 1260.57 1044.55 Q1260.57 1049.67 1257.05 1052.47 Q1253.54 1055.27 1247.05 1055.27 Q1244.88 1055.27 1242.56 1054.83 Q1240.27 1054.41 1237.82 1053.56 L1237.82 1049.04 Q1239.76 1050.18 1242.08 1050.75 Q1244.39 1051.33 1246.92 1051.33 Q1251.31 1051.33 1253.61 1049.6 Q1255.92 1047.86 1255.92 1044.55 Q1255.92 1041.5 1253.77 1039.78 Q1251.64 1038.05 1247.82 1038.05 L1243.79 1038.05 L1243.79 1034.2 L1248 1034.2 Q1251.45 1034.2 1253.28 1032.84 Q1255.11 1031.45 1255.11 1028.86 Q1255.11 1026.19 1253.21 1024.78 Q1251.34 1023.35 1247.82 1023.35 Q1245.9 1023.35 1243.7 1023.76 Q1241.5 1024.18 1238.86 1025.06 L1238.86 1020.89 Q1241.52 1020.15 1243.84 1019.78 Q1246.18 1019.41 1248.24 1019.41 Q1253.56 1019.41 1256.66 1021.84 Q1259.76 1024.25 1259.76 1028.37 Q1259.76 1031.24 1258.12 1033.23 Q1256.48 1035.2 1253.44 1035.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1265.64 1048.72 L1270.53 1048.72 L1270.53 1054.6 L1265.64 1054.6 L1265.64 1048.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1276.41 1050.66 L1284.05 1050.66 L1284.05 1024.3 L1275.74 1025.96 L1275.74 1021.7 L1284 1020.04 L1288.67 1020.04 L1288.67 1050.66 L1296.31 1050.66 L1296.31 1054.6 L1276.41 1054.6 L1276.41 1050.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1314.23 1024.11 L1302.42 1042.56 L1314.23 1042.56 L1314.23 1024.11 M1313 1020.04 L1318.88 1020.04 L1318.88 1042.56 L1323.81 1042.56 L1323.81 1046.45 L1318.88 1046.45 L1318.88 1054.6 L1314.23 1054.6 L1314.23 1046.45 L1298.63 1046.45 L1298.63 1041.93 L1313 1020.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1329.69 1050.66 L1337.33 1050.66 L1337.33 1024.3 L1329.02 1025.96 L1329.02 1021.7 L1337.29 1020.04 L1341.96 1020.04 L1341.96 1050.66 L1349.6 1050.66 L1349.6 1054.6 L1329.69 1054.6 L1329.69 1050.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1364.67 1023.12 Q1361.06 1023.12 1359.23 1026.68 Q1357.42 1030.22 1357.42 1037.35 Q1357.42 1044.46 1359.23 1048.02 Q1361.06 1051.56 1364.67 1051.56 Q1368.3 1051.56 1370.11 1048.02 Q1371.94 1044.46 1371.94 1037.35 Q1371.94 1030.22 1370.11 1026.68 Q1368.3 1023.12 1364.67 1023.12 M1364.67 1019.41 Q1370.48 1019.41 1373.54 1024.02 Q1376.61 1028.6 1376.61 1037.35 Q1376.61 1046.08 1373.54 1050.68 Q1370.48 1055.27 1364.67 1055.27 Q1358.86 1055.27 1355.78 1050.68 Q1352.73 1046.08 1352.73 1037.35 Q1352.73 1028.6 1355.78 1024.02 Q1358.86 1019.41 1364.67 1019.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1254.44 806.287 Q1257.8 807.005 1259.67 809.274 Q1261.57 811.542 1261.57 814.875 Q1261.57 819.991 1258.05 822.792 Q1254.53 825.593 1248.05 825.593 Q1245.87 825.593 1243.56 825.153 Q1241.27 824.736 1238.81 823.88 L1238.81 819.366 Q1240.76 820.5 1243.07 821.079 Q1245.39 821.658 1247.91 821.658 Q1252.31 821.658 1254.6 819.922 Q1256.92 818.186 1256.92 814.875 Q1256.92 811.82 1254.76 810.107 Q1252.63 808.371 1248.81 808.371 L1244.79 808.371 L1244.79 804.528 L1249 804.528 Q1252.45 804.528 1254.28 803.162 Q1256.11 801.774 1256.11 799.181 Q1256.11 796.519 1254.21 795.107 Q1252.33 793.672 1248.81 793.672 Q1246.89 793.672 1244.69 794.088 Q1242.49 794.505 1239.86 795.385 L1239.86 791.218 Q1242.52 790.477 1244.83 790.107 Q1247.17 789.737 1249.23 789.737 Q1254.55 789.737 1257.66 792.167 Q1260.76 794.575 1260.76 798.695 Q1260.76 801.565 1259.11 803.556 Q1257.47 805.524 1254.44 806.287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1266.64 819.042 L1271.52 819.042 L1271.52 824.922 L1266.64 824.922 L1266.64 819.042 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1277.4 820.986 L1285.04 820.986 L1285.04 794.621 L1276.73 796.287 L1276.73 792.028 L1284.99 790.362 L1289.67 790.362 L1289.67 820.986 L1297.31 820.986 L1297.31 824.922 L1277.4 824.922 L1277.4 820.986 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1315.23 794.436 L1303.42 812.885 L1315.23 812.885 L1315.23 794.436 M1314 790.362 L1319.88 790.362 L1319.88 812.885 L1324.81 812.885 L1324.81 816.773 L1319.88 816.773 L1319.88 824.922 L1315.23 824.922 L1315.23 816.773 L1299.62 816.773 L1299.62 812.26 L1314 790.362 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1330.69 820.986 L1338.33 820.986 L1338.33 794.621 L1330.02 796.287 L1330.02 792.028 L1338.28 790.362 L1342.96 790.362 L1342.96 820.986 L1350.6 820.986 L1350.6 824.922 L1330.69 824.922 L1330.69 820.986 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1355.71 790.362 L1374.07 790.362 L1374.07 794.297 L1359.99 794.297 L1359.99 802.769 Q1361.01 802.422 1362.03 802.26 Q1363.05 802.074 1364.07 802.074 Q1369.85 802.074 1373.23 805.246 Q1376.61 808.417 1376.61 813.834 Q1376.61 819.412 1373.14 822.514 Q1369.67 825.593 1363.35 825.593 Q1361.17 825.593 1358.91 825.223 Q1356.66 824.852 1354.25 824.111 L1354.25 819.412 Q1356.34 820.547 1358.56 821.102 Q1360.78 821.658 1363.26 821.658 Q1367.26 821.658 1369.6 819.551 Q1371.94 817.445 1371.94 813.834 Q1371.94 810.223 1369.6 808.116 Q1367.26 806.01 1363.26 806.01 Q1361.38 806.01 1359.51 806.426 Q1357.66 806.843 1355.71 807.723 L1355.71 790.362 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1253.81 576.612 Q1257.17 577.33 1259.05 579.598 Q1260.94 581.867 1260.94 585.2 Q1260.94 590.316 1257.43 593.117 Q1253.91 595.918 1247.43 595.918 Q1245.25 595.918 1242.93 595.478 Q1240.64 595.061 1238.19 594.205 L1238.19 589.691 Q1240.13 590.825 1242.45 591.404 Q1244.76 591.983 1247.29 591.983 Q1251.68 591.983 1253.98 590.246 Q1256.29 588.51 1256.29 585.2 Q1256.29 582.145 1254.14 580.432 Q1252.01 578.696 1248.19 578.696 L1244.16 578.696 L1244.16 574.853 L1248.37 574.853 Q1251.82 574.853 1253.65 573.487 Q1255.48 572.098 1255.48 569.506 Q1255.48 566.844 1253.58 565.432 Q1251.71 563.997 1248.19 563.997 Q1246.27 563.997 1244.07 564.413 Q1241.87 564.83 1239.23 565.71 L1239.23 561.543 Q1241.89 560.802 1244.21 560.432 Q1246.55 560.061 1248.61 560.061 Q1253.93 560.061 1257.03 562.492 Q1260.13 564.899 1260.13 569.02 Q1260.13 571.89 1258.49 573.881 Q1256.85 575.848 1253.81 576.612 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1266.01 589.367 L1270.9 589.367 L1270.9 595.246 L1266.01 595.246 L1266.01 589.367 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1276.78 591.311 L1284.42 591.311 L1284.42 564.946 L1276.11 566.612 L1276.11 562.353 L1284.37 560.686 L1289.05 560.686 L1289.05 591.311 L1296.68 591.311 L1296.68 595.246 L1276.78 595.246 L1276.78 591.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1314.6 564.76 L1302.8 583.209 L1314.6 583.209 L1314.6 564.76 M1313.37 560.686 L1319.25 560.686 L1319.25 583.209 L1324.18 583.209 L1324.18 587.098 L1319.25 587.098 L1319.25 595.246 L1314.6 595.246 L1314.6 587.098 L1299 587.098 L1299 582.584 L1313.37 560.686 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1333.28 591.311 L1349.6 591.311 L1349.6 595.246 L1327.66 595.246 L1327.66 591.311 Q1330.32 588.557 1334.9 583.927 Q1339.51 579.274 1340.69 577.932 Q1342.93 575.409 1343.81 573.672 Q1344.72 571.913 1344.72 570.223 Q1344.72 567.469 1342.77 565.733 Q1340.85 563.997 1337.75 563.997 Q1335.55 563.997 1333.1 564.76 Q1330.67 565.524 1327.89 567.075 L1327.89 562.353 Q1330.71 561.219 1333.17 560.64 Q1335.62 560.061 1337.66 560.061 Q1343.03 560.061 1346.22 562.747 Q1349.42 565.432 1349.42 569.922 Q1349.42 572.052 1348.61 573.973 Q1347.82 575.872 1345.71 578.464 Q1345.13 579.135 1342.03 582.353 Q1338.93 585.547 1333.28 591.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1364.67 563.765 Q1361.06 563.765 1359.23 567.33 Q1357.42 570.872 1357.42 578.001 Q1357.42 585.108 1359.23 588.672 Q1361.06 592.214 1364.67 592.214 Q1368.3 592.214 1370.11 588.672 Q1371.94 585.108 1371.94 578.001 Q1371.94 570.872 1370.11 567.33 Q1368.3 563.765 1364.67 563.765 M1364.67 560.061 Q1370.48 560.061 1373.54 564.668 Q1376.61 569.251 1376.61 578.001 Q1376.61 586.728 1373.54 591.334 Q1370.48 595.918 1364.67 595.918 Q1358.86 595.918 1355.78 591.334 Q1352.73 586.728 1352.73 578.001 Q1352.73 569.251 1355.78 564.668 Q1358.86 560.061 1364.67 560.061 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1254.81 346.937 Q1258.17 347.655 1260.04 349.923 Q1261.94 352.192 1261.94 355.525 Q1261.94 360.641 1258.42 363.442 Q1254.9 366.242 1248.42 366.242 Q1246.24 366.242 1243.93 365.803 Q1241.64 365.386 1239.18 364.53 L1239.18 360.016 Q1241.13 361.15 1243.44 361.729 Q1245.76 362.307 1248.28 362.307 Q1252.68 362.307 1254.97 360.571 Q1257.29 358.835 1257.29 355.525 Q1257.29 352.469 1255.13 350.756 Q1253 349.02 1249.18 349.02 L1245.16 349.02 L1245.16 345.178 L1249.37 345.178 Q1252.82 345.178 1254.65 343.812 Q1256.48 342.423 1256.48 339.831 Q1256.48 337.169 1254.58 335.757 Q1252.7 334.321 1249.18 334.321 Q1247.26 334.321 1245.06 334.738 Q1242.86 335.155 1240.23 336.034 L1240.23 331.868 Q1242.89 331.127 1245.2 330.757 Q1247.54 330.386 1249.6 330.386 Q1254.93 330.386 1258.03 332.817 Q1261.13 335.224 1261.13 339.344 Q1261.13 342.215 1259.49 344.206 Q1257.84 346.173 1254.81 346.937 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1267.01 359.692 L1271.89 359.692 L1271.89 365.571 L1267.01 365.571 L1267.01 359.692 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1277.77 361.636 L1285.41 361.636 L1285.41 335.27 L1277.1 336.937 L1277.1 332.678 L1285.36 331.011 L1290.04 331.011 L1290.04 361.636 L1297.68 361.636 L1297.68 365.571 L1277.77 365.571 L1277.77 361.636 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1315.6 335.085 L1303.79 353.534 L1315.6 353.534 L1315.6 335.085 M1314.37 331.011 L1320.25 331.011 L1320.25 353.534 L1325.18 353.534 L1325.18 357.423 L1320.25 357.423 L1320.25 365.571 L1315.6 365.571 L1315.6 357.423 L1299.99 357.423 L1299.99 352.909 L1314.37 331.011 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1334.28 361.636 L1350.6 361.636 L1350.6 365.571 L1328.65 365.571 L1328.65 361.636 Q1331.31 358.881 1335.9 354.252 Q1340.5 349.599 1341.68 348.256 Q1343.93 345.733 1344.81 343.997 Q1345.71 342.238 1345.71 340.548 Q1345.71 337.794 1343.77 336.057 Q1341.85 334.321 1338.74 334.321 Q1336.54 334.321 1334.09 335.085 Q1331.66 335.849 1328.88 337.4 L1328.88 332.678 Q1331.71 331.544 1334.16 330.965 Q1336.61 330.386 1338.65 330.386 Q1344.02 330.386 1347.22 333.071 Q1350.41 335.757 1350.41 340.247 Q1350.41 342.377 1349.6 344.298 Q1348.81 346.196 1346.71 348.789 Q1346.13 349.46 1343.03 352.678 Q1339.92 355.872 1334.28 361.636 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1355.71 331.011 L1374.07 331.011 L1374.07 334.946 L1359.99 334.946 L1359.99 343.419 Q1361.01 343.071 1362.03 342.909 Q1363.05 342.724 1364.07 342.724 Q1369.85 342.724 1373.23 345.895 Q1376.61 349.067 1376.61 354.483 Q1376.61 360.062 1373.14 363.164 Q1369.67 366.242 1363.35 366.242 Q1361.17 366.242 1358.91 365.872 Q1356.66 365.502 1354.25 364.761 L1354.25 360.062 Q1356.34 361.196 1358.56 361.752 Q1360.78 362.307 1363.26 362.307 Q1367.26 362.307 1369.6 360.201 Q1371.94 358.094 1371.94 354.483 Q1371.94 350.872 1369.6 348.766 Q1367.26 346.659 1363.26 346.659 Q1361.38 346.659 1359.51 347.076 Q1357.66 347.493 1355.71 348.372 L1355.71 331.011 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1252.86 117.262 Q1256.22 117.979 1258.1 120.248 Q1259.99 122.516 1259.99 125.85 Q1259.99 130.965 1256.48 133.766 Q1252.96 136.567 1246.48 136.567 Q1244.3 136.567 1241.99 136.127 Q1239.69 135.711 1237.24 134.854 L1237.24 130.34 Q1239.18 131.475 1241.5 132.053 Q1243.81 132.632 1246.34 132.632 Q1250.74 132.632 1253.03 130.896 Q1255.34 129.16 1255.34 125.85 Q1255.34 122.794 1253.19 121.081 Q1251.06 119.345 1247.24 119.345 L1243.21 119.345 L1243.21 115.503 L1247.43 115.503 Q1250.87 115.503 1252.7 114.137 Q1254.53 112.748 1254.53 110.155 Q1254.53 107.493 1252.63 106.081 Q1250.76 104.646 1247.24 104.646 Q1245.32 104.646 1243.12 105.063 Q1240.92 105.479 1238.28 106.359 L1238.28 102.192 Q1240.94 101.452 1243.26 101.081 Q1245.6 100.711 1247.66 100.711 Q1252.98 100.711 1256.08 103.142 Q1259.18 105.549 1259.18 109.669 Q1259.18 112.54 1257.54 114.53 Q1255.9 116.498 1252.86 117.262 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1265.06 130.016 L1269.95 130.016 L1269.95 135.896 L1265.06 135.896 L1265.06 130.016 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1275.83 131.961 L1283.47 131.961 L1283.47 105.595 L1275.16 107.262 L1275.16 103.003 L1283.42 101.336 L1288.1 101.336 L1288.1 131.961 L1295.74 131.961 L1295.74 135.896 L1275.83 135.896 L1275.83 131.961 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1313.65 105.41 L1301.85 123.859 L1313.65 123.859 L1313.65 105.41 M1312.42 101.336 L1318.3 101.336 L1318.3 123.859 L1323.23 123.859 L1323.23 127.748 L1318.3 127.748 L1318.3 135.896 L1313.65 135.896 L1313.65 127.748 L1298.05 127.748 L1298.05 123.234 L1312.42 101.336 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1342.47 117.262 Q1345.83 117.979 1347.7 120.248 Q1349.6 122.516 1349.6 125.85 Q1349.6 130.965 1346.08 133.766 Q1342.56 136.567 1336.08 136.567 Q1333.91 136.567 1331.59 136.127 Q1329.3 135.711 1326.85 134.854 L1326.85 130.34 Q1328.79 131.475 1331.11 132.053 Q1333.42 132.632 1335.94 132.632 Q1340.34 132.632 1342.63 130.896 Q1344.95 129.16 1344.95 125.85 Q1344.95 122.794 1342.79 121.081 Q1340.67 119.345 1336.85 119.345 L1332.82 119.345 L1332.82 115.503 L1337.03 115.503 Q1340.48 115.503 1342.31 114.137 Q1344.14 112.748 1344.14 110.155 Q1344.14 107.493 1342.24 106.081 Q1340.36 104.646 1336.85 104.646 Q1334.92 104.646 1332.73 105.063 Q1330.53 105.479 1327.89 106.359 L1327.89 102.192 Q1330.55 101.452 1332.86 101.081 Q1335.2 100.711 1337.26 100.711 Q1342.59 100.711 1345.69 103.142 Q1348.79 105.549 1348.79 109.669 Q1348.79 112.54 1347.15 114.53 Q1345.5 116.498 1342.47 117.262 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip990)\" d=\"M 0 0 M1364.67 104.415 Q1361.06 104.415 1359.23 107.979 Q1357.42 111.521 1357.42 118.651 Q1357.42 125.757 1359.23 129.322 Q1361.06 132.864 1364.67 132.864 Q1368.3 132.864 1370.11 129.322 Q1371.94 125.757 1371.94 118.651 Q1371.94 111.521 1370.11 107.979 Q1368.3 104.415 1364.67 104.415 M1364.67 100.711 Q1370.48 100.711 1373.54 105.317 Q1376.61 109.901 1376.61 118.651 Q1376.61 127.378 1373.54 131.984 Q1370.48 136.567 1364.67 136.567 Q1358.86 136.567 1355.78 131.984 Q1352.73 127.378 1352.73 118.651 Q1352.73 109.901 1355.78 105.317 Q1358.86 100.711 1364.67 100.711 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip994)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1427.56,765.081 1436.63,759.288 1445.71,721.605 1454.78,633.345 1463.85,497.274 1472.93,337.803 1482,192.996 1491.07,101.313 1500.15,87.9763 1509.22,155.986 \n",
+       "  1518.29,285.098 1527.37,439.141 1536.44,578.946 1545.51,676.125 1554.59,722.621 1563.66,732.543 1572.73,735.663 1581.81,765.038 1590.88,843.384 1599.95,973.304 \n",
+       "  1609.03,1135.02 1618.1,1292.55 1627.17,1406.03 1636.25,1445.72 1645.32,1402.56 1654.39,1291.32 1663.46,1145.12 1672.54,1003.6 1681.61,898.707 1690.68,843.774 \n",
+       "  1699.76,829.56 1708.83,828.898 1717.9,808.074 1726.98,740.705 1736.05,618.902 1745.12,457.527 1754.2,289.916 1763.27,156.598 1772.34,91.1508 1781.42,108.398 \n",
+       "  1790.49,199.309 1799.56,334.464 1808.64,474.792 1817.71,585.6 1826.78,648.717 1835.86,668.276 1844.93,668.063 1854,681.443 1863.08,737.661 1872.15,849.631 \n",
+       "  1881.22,1007.78 1890.29,1182.27 1899.37,1332.88 1908.44,1422.9 1917.51,1431.94 1926.59,1362.97 1935.66,1241.02 1944.73,1103.88 1953.81,988.454 1962.88,917.605 \n",
+       "  1971.95,892.513 1981.03,893.242 1990.1,887.317 1999.17,843.068 2008.25,742.742 2017.32,590.475 2026.39,412.095 2035.47,246.801 2044.54,133.723 2053.61,98.3172 \n",
+       "  2062.69,143.604 2071.76,249.467 2080.83,380.253 2089.91,497.843 2098.98,575.354 2108.05,606.41 2117.12,606.585 2126.2,606.532 2135.27,639.385 2144.34,727.155 \n",
+       "  2153.42,871.195 2162.49,1050.31 2171.56,1227.29 2180.64,1361.48 2189.71,1422.81 2198.78,1402.18 2207.86,1314.23 2216.93,1191.72 2226,1073.35 2235.08,989.704 \n",
+       "  2244.15,952.451 2253.22,950.803 2262.3,956.508 2271.37,935.49 2280.44,861.779 2289.52,728.506 2298.59,551.839 2307.66,366.343 2316.74,213.422 2325.81,127.091 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"\n",
+       "M2184.31 216.178 L2321.02 216.178 L2321.02 95.2176 L2184.31 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2184.31,216.178 2321.02,216.178 2321.02,95.2176 2184.31,95.2176 2184.31,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip990)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2194.89,155.698 2258.36,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip990)\" d=\"M 0 0 M2298.01 149.584 Q2298.01 150.989 2297.47 153.449 Q2296.96 155.908 2296.53 157.079 Q2295.36 160.194 2293.02 162.818 Q2291.73 164.27 2290.33 165.324 Q2288.95 166.354 2287.91 166.87 Q2286.88 167.362 2285.67 167.619 Q2284.45 167.9 2283.89 167.924 Q2283.32 167.971 2282.53 167.971 L2280.7 175.114 Q2280.33 176.965 2280.14 177.082 Q2280.09 177.176 2279.97 177.223 Q2279.88 177.269 2279.79 177.269 L2279.69 177.269 Q2279.44 177.269 2279.3 177.152 Q2279.15 177.035 2279.13 176.895 L2279.13 176.777 Q2279.13 176.45 2280.23 172.234 Q2280.79 170.079 2281.29 167.854 Q2277.54 167.619 2275.22 165.956 Q2272.92 164.293 2272.92 161.061 Q2272.92 159.07 2275.24 152.957 Q2276.34 150.029 2276.34 148.811 Q2276.34 148.272 2276.23 147.944 Q2276.11 147.593 2275.88 147.476 Q2275.64 147.335 2275.5 147.312 Q2275.38 147.289 2275.15 147.289 Q2273.77 147.289 2272.48 148.671 Q2271.19 150.052 2270.3 153.238 Q2270.11 153.823 2270 153.964 Q2269.88 154.105 2269.53 154.105 Q2268.94 154.081 2268.94 153.613 Q2268.94 153.425 2269.15 152.699 Q2269.36 151.95 2269.86 150.849 Q2270.37 149.725 2271.07 148.717 Q2271.78 147.687 2272.88 146.961 Q2274 146.235 2275.29 146.235 Q2277.05 146.235 2278.12 147.382 Q2279.22 148.507 2279.22 150.17 Q2279.22 150.498 2279.15 150.872 Q2279.08 151.247 2279.01 151.458 Q2278.97 151.669 2278.83 152.067 Q2278.71 152.442 2278.69 152.512 Q2277.49 155.604 2276.88 157.618 Q2276.27 159.609 2276.18 160.194 Q2276.11 160.757 2276.11 161.436 Q2276.11 166.167 2281.57 166.8 L2289.53 135.109 Q2289.67 134.453 2289.79 134.313 Q2289.91 134.149 2290.26 134.149 Q2290.82 134.149 2290.82 134.664 Q2290.82 134.828 2290.68 135.39 L2282.76 166.893 Q2283.51 166.893 2283.98 166.87 Q2284.45 166.846 2285.43 166.636 Q2286.44 166.401 2287.28 165.98 Q2288.15 165.558 2289.37 164.715 Q2290.58 163.848 2291.78 162.63 Q2293.28 161.108 2294.61 158.555 Q2295.95 156.002 2295.95 153.894 Q2295.95 151.528 2294.24 149.818 Q2293.98 149.584 2293.84 149.443 Q2293.72 149.303 2293.61 149.069 Q2293.51 148.835 2293.51 148.53 Q2293.51 147.734 2294.26 146.984 Q2295.01 146.235 2295.9 146.235 Q2296.7 146.235 2297.35 147.008 Q2298.01 147.78 2298.01 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    },
+    {
+     "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=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip030\">\n",
+       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"\n",
+       "M0 1600 L2400 1600 L2400 0 L0 0  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip031\">\n",
+       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip032\">\n",
+       "    <rect x=\"1400\" y=\"47\" width=\"953\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"\n",
+       "M174.862 1486.45 L1140.19 1486.45 L1140.19 47.2441 L174.862 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip033\">\n",
+       "    <rect x=\"174\" y=\"47\" width=\"966\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  202.183,1486.45 202.183,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  384.319,1486.45 384.319,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  566.456,1486.45 566.456,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  748.593,1486.45 748.593,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  930.729,1486.45 930.729,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1112.87,1486.45 1112.87,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,1445.72 1140.19,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,1108.06 1140.19,1108.06 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,770.414 1140.19,770.414 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,432.763 1140.19,432.763 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip033)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  174.862,95.1125 1140.19,95.1125 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1486.45 1140.19,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1486.45 174.862,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  202.183,1486.45 202.183,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  384.319,1486.45 384.319,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  566.456,1486.45 566.456,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  748.593,1486.45 748.593,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  930.729,1486.45 930.729,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1112.87,1486.45 1112.87,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1445.72 186.446,1445.72 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,1108.06 186.446,1108.06 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,770.414 186.446,770.414 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,432.763 186.446,432.763 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  174.862,95.1125 186.446,95.1125 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"M 0 0 M202.183 1508.44 Q198.571 1508.44 196.743 1512 Q194.937 1515.55 194.937 1522.67 Q194.937 1529.78 196.743 1533.35 Q198.571 1536.89 202.183 1536.89 Q205.817 1536.89 207.622 1533.35 Q209.451 1529.78 209.451 1522.67 Q209.451 1515.55 207.622 1512 Q205.817 1508.44 202.183 1508.44 M202.183 1504.73 Q207.993 1504.73 211.048 1509.34 Q214.127 1513.92 214.127 1522.67 Q214.127 1531.4 211.048 1536.01 Q207.993 1540.59 202.183 1540.59 Q196.372 1540.59 193.294 1536.01 Q190.238 1531.4 190.238 1522.67 Q190.238 1513.92 193.294 1509.34 Q196.372 1504.73 202.183 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M374.701 1535.98 L382.34 1535.98 L382.34 1509.62 L374.03 1511.29 L374.03 1507.03 L382.294 1505.36 L386.97 1505.36 L386.97 1535.98 L394.609 1535.98 L394.609 1539.92 L374.701 1539.92 L374.701 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M561.109 1535.98 L577.428 1535.98 L577.428 1539.92 L555.484 1539.92 L555.484 1535.98 Q558.146 1533.23 562.729 1528.6 Q567.336 1523.95 568.516 1522.61 Q570.761 1520.08 571.641 1518.35 Q572.544 1516.59 572.544 1514.9 Q572.544 1512.14 570.599 1510.41 Q568.678 1508.67 565.576 1508.67 Q563.377 1508.67 560.924 1509.43 Q558.493 1510.2 555.715 1511.75 L555.715 1507.03 Q558.539 1505.89 560.993 1505.31 Q563.447 1504.73 565.484 1504.73 Q570.854 1504.73 574.048 1507.42 Q577.243 1510.11 577.243 1514.6 Q577.243 1516.73 576.433 1518.65 Q575.646 1520.54 573.539 1523.14 Q572.961 1523.81 569.859 1527.03 Q566.757 1530.22 561.109 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M752.84 1521.29 Q756.197 1522 758.072 1524.27 Q759.97 1526.54 759.97 1529.87 Q759.97 1534.99 756.451 1537.79 Q752.933 1540.59 746.451 1540.59 Q744.276 1540.59 741.961 1540.15 Q739.669 1539.73 737.215 1538.88 L737.215 1534.36 Q739.16 1535.5 741.475 1536.08 Q743.789 1536.66 746.313 1536.66 Q750.711 1536.66 753.002 1534.92 Q755.317 1533.18 755.317 1529.87 Q755.317 1526.82 753.164 1525.11 Q751.035 1523.37 747.215 1523.37 L743.188 1523.37 L743.188 1519.53 L747.401 1519.53 Q750.85 1519.53 752.678 1518.16 Q754.507 1516.77 754.507 1514.18 Q754.507 1511.52 752.609 1510.11 Q750.734 1508.67 747.215 1508.67 Q745.294 1508.67 743.095 1509.09 Q740.896 1509.5 738.257 1510.38 L738.257 1506.22 Q740.919 1505.48 743.234 1505.11 Q745.572 1504.73 747.632 1504.73 Q752.956 1504.73 756.058 1507.17 Q759.16 1509.57 759.16 1513.69 Q759.16 1516.56 757.516 1518.55 Q755.873 1520.52 752.84 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M933.739 1509.43 L921.933 1527.88 L933.739 1527.88 L933.739 1509.43 M932.512 1505.36 L938.391 1505.36 L938.391 1527.88 L943.322 1527.88 L943.322 1531.77 L938.391 1531.77 L938.391 1539.92 L933.739 1539.92 L933.739 1531.77 L918.137 1531.77 L918.137 1527.26 L932.512 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1103.14 1505.36 L1121.5 1505.36 L1121.5 1509.3 L1107.43 1509.3 L1107.43 1517.77 Q1108.44 1517.42 1109.46 1517.26 Q1110.48 1517.07 1111.5 1517.07 Q1117.29 1517.07 1120.67 1520.24 Q1124.05 1523.42 1124.05 1528.83 Q1124.05 1534.41 1120.57 1537.51 Q1117.1 1540.59 1110.78 1540.59 Q1108.61 1540.59 1106.34 1540.22 Q1104.09 1539.85 1101.69 1539.11 L1101.69 1534.41 Q1103.77 1535.54 1105.99 1536.1 Q1108.21 1536.66 1110.69 1536.66 Q1114.69 1536.66 1117.03 1534.55 Q1119.37 1532.44 1119.37 1528.83 Q1119.37 1525.22 1117.03 1523.11 Q1114.69 1521.01 1110.69 1521.01 Q1108.82 1521.01 1106.94 1521.42 Q1105.09 1521.84 1103.14 1522.72 L1103.14 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M74.9365 1431.51 Q71.3254 1431.51 69.4967 1435.08 Q67.6912 1438.62 67.6912 1445.75 Q67.6912 1452.86 69.4967 1456.42 Q71.3254 1459.96 74.9365 1459.96 Q78.5707 1459.96 80.3763 1456.42 Q82.205 1452.86 82.205 1445.75 Q82.205 1438.62 80.3763 1435.08 Q78.5707 1431.51 74.9365 1431.51 M74.9365 1427.81 Q80.7467 1427.81 83.8022 1432.42 Q86.8809 1437 86.8809 1445.75 Q86.8809 1454.48 83.8022 1459.08 Q80.7467 1463.67 74.9365 1463.67 Q69.1264 1463.67 66.0477 1459.08 Q62.9921 1454.48 62.9921 1445.75 Q62.9921 1437 66.0477 1432.42 Q69.1264 1427.81 74.9365 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M91.9503 1457.12 L96.8345 1457.12 L96.8345 1463 L91.9503 1463 L91.9503 1457.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M111.904 1431.51 Q108.293 1431.51 106.464 1435.08 Q104.659 1438.62 104.659 1445.75 Q104.659 1452.86 106.464 1456.42 Q108.293 1459.96 111.904 1459.96 Q115.538 1459.96 117.344 1456.42 Q119.172 1452.86 119.172 1445.75 Q119.172 1438.62 117.344 1435.08 Q115.538 1431.51 111.904 1431.51 M111.904 1427.81 Q117.714 1427.81 120.77 1432.42 Q123.848 1437 123.848 1445.75 Q123.848 1454.48 120.77 1459.08 Q117.714 1463.67 111.904 1463.67 Q106.094 1463.67 103.015 1459.08 Q99.9595 1454.48 99.9595 1445.75 Q99.9595 1437 103.015 1432.42 Q106.094 1427.81 111.904 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M138.918 1431.51 Q135.307 1431.51 133.478 1435.08 Q131.672 1438.62 131.672 1445.75 Q131.672 1452.86 133.478 1456.42 Q135.307 1459.96 138.918 1459.96 Q142.552 1459.96 144.357 1456.42 Q146.186 1452.86 146.186 1445.75 Q146.186 1438.62 144.357 1435.08 Q142.552 1431.51 138.918 1431.51 M138.918 1427.81 Q144.728 1427.81 147.783 1432.42 Q150.862 1437 150.862 1445.75 Q150.862 1454.48 147.783 1459.08 Q144.728 1463.67 138.918 1463.67 Q133.107 1463.67 130.029 1459.08 Q126.973 1454.48 126.973 1445.75 Q126.973 1437 130.029 1432.42 Q133.107 1427.81 138.918 1427.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M77.5291 1093.86 Q73.918 1093.86 72.0893 1097.43 Q70.2838 1100.97 70.2838 1108.1 Q70.2838 1115.21 72.0893 1118.77 Q73.918 1122.31 77.5291 1122.31 Q81.1633 1122.31 82.9689 1118.77 Q84.7976 1115.21 84.7976 1108.1 Q84.7976 1100.97 82.9689 1097.43 Q81.1633 1093.86 77.5291 1093.86 M77.5291 1090.16 Q83.3392 1090.16 86.3948 1094.77 Q89.4735 1099.35 89.4735 1108.1 Q89.4735 1116.83 86.3948 1121.43 Q83.3392 1126.02 77.5291 1126.02 Q71.7189 1126.02 68.6402 1121.43 Q65.5847 1116.83 65.5847 1108.1 Q65.5847 1099.35 68.6402 1094.77 Q71.7189 1090.16 77.5291 1090.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M94.5429 1119.47 L99.4271 1119.47 L99.4271 1125.34 L94.5429 1125.34 L94.5429 1119.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M108.524 1121.41 L124.844 1121.41 L124.844 1125.34 L102.899 1125.34 L102.899 1121.41 Q105.561 1118.66 110.145 1114.03 Q114.751 1109.37 115.932 1108.03 Q118.177 1105.51 119.057 1103.77 Q119.959 1102.01 119.959 1100.32 Q119.959 1097.57 118.015 1095.83 Q116.094 1094.1 112.992 1094.1 Q110.793 1094.1 108.339 1094.86 Q105.909 1095.62 103.131 1097.17 L103.131 1092.45 Q105.955 1091.32 108.409 1090.74 Q110.862 1090.16 112.899 1090.16 Q118.27 1090.16 121.464 1092.85 Q124.658 1095.53 124.658 1100.02 Q124.658 1102.15 123.848 1104.07 Q123.061 1105.97 120.955 1108.56 Q120.376 1109.23 117.274 1112.45 Q114.172 1115.65 108.524 1121.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M129.959 1090.78 L148.316 1090.78 L148.316 1094.72 L134.242 1094.72 L134.242 1103.19 Q135.26 1102.85 136.279 1102.68 Q137.297 1102.5 138.316 1102.5 Q144.103 1102.5 147.482 1105.67 Q150.862 1108.84 150.862 1114.26 Q150.862 1119.84 147.39 1122.94 Q143.918 1126.02 137.598 1126.02 Q135.422 1126.02 133.154 1125.65 Q130.908 1125.28 128.501 1124.53 L128.501 1119.84 Q130.584 1120.97 132.807 1121.53 Q135.029 1122.08 137.506 1122.08 Q141.51 1122.08 143.848 1119.97 Q146.186 1117.87 146.186 1114.26 Q146.186 1110.65 143.848 1108.54 Q141.51 1106.43 137.506 1106.43 Q135.631 1106.43 133.756 1106.85 Q131.904 1107.27 129.959 1108.15 L129.959 1090.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M75.9319 756.213 Q72.3208 756.213 70.4921 759.778 Q68.6865 763.319 68.6865 770.449 Q68.6865 777.555 70.4921 781.12 Q72.3208 784.662 75.9319 784.662 Q79.5661 784.662 81.3717 781.12 Q83.2004 777.555 83.2004 770.449 Q83.2004 763.319 81.3717 759.778 Q79.5661 756.213 75.9319 756.213 M75.9319 752.509 Q81.742 752.509 84.7976 757.116 Q87.8763 761.699 87.8763 770.449 Q87.8763 779.176 84.7976 783.782 Q81.742 788.365 75.9319 788.365 Q70.1217 788.365 67.043 783.782 Q63.9875 779.176 63.9875 770.449 Q63.9875 761.699 67.043 757.116 Q70.1217 752.509 75.9319 752.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M92.9457 781.814 L97.8299 781.814 L97.8299 787.694 L92.9457 787.694 L92.9457 781.814 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M102.946 753.134 L121.302 753.134 L121.302 757.069 L107.228 757.069 L107.228 765.541 Q108.247 765.194 109.265 765.032 Q110.284 764.847 111.302 764.847 Q117.089 764.847 120.469 768.018 Q123.848 771.19 123.848 776.606 Q123.848 782.185 120.376 785.287 Q116.904 788.365 110.584 788.365 Q108.409 788.365 106.14 787.995 Q103.895 787.625 101.487 786.884 L101.487 782.185 Q103.571 783.319 105.793 783.875 Q108.015 784.43 110.492 784.43 Q114.496 784.43 116.834 782.324 Q119.172 780.217 119.172 776.606 Q119.172 772.995 116.834 770.889 Q114.496 768.782 110.492 768.782 Q108.617 768.782 106.742 769.199 Q104.89 769.615 102.946 770.495 L102.946 753.134 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M138.918 756.213 Q135.307 756.213 133.478 759.778 Q131.672 763.319 131.672 770.449 Q131.672 777.555 133.478 781.12 Q135.307 784.662 138.918 784.662 Q142.552 784.662 144.357 781.12 Q146.186 777.555 146.186 770.449 Q146.186 763.319 144.357 759.778 Q142.552 756.213 138.918 756.213 M138.918 752.509 Q144.728 752.509 147.783 757.116 Q150.862 761.699 150.862 770.449 Q150.862 779.176 147.783 783.782 Q144.728 788.365 138.918 788.365 Q133.107 788.365 130.029 783.782 Q126.973 779.176 126.973 770.449 Q126.973 761.699 130.029 757.116 Q133.107 752.509 138.918 752.509 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M76.8346 418.562 Q73.2236 418.562 71.3949 422.127 Q69.5893 425.668 69.5893 432.798 Q69.5893 439.904 71.3949 443.469 Q73.2236 447.011 76.8346 447.011 Q80.4689 447.011 82.2744 443.469 Q84.1031 439.904 84.1031 432.798 Q84.1031 425.668 82.2744 422.127 Q80.4689 418.562 76.8346 418.562 M76.8346 414.858 Q82.6448 414.858 85.7003 419.465 Q88.779 424.048 88.779 432.798 Q88.779 441.525 85.7003 446.131 Q82.6448 450.715 76.8346 450.715 Q71.0245 450.715 67.9458 446.131 Q64.8903 441.525 64.8903 432.798 Q64.8903 424.048 67.9458 419.465 Q71.0245 414.858 76.8346 414.858 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M93.8484 444.164 L98.7327 444.164 L98.7327 450.043 L93.8484 450.043 L93.8484 444.164 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M102.622 415.483 L124.844 415.483 L124.844 417.474 L112.297 450.043 L107.413 450.043 L119.219 419.418 L102.622 419.418 L102.622 415.483 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M129.959 415.483 L148.316 415.483 L148.316 419.418 L134.242 419.418 L134.242 427.891 Q135.26 427.543 136.279 427.381 Q137.297 427.196 138.316 427.196 Q144.103 427.196 147.482 430.367 Q150.862 433.539 150.862 438.955 Q150.862 444.534 147.39 447.636 Q143.918 450.715 137.598 450.715 Q135.422 450.715 133.154 450.344 Q130.908 449.974 128.501 449.233 L128.501 444.534 Q130.584 445.668 132.807 446.224 Q135.029 446.779 137.506 446.779 Q141.51 446.779 143.848 444.673 Q146.186 442.566 146.186 438.955 Q146.186 435.344 143.848 433.238 Q141.51 431.131 137.506 431.131 Q135.631 431.131 133.756 431.548 Q131.904 431.965 129.959 432.844 L129.959 415.483 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M66.9736 108.457 L74.6124 108.457 L74.6124 82.0917 L66.3023 83.7584 L66.3023 79.4991 L74.5661 77.8325 L79.242 77.8325 L79.242 108.457 L86.8809 108.457 L86.8809 112.392 L66.9736 112.392 L66.9736 108.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M91.9503 106.513 L96.8345 106.513 L96.8345 112.392 L91.9503 112.392 L91.9503 106.513 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M111.904 80.9111 Q108.293 80.9111 106.464 84.4759 Q104.659 88.0176 104.659 95.1472 Q104.659 102.254 106.464 105.818 Q108.293 109.36 111.904 109.36 Q115.538 109.36 117.344 105.818 Q119.172 102.254 119.172 95.1472 Q119.172 88.0176 117.344 84.4759 Q115.538 80.9111 111.904 80.9111 M111.904 77.2075 Q117.714 77.2075 120.77 81.8139 Q123.848 86.3972 123.848 95.1472 Q123.848 103.874 120.77 108.48 Q117.714 113.064 111.904 113.064 Q106.094 113.064 103.015 108.48 Q99.9595 103.874 99.9595 95.1472 Q99.9595 86.3972 103.015 81.8139 Q106.094 77.2075 111.904 77.2075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M138.918 80.9111 Q135.307 80.9111 133.478 84.4759 Q131.672 88.0176 131.672 95.1472 Q131.672 102.254 133.478 105.818 Q135.307 109.36 138.918 109.36 Q142.552 109.36 144.357 105.818 Q146.186 102.254 146.186 95.1472 Q146.186 88.0176 144.357 84.4759 Q142.552 80.9111 138.918 80.9111 M138.918 77.2075 Q144.728 77.2075 147.783 81.8139 Q150.862 86.3972 150.862 95.1472 Q150.862 103.874 147.783 108.48 Q144.728 113.064 138.918 113.064 Q133.107 113.064 130.029 108.48 Q126.973 103.874 126.973 95.1472 Q126.973 86.3972 130.029 81.8139 Q133.107 77.2075 138.918 77.2075 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip033)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  202.183,1445.72 211.381,1445.57 220.58,1444.57 229.779,1441.91 238.978,1436.9 248.177,1428.98 257.375,1417.8 266.574,1403.2 275.773,1385.24 284.972,1364.19 \n",
+       "  294.171,1340.52 303.37,1314.87 312.568,1288.01 321.767,1260.76 330.966,1234 340.165,1208.55 349.364,1185.16 358.563,1164.46 367.761,1146.88 376.96,1132.69 \n",
+       "  386.159,1121.9 395.358,1114.36 404.557,1109.65 413.755,1107.23 422.954,1106.37 432.153,1106.28 441.352,1106.07 450.551,1104.92 459.75,1102.01 468.948,1096.68 \n",
+       "  478.147,1088.39 487.346,1076.81 496.545,1061.8 505.744,1043.45 514.943,1022.07 524.141,998.129 533.34,972.296 542.539,945.34 551.738,918.105 560.937,891.454 \n",
+       "  570.135,866.212 579.334,843.115 588.533,822.762 597.732,805.579 606.931,791.791 616.13,781.406 625.328,774.219 634.527,769.82 643.726,767.622 652.925,766.9 \n",
+       "  662.124,766.834 671.323,766.562 680.521,765.238 689.72,762.079 698.919,756.42 708.118,747.755 717.317,735.769 726.515,720.356 735.714,701.629 744.913,679.909 \n",
+       "  754.112,655.71 763.311,629.702 772.51,602.668 781.708,575.457 790.907,548.932 800.106,523.908 809.305,501.107 818.504,481.112 827.703,464.324 836.901,450.943 \n",
+       "  846.1,440.953 855.299,434.121 864.498,430.017 873.697,428.034 882.895,427.434 892.094,427.389 901.293,427.036 910.492,425.533 919.691,422.109 928.89,416.117 \n",
+       "  938.088,407.071 947.287,394.68 956.486,378.864 965.685,359.761 974.884,337.717 984.082,313.266 993.281,287.093 1002.48,259.993 1011.68,232.819 1020.88,206.43 \n",
+       "  1030.08,181.635 1039.28,159.14 1048.47,139.508 1057.67,123.117 1066.87,110.144 1076.07,100.544 1085.27,94.0625 1094.47,90.2442 1103.67,88.4663 1112.87,87.9763 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"\n",
+       "M972.455 216.178 L1108.01 216.178 L1108.01 95.2176 L972.455 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  972.455,216.178 1108.01,216.178 1108.01,95.2176 972.455,95.2176 972.455,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  983.181,155.698 1047.54,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"M 0 0 M1083.42 154.854 Q1083.42 157.22 1082.2 159.585 Q1080.98 161.951 1078.99 163.778 Q1077 165.582 1074.28 166.753 Q1071.57 167.924 1068.73 168.017 L1066.9 175.161 Q1066.55 176.895 1066.37 177.082 Q1066.18 177.269 1065.9 177.269 Q1065.31 177.269 1065.31 176.731 Q1065.31 176.567 1066.37 172.515 L1067.49 168.017 Q1063.23 167.783 1060.74 165.324 Q1058.26 162.865 1058.26 159.328 Q1058.26 156.939 1059.48 154.573 Q1060.72 152.184 1062.71 150.38 Q1064.73 148.577 1067.44 147.429 Q1070.16 146.281 1072.95 146.188 L1075.73 135.109 Q1075.88 134.477 1075.99 134.313 Q1076.11 134.149 1076.46 134.149 Q1076.72 134.149 1076.86 134.266 Q1077 134.383 1077 134.5 L1077.02 134.617 L1076.88 135.296 L1074.19 146.188 Q1076.58 146.352 1078.43 147.195 Q1080.28 148.038 1081.33 149.303 Q1082.39 150.544 1082.9 151.95 Q1083.42 153.355 1083.42 154.854 M1072.67 147.242 Q1070.09 147.476 1067.91 148.741 Q1065.73 150.006 1064.33 151.879 Q1062.92 153.73 1062.15 155.955 Q1061.38 158.157 1061.38 160.335 Q1061.38 162.045 1061.94 163.356 Q1062.52 164.668 1063.48 165.418 Q1064.45 166.144 1065.5 166.542 Q1066.58 166.917 1067.72 166.963 L1072.67 147.242 M1080.28 153.847 Q1080.28 150.802 1078.52 149.092 Q1076.77 147.382 1073.91 147.242 L1068.97 166.963 Q1071.05 166.8 1072.88 165.933 Q1074.73 165.043 1076.06 163.731 Q1077.4 162.396 1078.36 160.757 Q1079.32 159.094 1079.79 157.337 Q1080.28 155.557 1080.28 153.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"\n",
+       "M1387.43 1486.45 L2352.76 1486.45 L2352.76 47.2441 L1387.43 47.2441  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<defs>\n",
+       "  <clipPath id=\"clip034\">\n",
+       "    <rect x=\"1387\" y=\"47\" width=\"966\" height=\"1440\"/>\n",
+       "  </clipPath>\n",
+       "</defs>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1414.75,1486.45 1414.75,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1596.89,1486.45 1596.89,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1779.03,1486.45 1779.03,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1961.16,1486.45 1961.16,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2143.3,1486.45 2143.3,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  2325.44,1486.45 2325.44,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1387.43,1411.61 2352.76,1411.61 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1387.43,1001.08 2352.76,1001.08 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1387.43,590.55 2352.76,590.55 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip034)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
+       "  1387.43,180.02 2352.76,180.02 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,1486.45 2352.76,1486.45 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,1486.45 1387.43,47.2441 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.75,1486.45 1414.75,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1596.89,1486.45 1596.89,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1779.03,1486.45 1779.03,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1961.16,1486.45 1961.16,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2143.3,1486.45 2143.3,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2325.44,1486.45 2325.44,1469.18 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,1411.61 1399.02,1411.61 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,1001.08 1399.02,1001.08 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,590.55 1399.02,590.55 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1387.43,180.02 1399.02,180.02 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"M 0 0 M1414.75 1508.44 Q1411.14 1508.44 1409.31 1512 Q1407.51 1515.55 1407.51 1522.67 Q1407.51 1529.78 1409.31 1533.35 Q1411.14 1536.89 1414.75 1536.89 Q1418.39 1536.89 1420.19 1533.35 Q1422.02 1529.78 1422.02 1522.67 Q1422.02 1515.55 1420.19 1512 Q1418.39 1508.44 1414.75 1508.44 M1414.75 1504.73 Q1420.56 1504.73 1423.62 1509.34 Q1426.7 1513.92 1426.7 1522.67 Q1426.7 1531.4 1423.62 1536.01 Q1420.56 1540.59 1414.75 1540.59 Q1408.94 1540.59 1405.86 1536.01 Q1402.81 1531.4 1402.81 1522.67 Q1402.81 1513.92 1405.86 1509.34 Q1408.94 1504.73 1414.75 1504.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1587.27 1535.98 L1594.91 1535.98 L1594.91 1509.62 L1586.6 1511.29 L1586.6 1507.03 L1594.86 1505.36 L1599.54 1505.36 L1599.54 1535.98 L1607.18 1535.98 L1607.18 1539.92 L1587.27 1539.92 L1587.27 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1773.68 1535.98 L1790 1535.98 L1790 1539.92 L1768.05 1539.92 L1768.05 1535.98 Q1770.72 1533.23 1775.3 1528.6 Q1779.9 1523.95 1781.09 1522.61 Q1783.33 1520.08 1784.21 1518.35 Q1785.11 1516.59 1785.11 1514.9 Q1785.11 1512.14 1783.17 1510.41 Q1781.25 1508.67 1778.15 1508.67 Q1775.95 1508.67 1773.49 1509.43 Q1771.06 1510.2 1768.28 1511.75 L1768.28 1507.03 Q1771.11 1505.89 1773.56 1505.31 Q1776.02 1504.73 1778.05 1504.73 Q1783.42 1504.73 1786.62 1507.42 Q1789.81 1510.11 1789.81 1514.6 Q1789.81 1516.73 1789 1518.65 Q1788.22 1520.54 1786.11 1523.14 Q1785.53 1523.81 1782.43 1527.03 Q1779.33 1530.22 1773.68 1535.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1965.41 1521.29 Q1968.77 1522 1970.64 1524.27 Q1972.54 1526.54 1972.54 1529.87 Q1972.54 1534.99 1969.02 1537.79 Q1965.5 1540.59 1959.02 1540.59 Q1956.84 1540.59 1954.53 1540.15 Q1952.24 1539.73 1949.78 1538.88 L1949.78 1534.36 Q1951.73 1535.5 1954.04 1536.08 Q1956.36 1536.66 1958.88 1536.66 Q1963.28 1536.66 1965.57 1534.92 Q1967.89 1533.18 1967.89 1529.87 Q1967.89 1526.82 1965.73 1525.11 Q1963.6 1523.37 1959.78 1523.37 L1955.76 1523.37 L1955.76 1519.53 L1959.97 1519.53 Q1963.42 1519.53 1965.25 1518.16 Q1967.08 1516.77 1967.08 1514.18 Q1967.08 1511.52 1965.18 1510.11 Q1963.3 1508.67 1959.78 1508.67 Q1957.86 1508.67 1955.66 1509.09 Q1953.47 1509.5 1950.83 1510.38 L1950.83 1506.22 Q1953.49 1505.48 1955.8 1505.11 Q1958.14 1504.73 1960.2 1504.73 Q1965.53 1504.73 1968.63 1507.17 Q1971.73 1509.57 1971.73 1513.69 Q1971.73 1516.56 1970.09 1518.55 Q1968.44 1520.52 1965.41 1521.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M2146.31 1509.43 L2134.5 1527.88 L2146.31 1527.88 L2146.31 1509.43 M2145.08 1505.36 L2150.96 1505.36 L2150.96 1527.88 L2155.89 1527.88 L2155.89 1531.77 L2150.96 1531.77 L2150.96 1539.92 L2146.31 1539.92 L2146.31 1531.77 L2130.71 1531.77 L2130.71 1527.26 L2145.08 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M2315.71 1505.36 L2334.07 1505.36 L2334.07 1509.3 L2320 1509.3 L2320 1517.77 Q2321.01 1517.42 2322.03 1517.26 Q2323.05 1517.07 2324.07 1517.07 Q2329.86 1517.07 2333.24 1520.24 Q2336.62 1523.42 2336.62 1528.83 Q2336.62 1534.41 2333.14 1537.51 Q2329.67 1540.59 2323.35 1540.59 Q2321.18 1540.59 2318.91 1540.22 Q2316.66 1539.85 2314.25 1539.11 L2314.25 1534.41 Q2316.34 1535.54 2318.56 1536.1 Q2320.78 1536.66 2323.26 1536.66 Q2327.26 1536.66 2329.6 1534.55 Q2331.94 1532.44 2331.94 1528.83 Q2331.94 1525.22 2329.6 1523.11 Q2327.26 1521.01 2323.26 1521.01 Q2321.38 1521.01 2319.51 1521.42 Q2317.66 1521.84 2315.71 1522.72 L2315.71 1505.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1266.05 1410.25 Q1269.4 1410.97 1271.28 1413.24 Q1273.18 1415.51 1273.18 1418.84 Q1273.18 1423.96 1269.66 1426.76 Q1266.14 1429.56 1259.66 1429.56 Q1257.48 1429.56 1255.17 1429.12 Q1252.88 1428.7 1250.42 1427.85 L1250.42 1423.33 Q1252.37 1424.47 1254.68 1425.05 Q1257 1425.62 1259.52 1425.62 Q1263.92 1425.62 1266.21 1423.89 Q1268.52 1422.15 1268.52 1418.84 Q1268.52 1415.79 1266.37 1414.07 Q1264.24 1412.34 1260.42 1412.34 L1256.39 1412.34 L1256.39 1408.49 L1260.61 1408.49 Q1264.06 1408.49 1265.89 1407.13 Q1267.71 1405.74 1267.71 1403.15 Q1267.71 1400.49 1265.82 1399.07 Q1263.94 1397.64 1260.42 1397.64 Q1258.5 1397.64 1256.3 1398.05 Q1254.1 1398.47 1251.46 1399.35 L1251.46 1395.18 Q1254.13 1394.44 1256.44 1394.07 Q1258.78 1393.7 1260.84 1393.7 Q1266.16 1393.7 1269.27 1396.13 Q1272.37 1398.54 1272.37 1402.66 Q1272.37 1405.53 1270.72 1407.52 Q1269.08 1409.49 1266.05 1410.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1278.25 1423.01 L1283.13 1423.01 L1283.13 1428.89 L1278.25 1428.89 L1278.25 1423.01 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1289.01 1424.95 L1296.65 1424.95 L1296.65 1398.59 L1288.34 1400.25 L1288.34 1395.99 L1296.6 1394.33 L1301.28 1394.33 L1301.28 1424.95 L1308.92 1424.95 L1308.92 1428.89 L1289.01 1428.89 L1289.01 1424.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1326.83 1398.4 L1315.03 1416.85 L1326.83 1416.85 L1326.83 1398.4 M1325.61 1394.33 L1331.49 1394.33 L1331.49 1416.85 L1336.42 1416.85 L1336.42 1420.74 L1331.49 1420.74 L1331.49 1428.89 L1326.83 1428.89 L1326.83 1420.74 L1311.23 1420.74 L1311.23 1416.23 L1325.61 1394.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1351.49 1397.41 Q1347.88 1397.41 1346.05 1400.97 Q1344.24 1404.51 1344.24 1411.64 Q1344.24 1418.75 1346.05 1422.31 Q1347.88 1425.86 1351.49 1425.86 Q1355.12 1425.86 1356.93 1422.31 Q1358.76 1418.75 1358.76 1411.64 Q1358.76 1404.51 1356.93 1400.97 Q1355.12 1397.41 1351.49 1397.41 M1351.49 1393.7 Q1357.3 1393.7 1360.35 1398.31 Q1363.43 1402.89 1363.43 1411.64 Q1363.43 1420.37 1360.35 1424.98 Q1357.3 1429.56 1351.49 1429.56 Q1345.68 1429.56 1342.6 1424.98 Q1339.54 1420.37 1339.54 1411.64 Q1339.54 1402.89 1342.6 1398.31 Q1345.68 1393.7 1351.49 1393.7 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1267.27 999.725 Q1270.63 1000.44 1272.51 1002.71 Q1274.4 1004.98 1274.4 1008.31 Q1274.4 1013.43 1270.89 1016.23 Q1267.37 1019.03 1260.89 1019.03 Q1258.71 1019.03 1256.39 1018.59 Q1254.1 1018.17 1251.65 1017.32 L1251.65 1012.8 Q1253.59 1013.94 1255.91 1014.52 Q1258.22 1015.1 1260.75 1015.1 Q1265.14 1015.1 1267.44 1013.36 Q1269.75 1011.62 1269.75 1008.31 Q1269.75 1005.26 1267.6 1003.54 Q1265.47 1001.81 1261.65 1001.81 L1257.62 1001.81 L1257.62 997.965 L1261.83 997.965 Q1265.28 997.965 1267.11 996.6 Q1268.94 995.211 1268.94 992.618 Q1268.94 989.956 1267.04 988.544 Q1265.17 987.109 1261.65 987.109 Q1259.73 987.109 1257.53 987.526 Q1255.33 987.942 1252.69 988.822 L1252.69 984.655 Q1255.35 983.915 1257.67 983.544 Q1260.01 983.174 1262.07 983.174 Q1267.39 983.174 1270.49 985.604 Q1273.59 988.012 1273.59 992.132 Q1273.59 995.003 1271.95 996.993 Q1270.31 998.961 1267.27 999.725 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1279.47 1012.48 L1284.36 1012.48 L1284.36 1018.36 L1279.47 1018.36 L1279.47 1012.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1290.24 1014.42 L1297.88 1014.42 L1297.88 988.058 L1289.57 989.725 L1289.57 985.466 L1297.83 983.799 L1302.51 983.799 L1302.51 1014.42 L1310.14 1014.42 L1310.14 1018.36 L1290.24 1018.36 L1290.24 1014.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1328.06 987.873 L1316.26 1006.32 L1328.06 1006.32 L1328.06 987.873 M1326.83 983.799 L1332.71 983.799 L1332.71 1006.32 L1337.64 1006.32 L1337.64 1010.21 L1332.71 1010.21 L1332.71 1018.36 L1328.06 1018.36 L1328.06 1010.21 L1312.46 1010.21 L1312.46 1005.7 L1326.83 983.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1343.52 1014.42 L1351.16 1014.42 L1351.16 988.058 L1342.85 989.725 L1342.85 985.466 L1351.12 983.799 L1355.79 983.799 L1355.79 1014.42 L1363.43 1014.42 L1363.43 1018.36 L1343.52 1018.36 L1343.52 1014.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1267.64 589.195 Q1271 589.913 1272.88 592.182 Q1274.77 594.45 1274.77 597.783 Q1274.77 602.899 1271.26 605.7 Q1267.74 608.501 1261.26 608.501 Q1259.08 608.501 1256.77 608.061 Q1254.47 607.644 1252.02 606.788 L1252.02 602.274 Q1253.96 603.408 1256.28 603.987 Q1258.59 604.566 1261.12 604.566 Q1265.52 604.566 1267.81 602.83 Q1270.12 601.094 1270.12 597.783 Q1270.12 594.728 1267.97 593.015 Q1265.84 591.279 1262.02 591.279 L1257.99 591.279 L1257.99 587.436 L1262.21 587.436 Q1265.65 587.436 1267.48 586.07 Q1269.31 584.682 1269.31 582.089 Q1269.31 579.427 1267.41 578.015 Q1265.54 576.58 1262.02 576.58 Q1260.1 576.58 1257.9 576.996 Q1255.7 577.413 1253.06 578.293 L1253.06 574.126 Q1255.72 573.385 1258.04 573.015 Q1260.38 572.645 1262.44 572.645 Q1267.76 572.645 1270.86 575.075 Q1273.96 577.483 1273.96 581.603 Q1273.96 584.473 1272.32 586.464 Q1270.68 588.432 1267.64 589.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1279.84 601.95 L1284.73 601.95 L1284.73 607.83 L1279.84 607.83 L1279.84 601.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1290.61 603.894 L1298.25 603.894 L1298.25 577.529 L1289.94 579.195 L1289.94 574.936 L1298.2 573.27 L1302.88 573.27 L1302.88 603.894 L1310.52 603.894 L1310.52 607.83 L1290.61 607.83 L1290.61 603.894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1328.43 577.344 L1316.63 595.793 L1328.43 595.793 L1328.43 577.344 M1327.2 573.27 L1333.08 573.27 L1333.08 595.793 L1338.01 595.793 L1338.01 599.681 L1333.08 599.681 L1333.08 607.83 L1328.43 607.83 L1328.43 599.681 L1312.83 599.681 L1312.83 595.168 L1327.2 573.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1347.11 603.894 L1363.43 603.894 L1363.43 607.83 L1341.49 607.83 L1341.49 603.894 Q1344.15 601.14 1348.73 596.51 Q1353.34 591.857 1354.52 590.515 Q1356.76 587.992 1357.64 586.256 Q1358.55 584.496 1358.55 582.807 Q1358.55 580.052 1356.6 578.316 Q1354.68 576.58 1351.58 576.58 Q1349.38 576.58 1346.93 577.344 Q1344.5 578.108 1341.72 579.658 L1341.72 574.936 Q1344.54 573.802 1347 573.223 Q1349.45 572.645 1351.49 572.645 Q1356.86 572.645 1360.05 575.33 Q1363.25 578.015 1363.25 582.506 Q1363.25 584.635 1362.44 586.557 Q1361.65 588.455 1359.54 591.047 Q1358.96 591.719 1355.86 594.936 Q1352.76 598.131 1347.11 603.894 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1266.7 178.666 Q1270.05 179.384 1271.93 181.652 Q1273.83 183.921 1273.83 187.254 Q1273.83 192.37 1270.31 195.171 Q1266.79 197.972 1260.31 197.972 Q1258.13 197.972 1255.82 197.532 Q1253.52 197.115 1251.07 196.259 L1251.07 191.745 Q1253.02 192.879 1255.33 193.458 Q1257.64 194.036 1260.17 194.036 Q1264.57 194.036 1266.86 192.3 Q1269.17 190.564 1269.17 187.254 Q1269.17 184.199 1267.02 182.486 Q1264.89 180.749 1261.07 180.749 L1257.04 180.749 L1257.04 176.907 L1261.26 176.907 Q1264.71 176.907 1266.53 175.541 Q1268.36 174.152 1268.36 171.56 Q1268.36 168.898 1266.46 167.486 Q1264.59 166.05 1261.07 166.05 Q1259.15 166.05 1256.95 166.467 Q1254.75 166.884 1252.11 167.763 L1252.11 163.597 Q1254.77 162.856 1257.09 162.486 Q1259.43 162.115 1261.49 162.115 Q1266.81 162.115 1269.91 164.546 Q1273.02 166.953 1273.02 171.074 Q1273.02 173.944 1271.37 175.935 Q1269.73 177.902 1266.7 178.666 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1278.89 191.421 L1283.78 191.421 L1283.78 197.3 L1278.89 197.3 L1278.89 191.421 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1289.66 193.365 L1297.3 193.365 L1297.3 167 L1288.99 168.666 L1288.99 164.407 L1297.25 162.74 L1301.93 162.74 L1301.93 193.365 L1309.57 193.365 L1309.57 197.3 L1289.66 197.3 L1289.66 193.365 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1327.48 166.814 L1315.68 185.263 L1327.48 185.263 L1327.48 166.814 M1326.26 162.74 L1332.14 162.74 L1332.14 185.263 L1337.07 185.263 L1337.07 189.152 L1332.14 189.152 L1332.14 197.3 L1327.48 197.3 L1327.48 189.152 L1311.88 189.152 L1311.88 184.638 L1326.26 162.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip030)\" d=\"M 0 0 M1356.3 178.666 Q1359.66 179.384 1361.53 181.652 Q1363.43 183.921 1363.43 187.254 Q1363.43 192.37 1359.91 195.171 Q1356.39 197.972 1349.91 197.972 Q1347.74 197.972 1345.42 197.532 Q1343.13 197.115 1340.68 196.259 L1340.68 191.745 Q1342.62 192.879 1344.94 193.458 Q1347.25 194.036 1349.77 194.036 Q1354.17 194.036 1356.46 192.3 Q1358.78 190.564 1358.78 187.254 Q1358.78 184.199 1356.63 182.486 Q1354.5 180.749 1350.68 180.749 L1346.65 180.749 L1346.65 176.907 L1350.86 176.907 Q1354.31 176.907 1356.14 175.541 Q1357.97 174.152 1357.97 171.56 Q1357.97 168.898 1356.07 167.486 Q1354.2 166.05 1350.68 166.05 Q1348.76 166.05 1346.56 166.467 Q1344.36 166.884 1341.72 167.763 L1341.72 163.597 Q1344.38 162.856 1346.7 162.486 Q1349.03 162.115 1351.09 162.115 Q1356.42 162.115 1359.52 164.546 Q1362.62 166.953 1362.62 171.074 Q1362.62 173.944 1360.98 175.935 Q1359.33 177.902 1356.3 178.666 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip034)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  1414.75,757.777 1423.95,751.313 1433.15,709.44 1442.35,612.269 1451.55,465.046 1460.75,298.154 1469.94,157.384 1479.14,87.9763 1488.34,118.3 1497.54,249.186 \n",
+       "  1506.74,452.872 1515.94,681.988 1525.14,885.32 1534.34,1024.63 1543.54,1086.46 1552.73,1084.65 1561.93,1052.94 1571.13,1030.33 1580.33,1044.97 1589.53,1102.43 \n",
+       "  1598.73,1182.95 1607.93,1248.67 1617.13,1258.16 1626.32,1182.86 1635.52,1019.25 1644.72,792.149 1653.92,547.777 1663.12,339.051 1672.32,208.35 1681.52,174.03 \n",
+       "  1690.72,225.524 1699.92,328.741 1709.11,439.651 1718.31,520.971 1727.51,555.741 1736.71,552.764 1745.91,541.964 1755.11,561.475 1764.31,641.362 1773.51,790.12 \n",
+       "  1782.7,989.113 1791.9,1197.15 1801.1,1363.65 1810.3,1445.72 1819.5,1422.83 1828.7,1303.84 1837.9,1123.69 1847.1,931.05 1856.3,771.403 1865.49,671.86 \n",
+       "  1874.69,633.122 1883.89,631.521 1893.09,630.201 1902.29,595.153 1911.49,510.001 1920.69,383.935 1929.89,249.715 1939.08,152.411 1948.28,132.999 1957.48,212.874 \n",
+       "  1966.68,385.043 1975.88,615.298 1985.08,853.019 1994.28,1047.71 2003.48,1165.29 2012.68,1198.32 2021.87,1166.41 2031.07,1107.01 2040.27,1059.89 2049.47,1051.29 \n",
+       "  2058.67,1083.66 2067.87,1134.75 2077.07,1166.56 2086.27,1140.58 2095.46,1033.78 2104.66,849.202 2113.86,617.175 2123.06,386.455 2132.26,208.54 2141.46,120.736 \n",
+       "  2150.66,134.14 2159.86,230.894 2169.06,371.624 2178.25,510.26 2187.45,610.727 2196.65,659.338 2205.85,668.36 2215.05,669.545 2224.25,700.148 2233.45,786.738 \n",
+       "  2242.65,932.961 2251.84,1115.91 2261.04,1292.61 2270.24,1414.37 2279.44,1443.74 2288.64,1367.95 2297.84,1203.73 2307.04,991.862 2316.24,783.343 2325.44,622.213 \n",
+       "  \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"\n",
+       "M2182.4 216.178 L2320.58 216.178 L2320.58 95.2176 L2182.4 95.2176  Z\n",
+       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2182.4,216.178 2320.58,216.178 2320.58,95.2176 2182.4,95.2176 2182.4,216.178 \n",
+       "  \"/>\n",
+       "<polyline clip-path=\"url(#clip030)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
+       "  2193.13,155.698 2257.48,155.698 \n",
+       "  \"/>\n",
+       "<path clip-path=\"url(#clip030)\" d=\"M 0 0 M2297.28 149.584 Q2297.28 150.989 2296.74 153.449 Q2296.22 155.908 2295.8 157.079 Q2294.63 160.194 2292.29 162.818 Q2291 164.27 2289.59 165.324 Q2288.21 166.354 2287.18 166.87 Q2286.15 167.362 2284.93 167.619 Q2283.72 167.9 2283.15 167.924 Q2282.59 167.971 2281.8 167.971 L2279.97 175.114 Q2279.59 176.965 2279.41 177.082 Q2279.36 177.176 2279.24 177.223 Q2279.15 177.269 2279.05 177.269 L2278.96 177.269 Q2278.7 177.269 2278.56 177.152 Q2278.42 177.035 2278.4 176.895 L2278.4 176.777 Q2278.4 176.45 2279.5 172.234 Q2280.06 170.079 2280.55 167.854 Q2276.81 167.619 2274.49 165.956 Q2272.19 164.293 2272.19 161.061 Q2272.19 159.07 2274.51 152.957 Q2275.61 150.029 2275.61 148.811 Q2275.61 148.272 2275.49 147.944 Q2275.38 147.593 2275.14 147.476 Q2274.91 147.335 2274.77 147.312 Q2274.65 147.289 2274.42 147.289 Q2273.04 147.289 2271.75 148.671 Q2270.46 150.052 2269.57 153.238 Q2269.38 153.823 2269.26 153.964 Q2269.15 154.105 2268.8 154.105 Q2268.21 154.081 2268.21 153.613 Q2268.21 153.425 2268.42 152.699 Q2268.63 151.95 2269.12 150.849 Q2269.64 149.725 2270.34 148.717 Q2271.04 147.687 2272.14 146.961 Q2273.27 146.235 2274.56 146.235 Q2276.31 146.235 2277.39 147.382 Q2278.49 148.507 2278.49 150.17 Q2278.49 150.498 2278.42 150.872 Q2278.35 151.247 2278.28 151.458 Q2278.23 151.669 2278.09 152.067 Q2277.98 152.442 2277.95 152.512 Q2276.76 155.604 2276.15 157.618 Q2275.54 159.609 2275.45 160.194 Q2275.38 160.757 2275.38 161.436 Q2275.38 166.167 2280.83 166.8 L2288.8 135.109 Q2288.94 134.453 2289.06 134.313 Q2289.17 134.149 2289.52 134.149 Q2290.09 134.149 2290.09 134.664 Q2290.09 134.828 2289.95 135.39 L2282.03 166.893 Q2282.78 166.893 2283.25 166.87 Q2283.72 166.846 2284.7 166.636 Q2285.71 166.401 2286.55 165.98 Q2287.42 165.558 2288.63 164.715 Q2289.85 163.848 2291.05 162.63 Q2292.55 161.108 2293.88 158.555 Q2295.22 156.002 2295.22 153.894 Q2295.22 151.528 2293.51 149.818 Q2293.25 149.584 2293.11 149.443 Q2292.99 149.303 2292.87 149.069 Q2292.78 148.835 2292.78 148.53 Q2292.78 147.734 2293.53 146.984 Q2294.28 146.235 2295.17 146.235 Q2295.97 146.235 2296.62 147.008 Q2297.28 147.78 2297.28 149.584 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
+      ]
+     },
+     "metadata": {},
+     "output_type": "display_data"
+    }
+   ],
+   "source": [
+    "for sol in sols\n",
+    "    ts = range(sol.t[1], sol.t[end], length = 100)\n",
+    "    xs = sol.(ts)\n",
+    "    ϕs = [ x[1] for x in xs ]\n",
+    "    θs = [ x[3] for x in xs ]\n",
+    "    plt_ϕ = plot(ts, ϕs, label=L\"\\phi\")\n",
+    "    plt_θ = plot(ts, θs, label=L\"\\psi\")\n",
+    "    display(plot(plt_ϕ, plt_θ, layout = (1,2)))\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We want to estimate the parameter values, by minimizing the squared differences betwee expected and observed increments in the state. This approach assumes that we have access to the model.\n",
+    "\n",
+    "We define our cost function to be minimized as follows:\n",
+    "  * For a given 4-tuple of parameters $\\alpha$, $\\beta$, $\\gamma$, $\\delta$\n",
+    "  * For each policy, and its associated solution\n",
+    "  * We compute the vectors of observed dx/dt and predicted dx/dt (from the model and the parameters given)\n",
+    "  * The sums of squared differences for each policy are added to form the cost"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "cost (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 15,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function cost(ps)\n",
+    "    α, β, γ, δ = ps\n",
+    "    total_cost = 0.0\n",
+    "    for (sol, fτϕ) in zip(sols, fτϕs)\n",
+    "        xs = sol.u\n",
+    "        ts = sol.t\n",
+    "        dxs = xs[2:end] - xs[1:end-1]\n",
+    "        dts = ts[2:end] - ts[1:end-1]\n",
+    "        dxdts = dxs ./ dts\n",
+    "        dxdts_pred = [ dx(x, (α, β, γ, δ, fτϕ, fτθ), t) for (x, t) in zip(xs, ts) ][2:end]\n",
+    "        diffs = vcat((dxdts - dxdts_pred)...)\n",
+    "        total_cost += sum( diffs .^ 2.0 )\n",
+    "    end\n",
+    "    total_cost\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We compute our parameters by minimizing our cost, starting from a random guess."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       " * Status: success\n",
+       "\n",
+       " * Candidate solution\n",
+       "    Final objective value:     1.075901e+00\n",
+       "\n",
+       " * Found with\n",
+       "    Algorithm:     Nelder-Mead\n",
+       "\n",
+       " * Convergence measures\n",
+       "    √(Σ(yᵢ-ȳ)²)/n ≤ 1.0e-08\n",
+       "\n",
+       " * Work counters\n",
+       "    Seconds run:   1  (vs limit Inf)\n",
+       "    Iterations:    273\n",
+       "    f(x) calls:    489\n"
+      ]
+     },
+     "execution_count": 16,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "ps_fit = optimize(cost, rand(4))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Our solution should be compared to the parameters we chose at the beginning, and we have a set of parameters that we can use for further experiments."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(1.0022636705292638, 0.007371341077970709, 0.0010905383749426603, 1.0877988343066645)"
+      ]
+     },
+     "execution_count": 17,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "(α′, β′, γ′, δ′) = ps_fit.minimizer\n",
+    "(α′, β′, γ′, δ′)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(1.0000103333333332, 0.0003333333333333334, 5.0000000000000016e-5, 0.05)"
+      ]
+     },
+     "execution_count": 18,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "(α, β, γ, δ)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Controlling based on parameters\n",
+    "\n",
+    " We want to start at rest, swing the pendulum up, and then stop and hold it in an upright position."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "**TODO:** Design method\n",
+    "  1. Linearize locally\n",
+    "  1. Cost function with total energy\n",
+    "  1. Switch to cost function with deviation from upright position"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": []
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We compute a linear model by linearizing to get a state-space description\n",
+    "$$dx = A*x + B*u$$\n",
+    "\n",
+    "\n",
+    "We assume a constant policy with a torque $\\tau$, and linearize the response around a state $x$ \n",
+    "\n",
+    "$$A_{ij} = \\frac{\\partial dx_{i}}{\\partial x_{j}}$$\n",
+    "$$B_{i} = \\frac{\\partial dx_{i}}{\\partial \\tau}$$"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 19,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "AB (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 19,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function AB(x, τ)\n",
+    "    \n",
+    "    # The policy must be an array to enable gradients\n",
+    "    τ_vec = [τ]\n",
+    "    fτϕ(x, t) = τ_vec[1]\n",
+    "    p = vcat(ps_fit.minimizer, fτϕ, fτθ)\n",
+    "    \n",
+    "    t = 0.0 # The system is time invariant\n",
+    "    \n",
+    "    A = zeros(4, 4)\n",
+    "    for row in 1:4\n",
+    "        A[row, :] = gradient( x -> dx(x, p, t)[row], x )[1]\n",
+    "    end\n",
+    "    \n",
+    "    B = zeros(4, 1)\n",
+    "    for row in 1:4\n",
+    "        B[row, 1] = gradient( () -> dx(x, p, t)[row], Params([τ_vec]))[τ_vec] |> only\n",
+    "    end    \n",
+    "    \n",
+    "    A, B\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 20,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "BenchmarkTools.Trial: \n",
+       "  memory estimate:  230.52 KiB\n",
+       "  allocs estimate:  8463\n",
+       "  --------------\n",
+       "  minimum time:     2.244 ms (0.00% GC)\n",
+       "  median time:      2.269 ms (0.00% GC)\n",
+       "  mean time:        2.326 ms (0.98% GC)\n",
+       "  maximum time:     10.857 ms (76.69% GC)\n",
+       "  --------------\n",
+       "  samples:          2147\n",
+       "  evals/sample:     1"
+      ]
+     },
+     "execution_count": 20,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "@benchmark AB([0.0, 0.0, 0.0, 0.0], 0.0)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 21,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "([0.0 1.0 0.0 0.0; 0.0 0.0 -0.1605946087245449 0.0; 0.0 0.0 0.0 1.0; 0.0 0.0 147.5951197186769 0.0], [0.0; 0.997902077530332; 0.0; -0.1476326354283178])"
+      ]
+     },
+     "execution_count": 21,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "A, B = AB([0.0, 0.0, 0.0, 0.0], 0.0)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 22,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "4×4 Array{Float64,2}:\n",
+       " 0.0  1.0    0.0       0.0\n",
+       " 0.0  0.0   -0.160595  0.0\n",
+       " 0.0  0.0    0.0       1.0\n",
+       " 0.0  0.0  147.595     0.0"
+      ]
+     },
+     "execution_count": 22,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "A"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 23,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "4×1 Array{Float64,2}:\n",
+       "  0.0\n",
+       "  0.997902077530332\n",
+       "  0.0\n",
+       " -0.1476326354283178"
+      ]
+     },
+     "execution_count": 23,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "B"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We use a cost function that contains both the energy and the state, as we need sufficient energy to reach an upright state.\n",
+    "\n",
+    "Our policy will be of the form $u = -Kx$ for some $K$ that will be optimized to minimize the cost over some time-span in the future "
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 24,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "state_cost (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 24,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function energy(x)\n",
+    "    (ϕ, ϕ′, θ, θ′) = x\n",
+    "    sinθ = sin(θ)\n",
+    "    cosθ = cos(θ)\n",
+    "    T_c = J*ϕ′^2/2\n",
+    "    V_c = 0\n",
+    "    T_a = m_a*l_a^2*ϕ′^2/6\n",
+    "    V_a = 0\n",
+    "    T_p = m_p*(l_a^2+l_p^2*sinθ^2)*ϕ′^2/2 + m_p*l_a*l_p*cosθ*ϕ′*θ′/2+m_p*l_p^2*θ′^2/2\n",
+    "    V_p = m_p*g*l_p*cosθ/2\n",
+    "    T_m = M*(l_a^2 + l_p^2*sinθ^2)*ϕ′^2/2 + M*l_a*l_p*cosθ*ϕ′*θ′ + M*l_p^2*θ′^2\n",
+    "    V_m = M*g*l_p*cosθ\n",
+    "    T_c + T_a + T_p + T_m + V_c + V_a + V_p + V_m\n",
+    "end\n",
+    "\n",
+    "function state_cost(x, target; energy_cost_factor = 1.0)\n",
+    "    # Compute total energy at target state\n",
+    "    e_target = energy(target)\n",
+    "    # Compute total energy at current state\n",
+    "    e_current = energy(x)\n",
+    "    # Compute state-diff between current and target\n",
+    "    x_diff = target - x\n",
+    "    # \n",
+    "    cost = sum(x_diff .^ 2) + energy_cost_factor * (e_current - e_target)^2\n",
+    "    cost\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "We now define a differential equation for the combination of state and cost, with parameters $A$ and $B$"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 25,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "generate_policy (generic function with 3 methods)"
+      ]
+     },
+     "execution_count": 25,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "function d_cx(cx, p, t)\n",
+    "    (c, ϕ, ϕ′, θ, θ′) = cx\n",
+    "    (α, β, γ, δ, energy_cost_factor, target, A, B, K) = p\n",
+    "    x = [ϕ, ϕ′, θ, θ′]\n",
+    "    dc = state_cost(x, target, energy_cost_factor=energy_cost_factor)\n",
+    "    dx = (A - B*K)*x\n",
+    "    vcat(dc, dx)\n",
+    "end\n",
+    "\n",
+    "function compute_K(A, B; Δt = 50*10^-3)\n",
+    "    function policy_cost(K)\n",
+    "        cx_init = [0.0, 0.0, 0.0, π, 0.0]\n",
+    "        target = [0.0, 0.0, 0.0, 0.0]\n",
+    "        p = (α′, β′, γ′, δ′, 10, target, A, B, K)\n",
+    "        cx_problem = ODEProblem(d_cx, cx_init, (0.0, Δt))\n",
+    "        cx_solution = solve(cx_problem, Tsit5(), reltol=1e-8, abstol=1e-8, p=p)\n",
+    "        cx_solution.u[end][1]\n",
+    "    end\n",
+    "    \n",
+    "    opt = optimize(policy_cost, zeros(1, 4))\n",
+    "    \n",
+    "    # Set up an ODE problem computing the cost\n",
+    "    # Minimize the cost w.r.t. the parameter K\n",
+    "    # Return the minimizer\n",
+    "end\n",
+    "\n",
+    "function generate_policy(A, B, target = [0.0, 0.0, 0.0, 0.0], energy_cost_factor = 1.0)\n",
+    "    K_sol = compute_K(A, B)\n",
+    "    K = K_sol.minimizer\n",
+    "    function fτϕ(x, t)\n",
+    "        -K*x\n",
+    "    end\n",
+    "    fτϕ\n",
+    "end"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 26,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "(::var\"#fτϕ#32\"{Array{Float64,2}}) (generic function with 1 method)"
+      ]
+     },
+     "execution_count": 26,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "f = generate_policy(A, B)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 27,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "1-element Array{Float64,1}:\n",
+       " -3836.5017811718617"
+      ]
+     },
+     "execution_count": 27,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "f([1.0, 2.0, 3.0, 4.0], 0.0)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Test on real system"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "Do the same thing on the real process"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Julia 1.4.2",
+   "language": "julia",
+   "name": "julia-1.4"
+  },
+  "language_info": {
+   "file_extension": ".jl",
+   "mimetype": "application/julia",
+   "name": "julia",
+   "version": "1.4.2"
+  },
+  "toc-autonumbering": true,
+  "toc-showtags": false
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}