{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": [
     "remove-cell"
    ]
   },
   "outputs": [],
   "source": [
    "%config Completer.use_jedi = False\n",
    "%config InlineBackend.figure_formats = ['svg']"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# SymPy"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Some useful SymPy pages:\n",
    "- [Tutorial page](https://docs.sympy.org/latest/tutorial/index.html)\n",
    "- [SymPy API](https://docs.sympy.org/latest/modules/index.html)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Defining the amplitude model in terms of SymPY"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Parameters would become a mapping of `Symbol`s to initial, suggested values and dynamics would be a mapping of `Symbol`s to 'suggested' expressions. Intensity will be the eventual combined expression."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "hide-cell",
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "# !pip install matplotlib==3.3.3 sympy==1.7.1"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "from typing import Dict\n",
    "\n",
    "import attr\n",
    "import sympy as sp\n",
    "\n",
    "\n",
    "@attr.s\n",
    "class AmplitudeModel:\n",
    "    initial_values: Dict[sp.Symbol, float] = attr.ib(default={})\n",
    "    dynamics: Dict[sp.Symbol, sp.Function] = attr.ib(default={})\n",
    "    intensity: sp.Expr = attr.ib(default=None)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "There needs to be one symbol $x$ that represents the four-momentum input:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "x = sp.Symbol(\"x\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "As an example, let's create an `AmplitudeModel` with an `intensity` that is a sum of Gaussians. Each Gaussian here takes the rôle of a dynamics function:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "model = AmplitudeModel()\n",
    "\n",
    "N_COMPONENTS = 3\n",
    "for i in range(1, N_COMPONENTS + 1):\n",
    "    mu = sp.Symbol(fR\"\\mu_{i}\")\n",
    "    sigma = sp.Symbol(fR\"\\sigma_{i}\")\n",
    "    model.initial_values.update(\n",
    "        {\n",
    "            mu: float(i),\n",
    "            sigma: 1 / (2 * i),\n",
    "        }\n",
    "    )\n",
    "    gauss = sp.exp(-((x - mu) ** 2) / (sigma ** 2)) / (\n",
    "        sigma * sp.sqrt(2 * sp.pi)\n",
    "    )\n",
    "    dyn_symbol = sp.Symbol(fR\"\\mathrm{{dyn}}_{i}\")\n",
    "    model.dynamics[dyn_symbol] = gauss\n",
    "\n",
    "coherent_sum = sum(model.dynamics)\n",
    "model.intensity = coherent_sum"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "{\\mu_1: 1.0,\n",
       " \\sigma_1: 0.5,\n",
       " \\mu_2: 2.0,\n",
       " \\sigma_2: 0.25,\n",
       " \\mu_3: 3.0,\n",
       " \\sigma_3: 0.16666666666666666}"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "model.initial_values"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\mathrm{dyn}_1 + \\mathrm{dyn}_2 + \\mathrm{dyn}_3$"
      ],
      "text/plain": [
       "\\mathrm{dyn}_1 + \\mathrm{dyn}_2 + \\mathrm{dyn}_3"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "model.intensity"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Dynamics are inserted into the intensity expression of the model:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\frac{\\sqrt{2} e^{- \\frac{\\left(- \\mu_{3} + x\\right)^{2}}{\\sigma_{3}^{2}}}}{2 \\sqrt{\\pi} \\sigma_{3}} + \\frac{\\sqrt{2} e^{- \\frac{\\left(- \\mu_{2} + x\\right)^{2}}{\\sigma_{2}^{2}}}}{2 \\sqrt{\\pi} \\sigma_{2}} + \\frac{\\sqrt{2} e^{- \\frac{\\left(- \\mu_{1} + x\\right)^{2}}{\\sigma_{1}^{2}}}}{2 \\sqrt{\\pi} \\sigma_{1}}$"
      ],
      "text/plain": [
       "sqrt(2)*exp(-(-\\mu_3 + x)**2/\\sigma_3**2)/(2*sqrt(pi)*\\sigma_3) + sqrt(2)*exp(-(-\\mu_2 + x)**2/\\sigma_2**2)/(2*sqrt(pi)*\\sigma_2) + sqrt(2)*exp(-(-\\mu_1 + x)**2/\\sigma_1**2)/(2*sqrt(pi)*\\sigma_1)"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "model.intensity.subs(model.dynamics)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "And, for evaluating, the 'suggested' initial parameter values are inserted:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\frac{1.0 \\sqrt{2} e^{- 4.0 \\left(x - 1.0\\right)^{2}}}{\\sqrt{\\pi}} + \\frac{2.0 \\sqrt{2} e^{- 64.0 \\left(0.5 x - 1\\right)^{2}}}{\\sqrt{\\pi}} + \\frac{3.0 \\sqrt{2} e^{- 324.0 \\left(0.333333333333333 x - 1\\right)^{2}}}{\\sqrt{\\pi}}$"
      ],
      "text/plain": [
       "1.0*sqrt(2)*exp(-4.0*(x - 1.0)**2)/sqrt(pi) + 2.0*sqrt(2)*exp(-64.0*(0.5*x - 1)**2)/sqrt(pi) + 3.0*sqrt(2)*exp(-324.0*(0.333333333333333*x - 1)**2)/sqrt(pi)"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "model.intensity.subs(model.dynamics).subs(model.initial_values)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Here's a small helper function to plot this model:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "hide-input",
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "def plot_model(model: AmplitudeModel) -> None:\n",
    "    total_plot = sp.plotting.plot(\n",
    "        model.intensity.subs(model.dynamics).subs(model.initial_values),\n",
    "        (x, 0, 4),\n",
    "        show=False,\n",
    "        line_color=\"black\",\n",
    "    )\n",
    "    p1 = sp.plotting.plot(\n",
    "        model.dynamics[sp.Symbol(R\"\\mathrm{dyn}_1\")].subs(\n",
    "            model.initial_values\n",
    "        ),\n",
    "        (x, 0, 4),\n",
    "        line_color=\"red\",\n",
    "        show=False,\n",
    "    )\n",
    "    p2 = sp.plotting.plot(\n",
    "        model.dynamics[sp.Symbol(R\"\\mathrm{dyn}_2\")].subs(\n",
    "            model.initial_values\n",
    "        ),\n",
    "        (x, 0, 4),\n",
    "        line_color=\"blue\",\n",
    "        show=False,\n",
    "    )\n",
    "    p3 = sp.plotting.plot(\n",
    "        model.dynamics[sp.Symbol(R\"\\mathrm{dyn}_3\")].subs(\n",
    "            model.initial_values\n",
    "        ),\n",
    "        (x, 0, 4),\n",
    "        line_color=\"green\",\n",
    "        show=False,\n",
    "    )\n",
    "    total_plot.extend(p1)\n",
    "    total_plot.extend(p2)\n",
    "    total_plot.extend(p3)\n",
    "    total_plot.show()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"284.744463pt\" version=\"1.1\" viewBox=\"0 0 424.417071 284.744463\" width=\"424.417071pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:26.470246</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 284.744463 \n",
       "L 424.417071 284.744463 \n",
       "L 424.417071 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 26.139514 258.205695 \n",
       "L 414.257696 258.205695 \n",
       "L 414.257696 15.821094 \n",
       "L 26.139514 15.821094 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m79a0c0aad9\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(35.829687 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"87.885589\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(79.934026 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"131.989928\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(124.038365 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"176.094267\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(168.142704 261.786651)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"220.198605\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(212.247043 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"264.302944\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(256.351382 261.786651)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"308.407283\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(300.455721 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"352.511622\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 3.5 -->\n",
       "      <g transform=\"translate(344.560059 261.786651)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"396.615961\" xlink:href=\"#m79a0c0aad9\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 4.0 -->\n",
       "      <g transform=\"translate(388.664398 261.786651)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- x -->\n",
       "     <g transform=\"translate(411.298321 275.464776)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 54.890625 54.6875 \n",
       "L 35.109375 28.078125 \n",
       "L 55.90625 0 \n",
       "L 45.3125 0 \n",
       "L 29.390625 21.484375 \n",
       "L 13.484375 0 \n",
       "L 2.875 0 \n",
       "L 24.125 28.609375 \n",
       "L 4.6875 54.6875 \n",
       "L 15.28125 54.6875 \n",
       "L 29.78125 35.203125 \n",
       "L 44.28125 54.6875 \n",
       "z\n",
       "\" id=\"DejaVuSans-120\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-120\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"m86f10c7ade\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"247.188213\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(20.878125 250.987432)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"201.160243\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(20.878125 204.959461)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"155.132272\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(20.878125 158.931491)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"109.104302\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(20.878125 112.90352)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"63.076331\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_15\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(20.878125 66.87555)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m86f10c7ade\" y=\"17.048361\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_16\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(20.878125 20.847579)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_17\">\n",
       "     <!-- f(x) -->\n",
       "     <g transform=\"translate(14.798437 24.442187)rotate(-90)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 37.109375 75.984375 \n",
       "L 37.109375 68.5 \n",
       "L 28.515625 68.5 \n",
       "Q 23.6875 68.5 21.796875 66.546875 \n",
       "Q 19.921875 64.59375 19.921875 59.515625 \n",
       "L 19.921875 54.6875 \n",
       "L 34.71875 54.6875 \n",
       "L 34.71875 47.703125 \n",
       "L 19.921875 47.703125 \n",
       "L 19.921875 0 \n",
       "L 10.890625 0 \n",
       "L 10.890625 47.703125 \n",
       "L 2.296875 47.703125 \n",
       "L 2.296875 54.6875 \n",
       "L 10.890625 54.6875 \n",
       "L 10.890625 58.5 \n",
       "Q 10.890625 67.625 15.140625 71.796875 \n",
       "Q 19.390625 75.984375 28.609375 75.984375 \n",
       "z\n",
       "\" id=\"DejaVuSans-102\"/>\n",
       "       <path d=\"M 31 75.875 \n",
       "Q 24.46875 64.65625 21.28125 53.65625 \n",
       "Q 18.109375 42.671875 18.109375 31.390625 \n",
       "Q 18.109375 20.125 21.3125 9.0625 \n",
       "Q 24.515625 -2 31 -13.1875 \n",
       "L 23.1875 -13.1875 \n",
       "Q 15.875 -1.703125 12.234375 9.375 \n",
       "Q 8.59375 20.453125 8.59375 31.390625 \n",
       "Q 8.59375 42.28125 12.203125 53.3125 \n",
       "Q 15.828125 64.359375 23.1875 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-40\"/>\n",
       "       <path d=\"M 8.015625 75.875 \n",
       "L 15.828125 75.875 \n",
       "Q 23.140625 64.359375 26.78125 53.3125 \n",
       "Q 30.421875 42.28125 30.421875 31.390625 \n",
       "Q 30.421875 20.453125 26.78125 9.375 \n",
       "Q 23.140625 -1.703125 15.828125 -13.1875 \n",
       "L 8.015625 -13.1875 \n",
       "Q 14.5 -2 17.703125 9.0625 \n",
       "Q 20.90625 20.125 20.90625 31.390625 \n",
       "Q 20.90625 42.671875 17.703125 53.65625 \n",
       "Q 14.5 64.65625 8.015625 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-41\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-102\"/>\n",
       "      <use x=\"35.205078\" xlink:href=\"#DejaVuSans-40\"/>\n",
       "      <use x=\"74.21875\" xlink:href=\"#DejaVuSans-120\"/>\n",
       "      <use x=\"133.398438\" xlink:href=\"#DejaVuSans-41\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_1\">\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 43.78125 245.842929 \n",
       "L 48.56682 245.136132 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 48.56682 245.136132 \n",
       "L 54.057769 243.95223 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 54.057769 243.95223 \n",
       "L 56.87071 243.150574 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 56.87071 243.150574 \n",
       "L 59.862766 242.124239 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 59.862766 242.124239 \n",
       "L 62.804111 240.917862 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 62.804111 240.917862 \n",
       "L 66.185484 239.259514 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 66.185484 239.259514 \n",
       "L 68.428126 237.984221 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 68.428126 237.984221 \n",
       "L 71.088613 236.276154 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 71.088613 236.276154 \n",
       "L 73.496419 234.5382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 73.496419 234.5382 \n",
       "L 75.835372 232.668399 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 75.835372 232.668399 \n",
       "L 78.262887 230.53436 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 78.262887 230.53436 \n",
       "L 81.110594 227.778329 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 81.110594 227.778329 \n",
       "L 85.448174 223.068694 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 85.448174 223.068694 \n",
       "L 90.684981 216.633454 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 90.684981 216.633454 \n",
       "L 96.655748 208.52981 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 96.655748 208.52981 \n",
       "L 103.168001 199.267372 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 103.168001 199.267372 \n",
       "L 109.863391 190.081819 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 109.863391 190.081819 \n",
       "L 112.605389 186.640526 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 112.605389 186.640526 \n",
       "L 115.585744 183.227729 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 115.585744 183.227729 \n",
       "L 118.488079 180.309086 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 118.488079 180.309086 \n",
       "L 119.805801 179.135184 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 119.805801 179.135184 \n",
       "L 121.124478 178.063458 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 121.124478 178.063458 \n",
       "L 122.390095 177.136872 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 122.390095 177.136872 \n",
       "L 123.88795 176.175471 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 123.88795 176.175471 \n",
       "L 125.436764 175.341982 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 125.436764 175.341982 \n",
       "L 126.743918 174.770052 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 126.743918 174.770052 \n",
       "L 127.61559 174.45718 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 127.61559 174.45718 \n",
       "L 128.381957 174.22809 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 128.381957 174.22809 \n",
       "L 129.104049 174.051996 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 129.104049 174.051996 \n",
       "L 129.910283 173.901318 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 129.910283 173.901318 \n",
       "L 130.589246 173.812233 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 130.589246 173.812233 \n",
       "L 131.387077 173.751907 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 131.387077 173.751907 \n",
       "L 132.223463 173.74024 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 132.223463 173.74024 \n",
       "L 133.126824 173.786964 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 133.126824 173.786964 \n",
       "L 134.05062 173.898335 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 134.05062 173.898335 \n",
       "L 134.865061 174.049628 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 134.865061 174.049628 \n",
       "L 135.773482 174.276693 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 135.773482 174.276693 \n",
       "L 136.594608 174.534391 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 136.594608 174.534391 \n",
       "L 137.584374 174.910423 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 137.584374 174.910423 \n",
       "L 138.485361 175.313995 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 138.485361 175.313995 \n",
       "L 140.138225 176.202668 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 140.138225 176.202668 \n",
       "L 142.064077 177.471607 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 142.064077 177.471607 \n",
       "L 144.358891 179.2927 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 144.358891 179.2927 \n",
       "L 146.385038 181.15839 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 146.385038 181.15839 \n",
       "L 148.235915 183.054181 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 148.235915 183.054181 \n",
       "L 152.539636 188.059688 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 152.539636 188.059688 \n",
       "L 157.530406 194.619213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 157.530406 194.619213 \n",
       "L 161.985928 200.800515 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 161.985928 200.800515 \n",
       "L 166.555964 207.052298 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 166.555964 207.052298 \n",
       "L 169.448788 210.748473 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 169.448788 210.748473 \n",
       "L 172.402348 214.126881 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 172.402348 214.126881 \n",
       "L 173.780351 215.511628 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 173.780351 215.511628 \n",
       "L 175.374413 216.919593 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 175.374413 216.919593 \n",
       "L 176.014917 217.418062 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 176.014917 217.418062 \n",
       "L 176.769181 217.949938 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 176.769181 217.949938 \n",
       "L 177.544512 218.429576 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 177.544512 218.429576 \n",
       "L 178.363695 218.856279 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 178.363695 218.856279 \n",
       "L 179.059218 219.148932 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 179.059218 219.148932 \n",
       "L 179.490136 219.296111 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 179.490136 219.296111 \n",
       "L 179.871524 219.403543 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 179.871524 219.403543 \n",
       "L 180.221157 219.482519 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 180.221157 219.482519 \n",
       "L 180.598434 219.546102 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 180.598434 219.546102 \n",
       "L 180.881115 219.578583 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 180.881115 219.578583 \n",
       "L 181.197898 219.599111 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.197898 219.599111 \n",
       "L 181.514916 219.602424 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.514916 219.602424 \n",
       "L 181.775757 219.591899 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.775757 219.591899 \n",
       "L 182.042446 219.568482 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 182.042446 219.568482 \n",
       "L 182.311855 219.531553 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 182.311855 219.531553 \n",
       "L 182.663368 219.462839 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 182.663368 219.462839 \n",
       "L 182.980333 219.380458 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 182.980333 219.380458 \n",
       "L 183.338491 219.263457 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 183.338491 219.263457 \n",
       "L 183.657413 219.137388 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 183.657413 219.137388 \n",
       "L 183.9552 219.00062 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 183.9552 219.00062 \n",
       "L 184.241276 218.851529 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 184.241276 218.851529 \n",
       "L 184.613867 218.630766 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 184.613867 218.630766 \n",
       "L 184.944543 218.409086 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 184.944543 218.409086 \n",
       "L 185.463998 218.010645 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 185.463998 218.010645 \n",
       "L 186.003473 217.530003 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 186.003473 217.530003 \n",
       "L 186.550593 216.97075 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 186.550593 216.97075 \n",
       "L 187.101175 216.332715 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 187.101175 216.332715 \n",
       "L 187.720985 215.521408 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 187.720985 215.521408 \n",
       "L 188.264152 214.72714 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 188.264152 214.72714 \n",
       "L 189.480552 212.656393 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 189.480552 212.656393 \n",
       "L 190.66119 210.246381 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 190.66119 210.246381 \n",
       "L 191.842176 207.4279 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 191.842176 207.4279 \n",
       "L 193.021541 204.197768 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 193.021541 204.197768 \n",
       "L 195.36678 196.535141 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 195.36678 196.535141 \n",
       "L 197.919755 186.390323 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 197.919755 186.390323 \n",
       "L 202.225973 165.767808 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 202.225973 165.767808 \n",
       "L 206.554819 142.795831 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 206.554819 142.795831 \n",
       "L 212.434877 114.775622 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 212.434877 114.775622 \n",
       "L 214.82468 106.600029 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 214.82468 106.600029 \n",
       "L 215.601027 104.517426 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 215.601027 104.517426 \n",
       "L 216.335464 102.832737 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 216.335464 102.832737 \n",
       "L 216.912644 101.711627 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 216.912644 101.711627 \n",
       "L 217.275974 101.100024 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.275974 101.100024 \n",
       "L 217.612861 100.599086 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.612861 100.599086 \n",
       "L 217.829277 100.31125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.829277 100.31125 \n",
       "L 218.034975 100.062505 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.034975 100.062505 \n",
       "L 218.267165 99.810999 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.267165 99.810999 \n",
       "L 218.467338 99.619238 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.467338 99.619238 \n",
       "L 218.690936 99.432625 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.690936 99.432625 \n",
       "L 218.879532 99.297958 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.879532 99.297958 \n",
       "L 219.049666 99.19439 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.049666 99.19439 \n",
       "L 219.2198 99.107865 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.2198 99.107865 \n",
       "L 219.318879 99.065346 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.318879 99.065346 \n",
       "L 219.401503 99.034324 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.401503 99.034324 \n",
       "L 219.565177 98.984801 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.565177 98.984801 \n",
       "L 219.728418 98.95122 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.728418 98.95122 \n",
       "L 219.87456 98.934569 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.87456 98.934569 \n",
       "L 219.967564 98.930576 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.967564 98.930576 \n",
       "L 220.045091 98.931175 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.045091 98.931175 \n",
       "L 220.185102 98.941308 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.185102 98.941308 \n",
       "L 220.287144 98.956034 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.287144 98.956034 \n",
       "L 220.371064 98.972783 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.371064 98.972783 \n",
       "L 220.535964 99.017891 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.535964 99.017891 \n",
       "L 220.617353 99.04611 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.617353 99.04611 \n",
       "L 220.715194 99.085244 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.715194 99.085244 \n",
       "L 220.891899 99.170321 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.891899 99.170321 \n",
       "L 221.073769 99.277223 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.073769 99.277223 \n",
       "L 221.244706 99.395556 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.244706 99.395556 \n",
       "L 221.430632 99.543871 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.430632 99.543871 \n",
       "L 221.588963 99.686242 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.588963 99.686242 \n",
       "L 221.75741 99.853896 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.75741 99.853896 \n",
       "L 221.946209 100.061578 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.946209 100.061578 \n",
       "L 222.343321 100.566265 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.343321 100.566265 \n",
       "L 222.675452 101.058485 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.675452 101.058485 \n",
       "L 222.971511 101.550573 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.971511 101.550573 \n",
       "L 223.327427 102.207981 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 223.327427 102.207981 \n",
       "L 224.03962 103.735547 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 224.03962 103.735547 \n",
       "L 224.883637 105.901525 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 224.883637 105.901525 \n",
       "L 226.678201 111.707397 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 226.678201 111.707397 \n",
       "L 229.674343 124.510963 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 229.674343 124.510963 \n",
       "L 235.504262 156.148178 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 235.504262 156.148178 \n",
       "L 241.931346 191.422875 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 241.931346 191.422875 \n",
       "L 247.599668 215.743456 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 247.599668 215.743456 \n",
       "L 250.974373 226.188605 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 250.974373 226.188605 \n",
       "L 252.57129 230.120884 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 252.57129 230.120884 \n",
       "L 254.502784 234.090834 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 254.502784 234.090834 \n",
       "L 255.757791 236.250714 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 255.757791 236.250714 \n",
       "L 257.116199 238.253978 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 257.116199 238.253978 \n",
       "L 258.471954 239.941659 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 258.471954 239.941659 \n",
       "L 259.175373 240.70639 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 259.175373 240.70639 \n",
       "L 260.018866 241.532249 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 260.018866 241.532249 \n",
       "L 260.665643 242.102874 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 260.665643 242.102874 \n",
       "L 261.420712 242.705341 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 261.420712 242.705341 \n",
       "L 262.620317 243.533668 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 262.620317 243.533668 \n",
       "L 263.757359 244.18808 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 263.757359 244.18808 \n",
       "L 264.948207 244.753256 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 264.948207 244.753256 \n",
       "L 266.2008 245.230324 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 266.2008 245.230324 \n",
       "L 267.259397 245.549141 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 267.259397 245.549141 \n",
       "L 268.289982 245.790926 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 268.289982 245.790926 \n",
       "L 269.537563 245.996922 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 269.537563 245.996922 \n",
       "L 270.545176 246.093892 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 270.545176 246.093892 \n",
       "L 271.728753 246.124006 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 271.728753 246.124006 \n",
       "L 272.908906 246.053327 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 272.908906 246.053327 \n",
       "L 273.514931 245.97238 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 273.514931 245.97238 \n",
       "L 274.040067 245.874519 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 274.040067 245.874519 \n",
       "L 274.686298 245.714856 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 274.686298 245.714856 \n",
       "L 275.423119 245.473299 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 275.423119 245.473299 \n",
       "L 276.034729 245.218032 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 276.034729 245.218032 \n",
       "L 276.747461 244.848822 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 276.747461 244.848822 \n",
       "L 277.155839 244.59828 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 277.155839 244.59828 \n",
       "L 277.576822 244.307115 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 277.576822 244.307115 \n",
       "L 277.963398 244.007913 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 277.963398 244.007913 \n",
       "L 278.29138 243.728351 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.29138 243.728351 \n",
       "L 278.677892 243.366399 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.677892 243.366399 \n",
       "L 278.997271 243.038998 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.997271 243.038998 \n",
       "L 279.614302 242.327695 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 279.614302 242.327695 \n",
       "L 280.343464 241.339078 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 280.343464 241.339078 \n",
       "L 281.161955 240.012568 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 281.161955 240.012568 \n",
       "L 281.874165 238.646792 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 281.874165 238.646792 \n",
       "L 282.548221 237.150608 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 282.548221 237.150608 \n",
       "L 283.424033 234.87579 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 283.424033 234.87579 \n",
       "L 284.294247 232.201581 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 284.294247 232.201581 \n",
       "L 285.727297 226.771525 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 285.727297 226.771525 \n",
       "L 288.000261 215.090857 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 288.000261 215.090857 \n",
       "L 290.581939 196.524994 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 290.581939 196.524994 \n",
       "L 296.134454 137.42456 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 296.134454 137.42456 \n",
       "L 302.600444 58.667924 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 302.600444 58.667924 \n",
       "L 304.471303 42.079564 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 304.471303 42.079564 \n",
       "L 306.042133 32.468039 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 306.042133 32.468039 \n",
       "L 306.477607 30.601922 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 306.477607 30.601922 \n",
       "L 306.988676 28.880327 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 306.988676 28.880327 \n",
       "L 307.181131 28.365604 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.181131 28.365604 \n",
       "L 307.388254 27.894281 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.388254 27.894281 \n",
       "L 307.503935 27.668531 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.503935 27.668531 \n",
       "L 307.604819 27.493677 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.604819 27.493677 \n",
       "L 307.741211 27.289985 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.741211 27.289985 \n",
       "L 307.800234 27.21352 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.800234 27.21352 \n",
       "L 307.861846 27.14124 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.861846 27.14124 \n",
       "L 307.913298 27.086785 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.913298 27.086785 \n",
       "L 307.961965 27.040227 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.961965 27.040227 \n",
       "L 308.006051 27.00221 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.006051 27.00221 \n",
       "L 308.053357 26.965814 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.053357 26.965814 \n",
       "L 308.093719 26.938362 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.093719 26.938362 \n",
       "L 308.137831 26.912153 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.137831 26.912153 \n",
       "L 308.172177 26.894491 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.172177 26.894491 \n",
       "L 308.213649 26.876367 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.213649 26.876367 \n",
       "L 308.253376 26.862293 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.253376 26.862293 \n",
       "L 308.288834 26.852449 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.288834 26.852449 \n",
       "L 308.332408 26.843861 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.332408 26.843861 \n",
       "L 308.379127 26.838954 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.379127 26.838954 \n",
       "L 308.436045 26.83899 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.436045 26.83899 \n",
       "L 308.48708 26.844638 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.48708 26.844638 \n",
       "L 308.532256 26.854069 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.532256 26.854069 \n",
       "L 308.575531 26.867005 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.575531 26.867005 \n",
       "L 308.623144 26.885648 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.623144 26.885648 \n",
       "L 308.665356 26.906039 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.665356 26.906039 \n",
       "L 308.716557 26.935644 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.716557 26.935644 \n",
       "L 308.765692 26.969074 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.765692 26.969074 \n",
       "L 308.806806 27.000822 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.806806 27.000822 \n",
       "L 308.856056 27.043381 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.856056 27.043381 \n",
       "L 308.898265 27.08378 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.898265 27.08378 \n",
       "L 308.948059 27.136094 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.948059 27.136094 \n",
       "L 309.043889 27.250939 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.043889 27.250939 \n",
       "L 309.154324 27.406377 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.154324 27.406377 \n",
       "L 309.270522 27.596567 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.270522 27.596567 \n",
       "L 309.366807 27.774807 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.366807 27.774807 \n",
       "L 309.582687 28.242196 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.582687 28.242196 \n",
       "L 309.765229 28.710157 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.765229 28.710157 \n",
       "L 310.159751 29.947088 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 310.159751 29.947088 \n",
       "L 311.036621 33.774949 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 311.036621 33.774949 \n",
       "L 312.553576 43.686418 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 312.553576 43.686418 \n",
       "L 315.427362 71.764873 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 315.427362 71.764873 \n",
       "L 322.439957 158.588514 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 322.439957 158.588514 \n",
       "L 328.542718 213.425703 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 328.542718 213.425703 \n",
       "L 331.084774 226.782719 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 331.084774 226.782719 \n",
       "L 332.613623 232.542266 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 332.613623 232.542266 \n",
       "L 333.866554 236.206302 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 333.866554 236.206302 \n",
       "L 334.676905 238.142408 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 334.676905 238.142408 \n",
       "L 335.490961 239.789191 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 335.490961 239.789191 \n",
       "L 336.266746 241.113498 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 336.266746 241.113498 \n",
       "L 336.976684 242.141278 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 336.976684 242.141278 \n",
       "L 337.692839 243.021702 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 337.692839 243.021702 \n",
       "L 338.135431 243.495979 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.135431 243.495979 \n",
       "L 338.502958 243.853111 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.502958 243.853111 \n",
       "L 338.932183 244.231392 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.932183 244.231392 \n",
       "L 339.32871 244.54662 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 339.32871 244.54662 \n",
       "L 340.014351 245.02191 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.014351 245.02191 \n",
       "L 340.781855 245.462193 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.781855 245.462193 \n",
       "L 341.568122 245.828318 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 341.568122 245.828318 \n",
       "L 342.267484 246.093447 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 342.267484 246.093447 \n",
       "L 342.88113 246.286514 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 342.88113 246.286514 \n",
       "L 344.129305 246.587032 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 344.129305 246.587032 \n",
       "L 345.343136 246.788463 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 345.343136 246.788463 \n",
       "L 347.123091 246.97382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 347.123091 246.97382 \n",
       "L 349.261399 247.090641 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 349.261399 247.090641 \n",
       "L 353.199537 247.167721 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 353.199537 247.167721 \n",
       "L 360.210974 247.18732 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 360.210974 247.18732 \n",
       "L 366.938333 247.188184 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 366.938333 247.188184 \n",
       "L 372.685542 247.188212 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 372.685542 247.188212 \n",
       "L 379.559847 247.188213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 379.559847 247.188213 \n",
       "L 385.465978 247.188213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 385.465978 247.188213 \n",
       "L 390.569789 247.188213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 390.569789 247.188213 \n",
       "L 396.615961 247.188213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_2\">\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 43.78125 245.842929 \n",
       "L 50.793207 244.71066 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 50.793207 244.71066 \n",
       "L 54.254471 243.900888 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 54.254471 243.900888 \n",
       "L 58.34132 242.66993 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 58.34132 242.66993 \n",
       "L 62.045281 241.249118 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 62.045281 241.249118 \n",
       "L 65.945659 239.387359 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 65.945659 239.387359 \n",
       "L 68.14883 238.151058 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 68.14883 238.151058 \n",
       "L 70.325078 236.788707 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 70.325078 236.788707 \n",
       "L 74.050705 234.111462 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 74.050705 234.111462 \n",
       "L 77.421018 231.296914 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 77.421018 231.296914 \n",
       "L 80.697155 228.195292 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 80.697155 228.195292 \n",
       "L 86.380157 221.979917 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 86.380157 221.979917 \n",
       "L 92.413522 214.35655 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 92.413522 214.35655 \n",
       "L 98.998891 205.213496 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 98.998891 205.213496 \n",
       "L 104.71251 197.084549 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 104.71251 197.084549 \n",
       "L 110.775545 188.90933 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 110.775545 188.90933 \n",
       "L 114.430614 184.504815 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 114.430614 184.504815 \n",
       "L 117.443046 181.309324 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 117.443046 181.309324 \n",
       "L 119.350528 179.529423 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 119.350528 179.529423 \n",
       "L 121.224656 177.986411 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 121.224656 177.986411 \n",
       "L 122.75711 176.887516 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 122.75711 176.887516 \n",
       "L 124.431889 175.863822 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 124.431889 175.863822 \n",
       "L 125.928468 175.112521 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 125.928468 175.112521 \n",
       "L 127.292748 174.566604 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 127.292748 174.566604 \n",
       "L 128.526377 174.189778 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 128.526377 174.189778 \n",
       "L 129.211747 174.029062 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 129.211747 174.029062 \n",
       "L 129.90808 173.901671 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 129.90808 173.901671 \n",
       "L 130.654719 173.805486 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 130.654719 173.805486 \n",
       "L 131.26661 173.757952 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 131.26661 173.757952 \n",
       "L 131.994947 173.7382 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 131.994947 173.7382 \n",
       "L 132.6769 173.756017 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 132.6769 173.756017 \n",
       "L 133.467868 173.820632 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 133.467868 173.820632 \n",
       "L 134.328791 173.944465 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 134.328791 173.944465 \n",
       "L 134.987815 174.076776 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 134.987815 174.076776 \n",
       "L 135.743449 174.268271 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 135.743449 174.268271 \n",
       "L 136.482931 174.496516 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 136.482931 174.496516 \n",
       "L 137.172481 174.745413 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 137.172481 174.745413 \n",
       "L 138.416137 175.281097 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 138.416137 175.281097 \n",
       "L 139.864935 176.042964 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 139.864935 176.042964 \n",
       "L 141.17927 176.858565 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 141.17927 176.858565 \n",
       "L 142.593936 177.863706 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 142.593936 177.863706 \n",
       "L 144.028089 179.011378 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 144.028089 179.011378 \n",
       "L 146.464161 181.23788 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 146.464161 181.23788 \n",
       "L 149.186647 184.097389 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 149.186647 184.097389 \n",
       "L 152.117253 187.547207 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 152.117253 187.547207 \n",
       "L 156.974351 193.900785 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 156.974351 193.900785 \n",
       "L 162.024165 200.993316 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 162.024165 200.993316 \n",
       "L 166.852405 207.866116 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 166.852405 207.866116 \n",
       "L 172.274056 215.296773 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 172.274056 215.296773 \n",
       "L 177.880683 222.31091 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 177.880683 222.31091 \n",
       "L 181.071579 225.899798 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.071579 225.899798 \n",
       "L 184.413613 229.30671 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 184.413613 229.30671 \n",
       "L 187.56912 232.180509 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 187.56912 232.180509 \n",
       "L 191.025297 234.945646 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 191.025297 234.945646 \n",
       "L 194.084454 237.069151 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 194.084454 237.069151 \n",
       "L 196.84607 238.738036 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 196.84607 238.738036 \n",
       "L 199.623201 240.194346 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 199.623201 240.194346 \n",
       "L 202.429508 241.457514 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 202.429508 241.457514 \n",
       "L 204.929618 242.421983 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 204.929618 242.421983 \n",
       "L 207.394165 243.238651 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 207.394165 243.238651 \n",
       "L 212.148975 244.487955 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 212.148975 244.487955 \n",
       "L 217.131917 245.420122 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.131917 245.420122 \n",
       "L 221.708573 246.016475 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.708573 246.016475 \n",
       "L 227.119036 246.4875 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 227.119036 246.4875 \n",
       "L 232.816976 246.793525 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 232.816976 246.793525 \n",
       "L 237.564273 246.949714 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 237.564273 246.949714 \n",
       "L 241.568994 247.035064 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 241.568994 247.035064 \n",
       "L 246.037612 247.09659 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 246.037612 247.09659 \n",
       "L 251.117875 247.138379 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 251.117875 247.138379 \n",
       "L 257.251922 247.165155 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 257.251922 247.165155 \n",
       "L 262.587223 247.176783 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 262.587223 247.176783 \n",
       "L 267.44935 247.182335 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 267.44935 247.182335 \n",
       "L 272.914421 247.185509 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 272.914421 247.185509 \n",
       "L 278.682269 247.187061 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.682269 247.187061 \n",
       "L 285.64709 247.18782 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 285.64709 247.18782 \n",
       "L 291.090071 247.188049 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 291.090071 247.188049 \n",
       "L 297.716895 247.188159 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 297.716895 247.188159 \n",
       "L 302.824651 247.188191 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 302.824651 247.188191 \n",
       "L 308.906752 247.188205 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.906752 247.188205 \n",
       "L 314.111112 247.18821 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 314.111112 247.18821 \n",
       "L 319.300438 247.188212 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 319.300438 247.188212 \n",
       "L 324.41166 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 324.41166 247.188213 \n",
       "L 329.47451 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 329.47451 247.188213 \n",
       "L 334.030168 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 334.030168 247.188213 \n",
       "L 338.514235 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.514235 247.188213 \n",
       "L 343.346983 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 343.346983 247.188213 \n",
       "L 347.591162 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 347.591162 247.188213 \n",
       "L 351.72037 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 351.72037 247.188213 \n",
       "L 355.484928 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 355.484928 247.188213 \n",
       "L 360.996137 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 360.996137 247.188213 \n",
       "L 367.119092 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 367.119092 247.188213 \n",
       "L 372.33322 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 372.33322 247.188213 \n",
       "L 377.47692 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 377.47692 247.188213 \n",
       "L 381.995516 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 381.995516 247.188213 \n",
       "L 387.07886 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 387.07886 247.188213 \n",
       "L 392.197906 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 392.197906 247.188213 \n",
       "L 396.615961 247.188213 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_3\">\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 43.78125 247.188213 \n",
       "L 48.231765 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 48.231765 247.188213 \n",
       "L 53.279746 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 53.279746 247.188213 \n",
       "L 58.729757 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 58.729757 247.188213 \n",
       "L 63.262488 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 63.262488 247.188213 \n",
       "L 67.047929 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 67.047929 247.188213 \n",
       "L 71.233892 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 71.233892 247.188213 \n",
       "L 75.855119 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 75.855119 247.188213 \n",
       "L 79.875836 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 79.875836 247.188213 \n",
       "L 84.532466 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 84.532466 247.188213 \n",
       "L 89.190978 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 89.190978 247.188213 \n",
       "L 94.878117 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 94.878117 247.188213 \n",
       "L 99.865337 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 99.865337 247.188213 \n",
       "L 106.300205 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 106.300205 247.188213 \n",
       "L 112.308354 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 112.308354 247.188213 \n",
       "L 118.016817 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 118.016817 247.188213 \n",
       "L 122.879715 247.188212 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 122.879715 247.188212 \n",
       "L 127.825885 247.188209 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 127.825885 247.188209 \n",
       "L 133.449981 247.188185 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 133.449981 247.188185 \n",
       "L 137.70312 247.18809 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 137.70312 247.18809 \n",
       "L 142.125395 247.187684 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 142.125395 247.187684 \n",
       "L 148.331416 247.184628 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 148.331416 247.184628 \n",
       "L 153.886499 247.170836 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 153.886499 247.170836 \n",
       "L 159.636877 247.110317 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 159.636877 247.110317 \n",
       "L 165.507684 246.875038 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 165.507684 246.875038 \n",
       "L 167.672578 246.683461 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 167.672578 246.683461 \n",
       "L 170.159039 246.335444 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 170.159039 246.335444 \n",
       "L 171.551475 246.056981 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 171.551475 246.056981 \n",
       "L 172.794955 245.742052 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 172.794955 245.742052 \n",
       "L 174.128814 245.319408 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 174.128814 245.319408 \n",
       "L 175.397814 244.819311 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 175.397814 244.819311 \n",
       "L 176.858128 244.101497 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 176.858128 244.101497 \n",
       "L 177.702197 243.605591 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 177.702197 243.605591 \n",
       "L 178.505986 243.070702 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 178.505986 243.070702 \n",
       "L 179.388034 242.406049 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 179.388034 242.406049 \n",
       "L 180.296559 241.627734 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 180.296559 241.627734 \n",
       "L 181.002889 240.950767 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.002889 240.950767 \n",
       "L 181.775301 240.132363 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.775301 240.132363 \n",
       "L 182.459327 239.334494 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 182.459327 239.334494 \n",
       "L 183.225339 238.353633 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 183.225339 238.353633 \n",
       "L 184.498962 236.501458 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 184.498962 236.501458 \n",
       "L 185.805052 234.28779 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 185.805052 234.28779 \n",
       "L 187.352679 231.20966 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 187.352679 231.20966 \n",
       "L 188.775585 227.903783 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 188.775585 227.903783 \n",
       "L 190.163549 224.206288 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 190.163549 224.206288 \n",
       "L 192.772598 215.90775 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 192.772598 215.90775 \n",
       "L 198.67373 190.531926 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 198.67373 190.531926 \n",
       "L 204.700189 157.547037 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 204.700189 157.547037 \n",
       "L 211.489447 121.503165 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 211.489447 121.503165 \n",
       "L 214.274165 110.517237 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 214.274165 110.517237 \n",
       "L 215.832092 105.936291 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 215.832092 105.936291 \n",
       "L 216.554949 104.244395 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 216.554949 104.244395 \n",
       "L 217.21978 102.944338 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.21978 102.944338 \n",
       "L 217.582276 102.341478 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.582276 102.341478 \n",
       "L 217.979097 101.768776 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 217.979097 101.768776 \n",
       "L 218.326542 101.343049 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.326542 101.343049 \n",
       "L 218.525424 101.131434 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.525424 101.131434 \n",
       "L 218.692061 100.972207 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.692061 100.972207 \n",
       "L 218.937167 100.768074 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 218.937167 100.768074 \n",
       "L 219.052803 100.684237 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.052803 100.684237 \n",
       "L 219.178984 100.601898 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.178984 100.601898 \n",
       "L 219.315672 100.523488 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.315672 100.523488 \n",
       "L 219.441515 100.46123 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.441515 100.46123 \n",
       "L 219.547879 100.416043 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.547879 100.416043 \n",
       "L 219.671014 100.372245 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.671014 100.372245 \n",
       "L 219.773439 100.34278 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.773439 100.34278 \n",
       "L 219.885709 100.317757 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.885709 100.317757 \n",
       "L 219.995781 100.300611 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 219.995781 100.300611 \n",
       "L 220.099511 100.291151 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.099511 100.291151 \n",
       "L 220.193777 100.288192 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.193777 100.288192 \n",
       "L 220.278887 100.290132 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.278887 100.290132 \n",
       "L 220.377744 100.297879 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.377744 100.297879 \n",
       "L 220.475992 100.311426 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.475992 100.311426 \n",
       "L 220.570537 100.329966 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.570537 100.329966 \n",
       "L 220.684694 100.359543 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.684694 100.359543 \n",
       "L 220.792431 100.394668 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.792431 100.394668 \n",
       "L 220.887204 100.431351 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 220.887204 100.431351 \n",
       "L 221.069285 100.517007 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.069285 100.517007 \n",
       "L 221.26512 100.631383 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.26512 100.631383 \n",
       "L 221.401535 100.724654 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.401535 100.724654 \n",
       "L 221.567965 100.853535 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.567965 100.853535 \n",
       "L 221.72875 100.993753 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.72875 100.993753 \n",
       "L 221.913224 101.173591 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.913224 101.173591 \n",
       "L 222.10891 101.386421 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.10891 101.386421 \n",
       "L 222.286796 101.59952 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.286796 101.59952 \n",
       "L 222.657887 102.103859 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 222.657887 102.103859 \n",
       "L 223.00319 102.645126 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 223.00319 102.645126 \n",
       "L 223.334099 103.228193 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 223.334099 103.228193 \n",
       "L 224.077588 104.763809 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 224.077588 104.763809 \n",
       "L 224.782845 106.501218 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 224.782845 106.501218 \n",
       "L 226.157581 110.632528 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 226.157581 110.632528 \n",
       "L 229.20081 122.837463 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 229.20081 122.837463 \n",
       "L 235.279875 155.164527 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 235.279875 155.164527 \n",
       "L 241.415366 188.976665 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 241.415366 188.976665 \n",
       "L 246.672203 212.425148 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 246.672203 212.425148 \n",
       "L 249.688429 222.620164 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 249.688429 222.620164 \n",
       "L 251.154321 226.71248 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 251.154321 226.71248 \n",
       "L 252.431908 229.844463 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 252.431908 229.844463 \n",
       "L 253.605276 232.384881 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 253.605276 232.384881 \n",
       "L 255.003605 235.021391 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 255.003605 235.021391 \n",
       "L 256.379861 237.235782 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 256.379861 237.235782 \n",
       "L 257.676033 239.009882 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 257.676033 239.009882 \n",
       "L 258.996285 240.539597 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 258.996285 240.539597 \n",
       "L 260.240429 241.754048 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 260.240429 241.754048 \n",
       "L 261.486973 242.776648 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 261.486973 242.776648 \n",
       "L 262.620641 243.558759 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 262.620641 243.558759 \n",
       "L 263.404701 244.026785 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 263.404701 244.026785 \n",
       "L 264.089232 244.391561 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 264.089232 244.391561 \n",
       "L 265.335967 244.962272 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 265.335967 244.962272 \n",
       "L 266.81526 245.504386 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 266.81526 245.504386 \n",
       "L 268.471621 245.96941 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 268.471621 245.96941 \n",
       "L 270.826217 246.433181 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 270.826217 246.433181 \n",
       "L 273.114842 246.72441 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 273.114842 246.72441 \n",
       "L 278.540118 247.05416 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.540118 247.05416 \n",
       "L 283.948987 247.153737 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 283.948987 247.153737 \n",
       "L 288.882189 247.179217 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 288.882189 247.179217 \n",
       "L 292.95839 247.185464 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 292.95839 247.185464 \n",
       "L 297.688534 247.187576 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 297.688534 247.187576 \n",
       "L 303.417116 247.188117 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 303.417116 247.188117 \n",
       "L 308.377116 247.188196 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.377116 247.188196 \n",
       "L 314.458852 247.188211 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 314.458852 247.188211 \n",
       "L 320.648585 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 320.648585 247.188213 \n",
       "L 326.633877 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 326.633877 247.188213 \n",
       "L 333.334597 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 333.334597 247.188213 \n",
       "L 340.391165 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.391165 247.188213 \n",
       "L 346.285063 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 346.285063 247.188213 \n",
       "L 352.461558 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 352.461558 247.188213 \n",
       "L 359.430605 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 359.430605 247.188213 \n",
       "L 366.270535 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 366.270535 247.188213 \n",
       "L 372.091536 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 372.091536 247.188213 \n",
       "L 379.272338 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 379.272338 247.188213 \n",
       "L 385.420012 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 385.420012 247.188213 \n",
       "L 390.618273 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 390.618273 247.188213 \n",
       "L 396.615961 247.188213 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_4\">\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 43.78125 247.188213 \n",
       "L 49.166242 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 49.166242 247.188213 \n",
       "L 54.503202 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 54.503202 247.188213 \n",
       "L 60.658732 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 60.658732 247.188213 \n",
       "L 66.059392 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 66.059392 247.188213 \n",
       "L 71.329208 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 71.329208 247.188213 \n",
       "L 77.077548 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 77.077548 247.188213 \n",
       "L 83.724945 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 83.724945 247.188213 \n",
       "L 90.454866 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 90.454866 247.188213 \n",
       "L 95.405394 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 95.405394 247.188213 \n",
       "L 100.668504 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 100.668504 247.188213 \n",
       "L 105.609287 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 105.609287 247.188213 \n",
       "L 111.28581 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 111.28581 247.188213 \n",
       "L 117.124242 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 117.124242 247.188213 \n",
       "L 123.284543 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 123.284543 247.188213 \n",
       "L 128.861189 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 128.861189 247.188213 \n",
       "L 133.781523 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 133.781523 247.188213 \n",
       "L 139.040368 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 139.040368 247.188213 \n",
       "L 143.937516 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 143.937516 247.188213 \n",
       "L 148.3718 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 148.3718 247.188213 \n",
       "L 152.640909 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 152.640909 247.188213 \n",
       "L 157.991924 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 157.991924 247.188213 \n",
       "L 162.848148 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 162.848148 247.188213 \n",
       "L 166.878874 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 166.878874 247.188213 \n",
       "L 171.521869 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 171.521869 247.188213 \n",
       "L 176.599399 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 176.599399 247.188213 \n",
       "L 181.38735 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 181.38735 247.188213 \n",
       "L 186.670921 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 186.670921 247.188213 \n",
       "L 191.189532 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 191.189532 247.188213 \n",
       "L 195.697179 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 195.697179 247.188213 \n",
       "L 200.07749 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 200.07749 247.188213 \n",
       "L 204.603255 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 204.603255 247.188213 \n",
       "L 208.692238 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 208.692238 247.188213 \n",
       "L 214.950271 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 214.950271 247.188213 \n",
       "L 221.775995 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 221.775995 247.188213 \n",
       "L 227.451086 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 227.451086 247.188213 \n",
       "L 233.074997 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 233.074997 247.188213 \n",
       "L 239.983941 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 239.983941 247.188213 \n",
       "L 248.232539 247.188201 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 248.232539 247.188201 \n",
       "L 255.456148 247.187701 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 255.456148 247.187701 \n",
       "L 262.325732 247.176296 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 262.325732 247.176296 \n",
       "L 268.787829 247.033698 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 268.787829 247.033698 \n",
       "L 271.237596 246.819262 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 271.237596 246.819262 \n",
       "L 272.594224 246.604876 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 272.594224 246.604876 \n",
       "L 273.342962 246.442529 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 273.342962 246.442529 \n",
       "L 274.1059 246.235646 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 274.1059 246.235646 \n",
       "L 275.035597 245.91378 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 275.035597 245.91378 \n",
       "L 275.543432 245.699173 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 275.543432 245.699173 \n",
       "L 275.982599 245.487932 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 275.982599 245.487932 \n",
       "L 276.437629 245.241066 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 276.437629 245.241066 \n",
       "L 276.976022 244.907932 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 276.976022 244.907932 \n",
       "L 277.579087 244.475312 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 277.579087 244.475312 \n",
       "L 278.083007 244.059576 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.083007 244.059576 \n",
       "L 278.620765 243.554849 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 278.620765 243.554849 \n",
       "L 279.085278 243.062681 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 279.085278 243.062681 \n",
       "L 279.499227 242.575941 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 279.499227 242.575941 \n",
       "L 279.989543 241.935371 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 279.989543 241.935371 \n",
       "L 280.462885 241.245264 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 280.462885 241.245264 \n",
       "L 280.854046 240.617344 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 280.854046 240.617344 \n",
       "L 281.575355 239.309627 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 281.575355 239.309627 \n",
       "L 282.43631 237.465288 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 282.43631 237.465288 \n",
       "L 283.178312 235.596849 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 283.178312 235.596849 \n",
       "L 284.644654 231.026553 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 284.644654 231.026553 \n",
       "L 286.560654 222.973394 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 286.560654 222.973394 \n",
       "L 288.155102 214.154284 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 288.155102 214.154284 \n",
       "L 294.112225 161.58364 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 294.112225 161.58364 \n",
       "L 300.778829 78.851012 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 300.778829 78.851012 \n",
       "L 303.707715 48.242828 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 303.707715 48.242828 \n",
       "L 305.164394 37.303053 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 305.164394 37.303053 \n",
       "L 306.412554 30.857644 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 306.412554 30.857644 \n",
       "L 306.844959 29.312657 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 306.844959 29.312657 \n",
       "L 307.223187 28.262987 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.223187 28.262987 \n",
       "L 307.394357 27.881733 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.394357 27.881733 \n",
       "L 307.585677 27.525306 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.585677 27.525306 \n",
       "L 307.66401 27.400687 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.66401 27.400687 \n",
       "L 307.740604 27.290839 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.740604 27.290839 \n",
       "L 307.821637 27.187568 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.821637 27.187568 \n",
       "L 307.899796 27.100583 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.899796 27.100583 \n",
       "L 307.980152 27.024094 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 307.980152 27.024094 \n",
       "L 308.02766 26.985048 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.02766 26.985048 \n",
       "L 308.073555 26.951689 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.073555 26.951689 \n",
       "L 308.115723 26.92482 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.115723 26.92482 \n",
       "L 308.165228 26.897897 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.165228 26.897897 \n",
       "L 308.204159 26.880232 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.204159 26.880232 \n",
       "L 308.251586 26.862884 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.251586 26.862884 \n",
       "L 308.292348 26.851638 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.292348 26.851638 \n",
       "L 308.33817 26.843041 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.33817 26.843041 \n",
       "L 308.38736 26.838576 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.38736 26.838576 \n",
       "L 308.442763 26.839454 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.442763 26.839454 \n",
       "L 308.494528 26.845931 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.494528 26.845931 \n",
       "L 308.553166 26.859867 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.553166 26.859867 \n",
       "L 308.610455 26.880251 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.610455 26.880251 \n",
       "L 308.661896 26.904254 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.661896 26.904254 \n",
       "L 308.714396 26.934309 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.714396 26.934309 \n",
       "L 308.75897 26.964232 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.75897 26.964232 \n",
       "L 308.80779 27.001646 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.80779 27.001646 \n",
       "L 308.866086 27.052674 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.866086 27.052674 \n",
       "L 308.950483 27.13879 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 308.950483 27.13879 \n",
       "L 309.035627 27.240324 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.035627 27.240324 \n",
       "L 309.119629 27.354903 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.119629 27.354903 \n",
       "L 309.206899 27.48907 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.206899 27.48907 \n",
       "L 309.374257 27.789397 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.374257 27.789397 \n",
       "L 309.548279 28.161457 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.548279 28.161457 \n",
       "L 309.706682 28.55285 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 309.706682 28.55285 \n",
       "L 310.050004 29.572258 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 310.050004 29.572258 \n",
       "L 310.626099 31.800652 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 310.626099 31.800652 \n",
       "L 311.960193 39.339056 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 311.960193 39.339056 \n",
       "L 317.253515 93.77361 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 317.253515 93.77361 \n",
       "L 321.739431 150.371173 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 321.739431 150.371173 \n",
       "L 325.793919 192.777496 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 325.793919 192.777496 \n",
       "L 330.005123 221.73165 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 330.005123 221.73165 \n",
       "L 331.410791 228.141428 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 331.410791 228.141428 \n",
       "L 332.784232 233.093308 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 332.784232 233.093308 \n",
       "L 334.09333 236.7801 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 334.09333 236.7801 \n",
       "L 334.757175 238.317468 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 334.757175 238.317468 \n",
       "L 335.433963 239.682852 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 335.433963 239.682852 \n",
       "L 336.165295 240.952821 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 336.165295 240.952821 \n",
       "L 336.888635 242.022605 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 336.888635 242.022605 \n",
       "L 337.300176 242.5572 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 337.300176 242.5572 \n",
       "L 337.693888 243.022887 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 337.693888 243.022887 \n",
       "L 338.123149 243.483485 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.123149 243.483485 \n",
       "L 338.574924 243.919366 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.574924 243.919366 \n",
       "L 338.918823 244.220215 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 338.918823 244.220215 \n",
       "L 339.337447 244.553217 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 339.337447 244.553217 \n",
       "L 339.740224 244.841887 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 339.740224 244.841887 \n",
       "L 340.157339 245.110835 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.157339 245.110835 \n",
       "L 340.558068 245.342937 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.558068 245.342937 \n",
       "L 340.992528 245.568095 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 340.992528 245.568095 \n",
       "L 341.791409 245.918667 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 341.791409 245.918667 \n",
       "L 342.457166 246.156788 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 342.457166 246.156788 \n",
       "L 343.187394 246.370798 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 343.187394 246.370798 \n",
       "L 344.504421 246.657486 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 344.504421 246.657486 \n",
       "L 345.780523 246.844275 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 345.780523 246.844275 \n",
       "L 347.16332 246.976889 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 347.16332 246.976889 \n",
       "L 352.027581 247.155116 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 352.027581 247.155116 \n",
       "L 358.719072 247.186407 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 358.719072 247.186407 \n",
       "L 364.688394 247.188118 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 364.688394 247.188118 \n",
       "L 369.500619 247.188206 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 369.500619 247.188206 \n",
       "L 375.351078 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 375.351078 247.188213 \n",
       "L 380.717448 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 380.717448 247.188213 \n",
       "L 385.888555 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 385.888555 247.188213 \n",
       "L 390.979593 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pb6b3adef0c)\" d=\"M 390.979593 247.188213 \n",
       "L 396.615961 247.188213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path d=\"M 43.78125 258.205695 \n",
       "L 43.78125 15.821094 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path d=\"M 414.257696 258.205695 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path d=\"M 26.139514 247.188213 \n",
       "L 414.257696 247.188213 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path d=\"M 26.139514 15.821094 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"pb6b3adef0c\">\n",
       "   <rect height=\"242.384601\" width=\"388.118182\" x=\"26.139514\" y=\"15.821094\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "plot_model(model)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Now we can couple parameters like this:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"284.744839pt\" version=\"1.1\" viewBox=\"0 0 424.417071 284.744839\" width=\"424.417071pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:26.790497</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 284.744839 \n",
       "L 424.417071 284.744839 \n",
       "L 424.417071 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 26.139514 258.206089 \n",
       "L 414.257696 258.206089 \n",
       "L 414.257696 15.821094 \n",
       "L 26.139514 15.821094 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m4c69d0e5ab\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(35.829687 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"87.885589\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(79.934026 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"131.989928\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(124.038365 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"176.094267\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(168.142704 261.787026)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"220.198605\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(212.247043 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"264.302944\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(256.351382 261.787026)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"308.407283\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(300.455721 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"352.511622\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 3.5 -->\n",
       "      <g transform=\"translate(344.560059 261.787026)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"396.615961\" xlink:href=\"#m4c69d0e5ab\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 4.0 -->\n",
       "      <g transform=\"translate(388.664398 261.787026)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- x -->\n",
       "     <g transform=\"translate(411.298321 275.465151)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 54.890625 54.6875 \n",
       "L 35.109375 28.078125 \n",
       "L 55.90625 0 \n",
       "L 45.3125 0 \n",
       "L 29.390625 21.484375 \n",
       "L 13.484375 0 \n",
       "L 2.875 0 \n",
       "L 24.125 28.609375 \n",
       "L 4.6875 54.6875 \n",
       "L 15.28125 54.6875 \n",
       "L 29.78125 35.203125 \n",
       "L 44.28125 54.6875 \n",
       "z\n",
       "\" id=\"DejaVuSans-120\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-120\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"m9ea84a23f7\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"247.188589\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(20.878125 250.987808)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"201.160632\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(20.878125 204.95985)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"155.132674\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(20.878125 158.931893)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"109.104717\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(20.878125 112.903935)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"63.076759\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_15\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(20.878125 66.875978)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m9ea84a23f7\" y=\"17.048802\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_16\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(20.878125 20.84802)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_17\">\n",
       "     <!-- f(x) -->\n",
       "     <g transform=\"translate(14.798437 24.442187)rotate(-90)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 37.109375 75.984375 \n",
       "L 37.109375 68.5 \n",
       "L 28.515625 68.5 \n",
       "Q 23.6875 68.5 21.796875 66.546875 \n",
       "Q 19.921875 64.59375 19.921875 59.515625 \n",
       "L 19.921875 54.6875 \n",
       "L 34.71875 54.6875 \n",
       "L 34.71875 47.703125 \n",
       "L 19.921875 47.703125 \n",
       "L 19.921875 0 \n",
       "L 10.890625 0 \n",
       "L 10.890625 47.703125 \n",
       "L 2.296875 47.703125 \n",
       "L 2.296875 54.6875 \n",
       "L 10.890625 54.6875 \n",
       "L 10.890625 58.5 \n",
       "Q 10.890625 67.625 15.140625 71.796875 \n",
       "Q 19.390625 75.984375 28.609375 75.984375 \n",
       "z\n",
       "\" id=\"DejaVuSans-102\"/>\n",
       "       <path d=\"M 31 75.875 \n",
       "Q 24.46875 64.65625 21.28125 53.65625 \n",
       "Q 18.109375 42.671875 18.109375 31.390625 \n",
       "Q 18.109375 20.125 21.3125 9.0625 \n",
       "Q 24.515625 -2 31 -13.1875 \n",
       "L 23.1875 -13.1875 \n",
       "Q 15.875 -1.703125 12.234375 9.375 \n",
       "Q 8.59375 20.453125 8.59375 31.390625 \n",
       "Q 8.59375 42.28125 12.203125 53.3125 \n",
       "Q 15.828125 64.359375 23.1875 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-40\"/>\n",
       "       <path d=\"M 8.015625 75.875 \n",
       "L 15.828125 75.875 \n",
       "Q 23.140625 64.359375 26.78125 53.3125 \n",
       "Q 30.421875 42.28125 30.421875 31.390625 \n",
       "Q 30.421875 20.453125 26.78125 9.375 \n",
       "Q 23.140625 -1.703125 15.828125 -13.1875 \n",
       "L 8.015625 -13.1875 \n",
       "Q 14.5 -2 17.703125 9.0625 \n",
       "Q 20.90625 20.125 20.90625 31.390625 \n",
       "Q 20.90625 42.671875 17.703125 53.65625 \n",
       "Q 14.5 64.65625 8.015625 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-41\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-102\"/>\n",
       "      <use x=\"35.205078\" xlink:href=\"#DejaVuSans-40\"/>\n",
       "      <use x=\"74.21875\" xlink:href=\"#DejaVuSans-120\"/>\n",
       "      <use x=\"133.398438\" xlink:href=\"#DejaVuSans-41\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_1\">\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 43.78125 247.188589 \n",
       "L 49.016267 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 49.016267 247.188589 \n",
       "L 54.974848 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 54.974848 247.188589 \n",
       "L 60.709658 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 60.709658 247.188589 \n",
       "L 66.579218 247.188588 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 66.579218 247.188588 \n",
       "L 71.715576 247.188578 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 71.715576 247.188578 \n",
       "L 77.619015 247.188336 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 77.619015 247.188336 \n",
       "L 82.664491 247.185743 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 82.664491 247.185743 \n",
       "L 86.970927 247.16994 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 86.970927 247.16994 \n",
       "L 93.041442 246.991392 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 93.041442 246.991392 \n",
       "L 94.543508 246.853255 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 94.543508 246.853255 \n",
       "L 96.009569 246.636785 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 96.009569 246.636785 \n",
       "L 96.893715 246.450585 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 96.893715 246.450585 \n",
       "L 97.677934 246.239225 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 97.677934 246.239225 \n",
       "L 98.458917 245.975484 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 98.458917 245.975484 \n",
       "L 99.296155 245.620716 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 99.296155 245.620716 \n",
       "L 100.105766 245.191636 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 100.105766 245.191636 \n",
       "L 100.842885 244.712723 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 100.842885 244.712723 \n",
       "L 101.515225 244.189581 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 101.515225 244.189581 \n",
       "L 102.14391 243.614386 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 102.14391 243.614386 \n",
       "L 102.727487 242.995908 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 102.727487 242.995908 \n",
       "L 103.234177 242.38504 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 103.234177 242.38504 \n",
       "L 103.818691 241.585546 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 103.818691 241.585546 \n",
       "L 104.515072 240.485274 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 104.515072 240.485274 \n",
       "L 105.228174 239.171711 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 105.228174 239.171711 \n",
       "L 105.943544 237.640539 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 105.943544 237.640539 \n",
       "L 107.239785 234.240013 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 107.239785 234.240013 \n",
       "L 108.434507 230.276885 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 108.434507 230.276885 \n",
       "L 109.499785 225.968335 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 109.499785 225.968335 \n",
       "L 111.248463 217.082335 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 111.248463 217.082335 \n",
       "L 113.09894 204.919463 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 113.09894 204.919463 \n",
       "L 116.950779 169.807066 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 116.950779 169.807066 \n",
       "L 123.577791 88.362996 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 123.577791 88.362996 \n",
       "L 126.318148 57.3114 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 126.318148 57.3114 \n",
       "L 127.802435 44.009883 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 127.802435 44.009883 \n",
       "L 129.544645 32.851134 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 129.544645 32.851134 \n",
       "L 130.315576 29.678303 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.315576 29.678303 \n",
       "L 130.678222 28.585782 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.678222 28.585782 \n",
       "L 130.910106 28.024165 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.910106 28.024165 \n",
       "L 131.103843 27.637612 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.103843 27.637612 \n",
       "L 131.199798 27.474165 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.199798 27.474165 \n",
       "L 131.310499 27.308725 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.310499 27.308725 \n",
       "L 131.415644 27.174576 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.415644 27.174576 \n",
       "L 131.504812 27.078394 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.504812 27.078394 \n",
       "L 131.558638 27.028154 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.558638 27.028154 \n",
       "L 131.617008 26.980332 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.617008 26.980332 \n",
       "L 131.67215 26.941524 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.67215 26.941524 \n",
       "L 131.723949 26.910708 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.723949 26.910708 \n",
       "L 131.78156 26.882854 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.78156 26.882854 \n",
       "L 131.830322 26.864563 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.830322 26.864563 \n",
       "L 131.888663 26.849048 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.888663 26.849048 \n",
       "L 131.949742 26.840239 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.949742 26.840239 \n",
       "L 132.011257 26.839056 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.011257 26.839056 \n",
       "L 132.062163 26.843912 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.062163 26.843912 \n",
       "L 132.109821 26.853246 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.109821 26.853246 \n",
       "L 132.16519 26.869905 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.16519 26.869905 \n",
       "L 132.210111 26.888013 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.210111 26.888013 \n",
       "L 132.256626 26.911095 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.256626 26.911095 \n",
       "L 132.301376 26.937461 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.301376 26.937461 \n",
       "L 132.35234 26.972455 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.35234 26.972455 \n",
       "L 132.407615 27.016385 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.407615 27.016385 \n",
       "L 132.472018 27.075409 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.472018 27.075409 \n",
       "L 132.52804 27.133607 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.52804 27.133607 \n",
       "L 132.584567 27.198789 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.584567 27.198789 \n",
       "L 132.703108 27.35653 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.703108 27.35653 \n",
       "L 132.805729 27.516062 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.805729 27.516062 \n",
       "L 132.992614 27.861204 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.992614 27.861204 \n",
       "L 133.147193 28.199758 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.147193 28.199758 \n",
       "L 133.455924 29.018806 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.455924 29.018806 \n",
       "L 133.860983 30.378987 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.860983 30.378987 \n",
       "L 134.1986 31.756291 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 134.1986 31.756291 \n",
       "L 135.78377 41.034706 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 135.78377 41.034706 \n",
       "L 140.67705 91.780677 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 140.67705 91.780677 \n",
       "L 145.460614 152.019211 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 145.460614 152.019211 \n",
       "L 149.225503 191.440521 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 149.225503 191.440521 \n",
       "L 153.806489 222.809239 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 153.806489 222.809239 \n",
       "L 154.944521 227.919531 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 154.944521 227.919531 \n",
       "L 156.146605 232.347133 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 156.146605 232.347133 \n",
       "L 157.550755 236.420905 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 157.550755 236.420905 \n",
       "L 158.132546 237.80655 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 158.132546 237.80655 \n",
       "L 158.839522 239.280718 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 158.839522 239.280718 \n",
       "L 159.385975 240.27664 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 159.385975 240.27664 \n",
       "L 159.912944 241.129276 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 159.912944 241.129276 \n",
       "L 160.474227 241.931172 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 160.474227 241.931172 \n",
       "L 161.022607 242.618292 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 161.022607 242.618292 \n",
       "L 161.5128 243.159225 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 161.5128 243.159225 \n",
       "L 162.088637 243.71461 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 162.088637 243.71461 \n",
       "L 162.682052 244.205384 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 162.682052 244.205384 \n",
       "L 163.222907 244.58805 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 163.222907 244.58805 \n",
       "L 163.887436 244.98313 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 163.887436 244.98313 \n",
       "L 164.325897 245.20312 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 164.325897 245.20312 \n",
       "L 164.698928 245.367189 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 164.698928 245.367189 \n",
       "L 165.312725 245.595069 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 165.312725 245.595069 \n",
       "L 166.028583 245.801603 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 166.028583 245.801603 \n",
       "L 166.771816 245.956835 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 166.771816 245.956835 \n",
       "L 167.40541 246.047212 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 167.40541 246.047212 \n",
       "L 168.051485 246.103876 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 168.051485 246.103876 \n",
       "L 168.608495 246.126518 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 168.608495 246.126518 \n",
       "L 169.306304 246.123383 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 169.306304 246.123383 \n",
       "L 170.057244 246.083578 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 170.057244 246.083578 \n",
       "L 171.326227 245.935964 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 171.326227 245.935964 \n",
       "L 172.594542 245.690766 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 172.594542 245.690766 \n",
       "L 173.713882 245.391708 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 173.713882 245.391708 \n",
       "L 175.17926 244.874058 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 175.17926 244.874058 \n",
       "L 175.947939 244.539747 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 175.947939 244.539747 \n",
       "L 176.849243 244.086829 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 176.849243 244.086829 \n",
       "L 177.777682 243.54493 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 177.777682 243.54493 \n",
       "L 178.648697 242.959953 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 178.648697 242.959953 \n",
       "L 179.490592 242.317055 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 179.490592 242.317055 \n",
       "L 180.245215 241.670181 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 180.245215 241.670181 \n",
       "L 180.929573 241.021104 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 180.929573 241.021104 \n",
       "L 181.572323 240.353518 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 181.572323 240.353518 \n",
       "L 182.736707 238.989191 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 182.736707 238.989191 \n",
       "L 184.109292 237.098471 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 184.109292 237.098471 \n",
       "L 185.707553 234.464759 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 185.707553 234.464759 \n",
       "L 187.454286 230.98941 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 187.454286 230.98941 \n",
       "L 189.320906 226.508681 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 189.320906 226.508681 \n",
       "L 192.393584 217.226064 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 192.393584 217.226064 \n",
       "L 198.476097 191.5194 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 198.476097 191.5194 \n",
       "L 203.6337 163.634252 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 203.6337 163.634252 \n",
       "L 209.775315 129.700176 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 209.775315 129.700176 \n",
       "L 212.409312 117.519363 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 212.409312 117.519363 \n",
       "L 213.693105 112.532499 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 213.693105 112.532499 \n",
       "L 215.260687 107.472573 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 215.260687 107.472573 \n",
       "L 215.878242 105.820212 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 215.878242 105.820212 \n",
       "L 216.524016 104.311337 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 216.524016 104.311337 \n",
       "L 217.095062 103.169586 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.095062 103.169586 \n",
       "L 217.431653 102.583209 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.431653 102.583209 \n",
       "L 217.711515 102.145309 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.711515 102.145309 \n",
       "L 217.994214 101.749193 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.994214 101.749193 \n",
       "L 218.307844 101.364565 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.307844 101.364565 \n",
       "L 218.580705 101.077198 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.580705 101.077198 \n",
       "L 218.838647 100.846231 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.838647 100.846231 \n",
       "L 218.955806 100.754437 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.955806 100.754437 \n",
       "L 219.077189 100.667997 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.077189 100.667997 \n",
       "L 219.198449 100.590465 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.198449 100.590465 \n",
       "L 219.325842 100.51852 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.325842 100.51852 \n",
       "L 219.443923 100.460549 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.443923 100.460549 \n",
       "L 219.552333 100.414717 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.552333 100.414717 \n",
       "L 219.673882 100.371751 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.673882 100.371751 \n",
       "L 219.803077 100.335853 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.803077 100.335853 \n",
       "L 219.904085 100.314803 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.904085 100.314803 \n",
       "L 220.006291 100.299774 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.006291 100.299774 \n",
       "L 220.113225 100.290805 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.113225 100.290805 \n",
       "L 220.214173 100.288676 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.214173 100.288676 \n",
       "L 220.295154 100.291418 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.295154 100.291418 \n",
       "L 220.370133 100.29749 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.370133 100.29749 \n",
       "L 220.452957 100.308144 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.452957 100.308144 \n",
       "L 220.553462 100.326636 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.553462 100.326636 \n",
       "L 220.64582 100.349006 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.64582 100.349006 \n",
       "L 220.7499 100.380383 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.7499 100.380383 \n",
       "L 220.8402 100.412898 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.8402 100.412898 \n",
       "L 220.948158 100.458221 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.948158 100.458221 \n",
       "L 221.046477 100.505602 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.046477 100.505602 \n",
       "L 221.141229 100.556766 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.141229 100.556766 \n",
       "L 221.240558 100.616192 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.240558 100.616192 \n",
       "L 221.359878 100.695407 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.359878 100.695407 \n",
       "L 221.53212 100.824795 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.53212 100.824795 \n",
       "L 221.73846 101.003132 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.73846 101.003132 \n",
       "L 221.925447 101.186637 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.925447 101.186637 \n",
       "L 222.091423 101.366898 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.091423 101.366898 \n",
       "L 222.392493 101.735376 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.392493 101.735376 \n",
       "L 222.710316 102.182012 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.710316 102.182012 \n",
       "L 223.12395 102.851065 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 223.12395 102.851065 \n",
       "L 223.549502 103.641628 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 223.549502 103.641628 \n",
       "L 224.275675 105.225045 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 224.275675 105.225045 \n",
       "L 224.985164 107.049051 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 224.985164 107.049051 \n",
       "L 225.81945 109.529007 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 225.81945 109.529007 \n",
       "L 228.553791 119.932708 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 228.553791 119.932708 \n",
       "L 231.402248 133.707589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 231.402248 133.707589 \n",
       "L 236.141468 160.086653 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 236.141468 160.086653 \n",
       "L 241.878634 191.307941 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 241.878634 191.307941 \n",
       "L 247.5824 215.758948 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 247.5824 215.758948 \n",
       "L 250.35732 224.555723 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 250.35732 224.555723 \n",
       "L 252.800467 230.67634 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 252.800467 230.67634 \n",
       "L 253.919214 233.012825 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 253.919214 233.012825 \n",
       "L 255.184861 235.333737 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 255.184861 235.333737 \n",
       "L 256.539241 237.46906 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 256.539241 237.46906 \n",
       "L 257.677358 239.010445 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 257.677358 239.010445 \n",
       "L 258.411084 239.892288 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 258.411084 239.892288 \n",
       "L 259.063029 240.607645 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 259.063029 240.607645 \n",
       "L 260.207459 241.720122 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 260.207459 241.720122 \n",
       "L 260.930218 242.336178 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 260.930218 242.336178 \n",
       "L 261.573645 242.83292 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 261.573645 242.83292 \n",
       "L 262.767455 243.636705 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 262.767455 243.636705 \n",
       "L 263.677515 244.156196 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 263.677515 244.156196 \n",
       "L 264.567966 244.594383 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 264.567966 244.594383 \n",
       "L 265.523299 244.994442 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 265.523299 244.994442 \n",
       "L 266.480794 245.328958 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 266.480794 245.328958 \n",
       "L 267.973277 245.729448 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 267.973277 245.729448 \n",
       "L 269.523952 245.999953 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 269.523952 245.999953 \n",
       "L 270.904618 246.116935 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 270.904618 246.116935 \n",
       "L 271.585608 246.129112 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 271.585608 246.129112 \n",
       "L 272.39402 246.100802 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 272.39402 246.100802 \n",
       "L 273.078084 246.037011 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 273.078084 246.037011 \n",
       "L 273.737062 245.937053 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 273.737062 245.937053 \n",
       "L 274.579586 245.746902 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 274.579586 245.746902 \n",
       "L 275.310228 245.517047 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 275.310228 245.517047 \n",
       "L 275.897106 245.282278 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 275.897106 245.282278 \n",
       "L 276.505643 244.985347 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 276.505643 244.985347 \n",
       "L 277.165519 244.593794 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.165519 244.593794 \n",
       "L 277.539456 244.336125 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.539456 244.336125 \n",
       "L 277.909115 244.053529 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.909115 244.053529 \n",
       "L 278.31329 243.71039 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 278.31329 243.71039 \n",
       "L 278.799304 243.246562 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 278.799304 243.246562 \n",
       "L 279.197916 242.820895 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 279.197916 242.820895 \n",
       "L 279.541353 242.41888 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 279.541353 242.41888 \n",
       "L 280.273941 241.442073 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 280.273941 241.442073 \n",
       "L 281.03246 240.240145 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 281.03246 240.240145 \n",
       "L 281.789202 238.821979 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 281.789202 238.821979 \n",
       "L 282.573626 237.091078 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 282.573626 237.091078 \n",
       "L 283.358558 235.060654 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 283.358558 235.060654 \n",
       "L 284.166664 232.622193 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 284.166664 232.622193 \n",
       "L 285.807095 226.428933 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 285.807095 226.428933 \n",
       "L 287.474932 218.156947 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 287.474932 218.156947 \n",
       "L 293.525457 168.100935 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 293.525457 168.100935 \n",
       "L 299.729805 91.66021 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 299.729805 91.66021 \n",
       "L 302.759069 57.07678 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 302.759069 57.07678 \n",
       "L 304.491985 41.925865 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 304.491985 41.925865 \n",
       "L 306.188574 31.800577 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 306.188574 31.800577 \n",
       "L 306.555866 30.305642 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 306.555866 30.305642 \n",
       "L 306.949649 28.994126 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 306.949649 28.994126 \n",
       "L 307.139758 28.470481 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.139758 28.470481 \n",
       "L 307.334638 28.008488 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.334638 28.008488 \n",
       "L 307.511371 27.655389 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.511371 27.655389 \n",
       "L 307.672864 27.387799 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.672864 27.387799 \n",
       "L 307.771936 27.249747 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.771936 27.249747 \n",
       "L 307.831103 27.176791 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.831103 27.176791 \n",
       "L 307.886413 27.115015 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.886413 27.115015 \n",
       "L 307.954975 27.047066 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.954975 27.047066 \n",
       "L 308.021406 26.990344 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.021406 26.990344 \n",
       "L 308.077506 26.949438 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.077506 26.949438 \n",
       "L 308.141626 26.91053 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.141626 26.91053 \n",
       "L 308.190055 26.886695 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.190055 26.886695 \n",
       "L 308.239366 26.867336 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.239366 26.867336 \n",
       "L 308.301043 26.850099 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.301043 26.850099 \n",
       "L 308.352954 26.841602 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.352954 26.841602 \n",
       "L 308.406376 26.838594 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.406376 26.838594 \n",
       "L 308.470019 26.842606 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.470019 26.842606 \n",
       "L 308.527047 26.853216 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.527047 26.853216 \n",
       "L 308.57985 26.868952 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.57985 26.868952 \n",
       "L 308.630105 26.889207 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.630105 26.889207 \n",
       "L 308.68855 26.919234 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.68855 26.919234 \n",
       "L 308.736014 26.94874 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.736014 26.94874 \n",
       "L 308.783441 26.982804 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.783441 26.982804 \n",
       "L 308.824395 27.015901 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.824395 27.015901 \n",
       "L 308.862811 27.050048 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.862811 27.050048 \n",
       "L 308.904334 27.090332 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.904334 27.090332 \n",
       "L 308.953917 27.143025 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.953917 27.143025 \n",
       "L 309.013461 27.2129 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.013461 27.2129 \n",
       "L 309.079397 27.298667 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.079397 27.298667 \n",
       "L 309.19415 27.468935 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.19415 27.468935 \n",
       "L 309.298196 27.646328 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.298196 27.646328 \n",
       "L 309.405643 27.85243 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.405643 27.85243 \n",
       "L 309.622873 28.339954 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.622873 28.339954 \n",
       "L 309.814144 28.847267 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.814144 28.847267 \n",
       "L 310.279322 30.382706 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 310.279322 30.382706 \n",
       "L 311.116474 34.195907 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 311.116474 34.195907 \n",
       "L 312.807074 45.716483 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 312.807074 45.716483 \n",
       "L 317.137462 92.3193 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 317.137462 92.3193 \n",
       "L 321.647796 149.274653 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 321.647796 149.274653 \n",
       "L 326.987451 202.57921 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 326.987451 202.57921 \n",
       "L 329.312376 218.016758 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 329.312376 218.016758 \n",
       "L 331.457336 228.329779 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 331.457336 228.329779 \n",
       "L 332.683598 232.770744 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 332.683598 232.770744 \n",
       "L 334.022768 236.60469 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 334.022768 236.60469 \n",
       "L 334.984128 238.797402 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 334.984128 238.797402 \n",
       "L 335.597675 239.985211 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 335.597675 239.985211 \n",
       "L 336.152682 240.932968 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 336.152682 240.932968 \n",
       "L 336.790683 241.888128 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 336.790683 241.888128 \n",
       "L 337.531332 242.836196 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 337.531332 242.836196 \n",
       "L 338.157474 243.518685 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 338.157474 243.518685 \n",
       "L 338.735026 244.062995 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 338.735026 244.062995 \n",
       "L 339.137282 244.398742 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.137282 244.398742 \n",
       "L 339.477931 244.657672 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.477931 244.657672 \n",
       "L 339.865937 244.926412 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.865937 244.926412 \n",
       "L 340.26536 245.176214 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 340.26536 245.176214 \n",
       "L 340.91117 245.528286 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 340.91117 245.528286 \n",
       "L 341.616613 245.848794 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 341.616613 245.848794 \n",
       "L 342.321717 246.112284 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 342.321717 246.112284 \n",
       "L 343.113666 246.351567 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 343.113666 246.351567 \n",
       "L 343.890465 246.538192 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 343.890465 246.538192 \n",
       "L 344.699379 246.691409 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 344.699379 246.691409 \n",
       "L 346.023512 246.872459 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 346.023512 246.872459 \n",
       "L 347.424172 246.996198 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 347.424172 246.996198 \n",
       "L 353.000835 247.166342 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 353.000835 247.166342 \n",
       "L 359.487656 247.187329 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 359.487656 247.187329 \n",
       "L 364.816394 247.1885 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 364.816394 247.1885 \n",
       "L 370.150076 247.188584 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 370.150076 247.188584 \n",
       "L 376.459562 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 376.459562 247.188589 \n",
       "L 381.761642 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 381.761642 247.188589 \n",
       "L 386.253276 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 386.253276 247.188589 \n",
       "L 391.055647 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 391.055647 247.188589 \n",
       "L 396.615961 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_2\">\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 43.78125 247.188589 \n",
       "L 49.667901 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 49.667901 247.188589 \n",
       "L 55.732206 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 55.732206 247.188589 \n",
       "L 62.940543 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 62.940543 247.188589 \n",
       "L 68.873151 247.188587 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 68.873151 247.188587 \n",
       "L 74.95419 247.188525 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 74.95419 247.188525 \n",
       "L 82.345342 247.18613 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 82.345342 247.18613 \n",
       "L 88.154907 247.158246 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 88.154907 247.158246 \n",
       "L 93.671668 246.94156 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 93.671668 246.94156 \n",
       "L 94.982186 246.798551 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 94.982186 246.798551 \n",
       "L 96.502591 246.539079 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 96.502591 246.539079 \n",
       "L 97.242236 246.362605 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 97.242236 246.362605 \n",
       "L 98.052626 246.119983 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 98.052626 246.119983 \n",
       "L 98.866597 245.812961 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 98.866597 245.812961 \n",
       "L 99.359218 245.590545 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 99.359218 245.590545 \n",
       "L 99.786573 245.371973 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 99.786573 245.371973 \n",
       "L 100.422904 244.996782 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 100.422904 244.996782 \n",
       "L 100.980679 244.612641 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 100.980679 244.612641 \n",
       "L 101.61595 244.103319 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 101.61595 244.103319 \n",
       "L 102.344512 243.411481 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 102.344512 243.411481 \n",
       "L 103.047519 242.618533 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 103.047519 242.618533 \n",
       "L 103.648934 241.828806 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 103.648934 241.828806 \n",
       "L 104.38248 240.708006 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 104.38248 240.708006 \n",
       "L 105.004128 239.606161 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 105.004128 239.606161 \n",
       "L 105.688389 238.21274 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 105.688389 238.21274 \n",
       "L 106.280371 236.838503 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 106.280371 236.838503 \n",
       "L 106.969167 235.022311 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 106.969167 235.022311 \n",
       "L 107.786588 232.532802 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 107.786588 232.532802 \n",
       "L 109.177523 227.35438 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 109.177523 227.35438 \n",
       "L 110.381868 221.783987 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 110.381868 221.783987 \n",
       "L 115.093697 188.37642 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 115.093697 188.37642 \n",
       "L 119.458696 140.633306 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 119.458696 140.633306 \n",
       "L 124.396973 78.430052 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 124.396973 78.430052 \n",
       "L 127.011526 50.711767 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 127.011526 50.711767 \n",
       "L 128.225528 40.822397 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 128.225528 40.822397 \n",
       "L 129.689296 32.169259 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 129.689296 32.169259 \n",
       "L 130.244897 29.921393 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.244897 29.921393 \n",
       "L 130.559325 28.915322 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.559325 28.915322 \n",
       "L 130.741963 28.420709 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.741963 28.420709 \n",
       "L 130.916081 28.011126 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.916081 28.011126 \n",
       "L 131.075241 27.689938 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.075241 27.689938 \n",
       "L 131.17216 27.519349 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.17216 27.519349 \n",
       "L 131.266915 27.370913 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.266915 27.370913 \n",
       "L 131.344952 27.262313 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.344952 27.262313 \n",
       "L 131.434899 27.152453 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.434899 27.152453 \n",
       "L 131.516279 27.067211 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.516279 27.067211 \n",
       "L 131.565614 27.022088 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.565614 27.022088 \n",
       "L 131.609645 26.985997 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.609645 26.985997 \n",
       "L 131.656823 26.951704 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.656823 26.951704 \n",
       "L 131.69902 26.924871 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.69902 26.924871 \n",
       "L 131.73942 26.902579 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.73942 26.902579 \n",
       "L 131.777664 26.884539 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.777664 26.884539 \n",
       "L 131.826494 26.865839 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.826494 26.865839 \n",
       "L 131.870361 26.853184 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.870361 26.853184 \n",
       "L 131.928753 26.842425 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.928753 26.842425 \n",
       "L 131.982952 26.838659 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.982952 26.838659 \n",
       "L 132.033301 26.840527 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.033301 26.840527 \n",
       "L 132.079769 26.846838 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.079769 26.846838 \n",
       "L 132.118185 26.85538 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.118185 26.85538 \n",
       "L 132.159689 26.867988 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.159689 26.867988 \n",
       "L 132.195103 26.881523 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.195103 26.881523 \n",
       "L 132.234065 26.899367 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.234065 26.899367 \n",
       "L 132.269997 26.918564 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.269997 26.918564 \n",
       "L 132.304752 26.939634 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.304752 26.939634 \n",
       "L 132.352262 26.972417 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.352262 26.972417 \n",
       "L 132.398735 27.008928 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.398735 27.008928 \n",
       "L 132.440088 27.045111 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.440088 27.045111 \n",
       "L 132.489179 27.092578 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.489179 27.092578 \n",
       "L 132.568863 27.18005 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.568863 27.18005 \n",
       "L 132.656548 27.291197 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.656548 27.291197 \n",
       "L 132.733638 27.401786 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.733638 27.401786 \n",
       "L 132.82306 27.545128 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 132.82306 27.545128 \n",
       "L 133.017901 27.913329 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.017901 27.913329 \n",
       "L 133.172625 28.260073 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.172625 28.260073 \n",
       "L 133.350061 28.716623 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.350061 28.716623 \n",
       "L 133.639701 29.596074 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 133.639701 29.596074 \n",
       "L 134.311039 32.263405 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 134.311039 32.263405 \n",
       "L 134.904705 35.332288 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 134.904705 35.332288 \n",
       "L 140.803112 93.359227 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 140.803112 93.359227 \n",
       "L 147.497054 174.759489 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 147.497054 174.759489 \n",
       "L 150.393925 201.213942 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 150.393925 201.213942 \n",
       "L 153.703587 222.316063 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 153.703587 222.316063 \n",
       "L 155.255209 229.179824 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 155.255209 229.179824 \n",
       "L 156.6713 234.034744 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 156.6713 234.034744 \n",
       "L 157.896781 237.31487 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 157.896781 237.31487 \n",
       "L 158.447838 238.548903 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 158.447838 238.548903 \n",
       "L 159.099749 239.837914 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 159.099749 239.837914 \n",
       "L 159.709146 240.890799 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 159.709146 240.890799 \n",
       "L 160.247056 241.709795 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 160.247056 241.709795 \n",
       "L 160.940358 242.628342 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 160.940358 242.628342 \n",
       "L 161.523643 243.294174 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 161.523643 243.294174 \n",
       "L 162.12971 243.894235 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 162.12971 243.894235 \n",
       "L 162.843448 244.495225 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 162.843448 244.495225 \n",
       "L 163.563907 245.001231 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 163.563907 245.001231 \n",
       "L 164.040311 245.287452 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 164.040311 245.287452 \n",
       "L 164.434537 245.498446 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 164.434537 245.498446 \n",
       "L 165.145368 245.82644 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 165.145368 245.82644 \n",
       "L 165.757647 246.061681 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 165.757647 246.061681 \n",
       "L 166.544058 246.309716 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 166.544058 246.309716 \n",
       "L 167.266338 246.492639 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 167.266338 246.492639 \n",
       "L 168.65 246.749481 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 168.65 246.749481 \n",
       "L 170.270346 246.938225 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 170.270346 246.938225 \n",
       "L 176.093554 247.161388 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 176.093554 247.161388 \n",
       "L 180.992558 247.185292 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 180.992558 247.185292 \n",
       "L 187.081805 247.188413 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 187.081805 247.188413 \n",
       "L 192.362173 247.188579 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 192.362173 247.188579 \n",
       "L 197.599979 247.188588 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 197.599979 247.188588 \n",
       "L 202.816617 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 202.816617 247.188589 \n",
       "L 208.570614 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 208.570614 247.188589 \n",
       "L 214.53154 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 214.53154 247.188589 \n",
       "L 220.044086 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.044086 247.188589 \n",
       "L 226.222241 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 226.222241 247.188589 \n",
       "L 231.208762 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 231.208762 247.188589 \n",
       "L 235.741606 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 235.741606 247.188589 \n",
       "L 240.591969 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 240.591969 247.188589 \n",
       "L 245.369366 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 245.369366 247.188589 \n",
       "L 250.305756 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 250.305756 247.188589 \n",
       "L 255.243428 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 255.243428 247.188589 \n",
       "L 260.618672 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 260.618672 247.188589 \n",
       "L 266.810199 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 266.810199 247.188589 \n",
       "L 271.623779 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 271.623779 247.188589 \n",
       "L 276.051645 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 276.051645 247.188589 \n",
       "L 280.598259 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 280.598259 247.188589 \n",
       "L 285.048323 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 285.048323 247.188589 \n",
       "L 289.723653 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 289.723653 247.188589 \n",
       "L 294.549057 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 294.549057 247.188589 \n",
       "L 299.0541 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 299.0541 247.188589 \n",
       "L 303.842712 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 303.842712 247.188589 \n",
       "L 309.16204 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.16204 247.188589 \n",
       "L 315.073307 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 315.073307 247.188589 \n",
       "L 320.820273 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 320.820273 247.188589 \n",
       "L 327.141951 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 327.141951 247.188589 \n",
       "L 332.953393 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 332.953393 247.188589 \n",
       "L 339.610979 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.610979 247.188589 \n",
       "L 347.40905 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 347.40905 247.188589 \n",
       "L 354.109436 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 354.109436 247.188589 \n",
       "L 360.297363 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 360.297363 247.188589 \n",
       "L 366.343449 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 366.343449 247.188589 \n",
       "L 371.879611 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 371.879611 247.188589 \n",
       "L 377.069977 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 377.069977 247.188589 \n",
       "L 382.455433 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 382.455433 247.188589 \n",
       "L 387.819453 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 387.819453 247.188589 \n",
       "L 392.40746 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 392.40746 247.188589 \n",
       "L 396.615961 247.188589 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_3\">\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 43.78125 247.188589 \n",
       "L 49.632277 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 49.632277 247.188589 \n",
       "L 55.229334 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 55.229334 247.188589 \n",
       "L 60.806387 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 60.806387 247.188589 \n",
       "L 66.426808 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 66.426808 247.188589 \n",
       "L 72.489563 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 72.489563 247.188589 \n",
       "L 77.549254 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 77.549254 247.188589 \n",
       "L 83.068359 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 83.068359 247.188589 \n",
       "L 88.251839 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 88.251839 247.188589 \n",
       "L 94.925136 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 94.925136 247.188589 \n",
       "L 100.492123 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 100.492123 247.188589 \n",
       "L 106.334231 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 106.334231 247.188589 \n",
       "L 111.228708 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 111.228708 247.188589 \n",
       "L 117.917774 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 117.917774 247.188589 \n",
       "L 125.479467 247.188588 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 125.479467 247.188588 \n",
       "L 131.406806 247.188576 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 131.406806 247.188576 \n",
       "L 137.817071 247.188461 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 137.817071 247.188461 \n",
       "L 144.293092 247.187538 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 144.293092 247.187538 \n",
       "L 150.276277 247.182269 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 150.276277 247.182269 \n",
       "L 155.913036 247.158644 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 155.913036 247.158644 \n",
       "L 162.1025 247.046423 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 162.1025 247.046423 \n",
       "L 167.839462 246.665338 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 167.839462 246.665338 \n",
       "L 170.383545 246.295588 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 170.383545 246.295588 \n",
       "L 171.786923 246.002929 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 171.786923 246.002929 \n",
       "L 173.300431 245.593495 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 173.300431 245.593495 \n",
       "L 174.541819 245.168381 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 174.541819 245.168381 \n",
       "L 175.738411 244.666863 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 175.738411 244.666863 \n",
       "L 176.937582 244.057888 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 176.937582 244.057888 \n",
       "L 177.993947 243.41921 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 177.993947 243.41921 \n",
       "L 179.29398 242.481411 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 179.29398 242.481411 \n",
       "L 180.017535 241.877831 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 180.017535 241.877831 \n",
       "L 180.679524 241.269225 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 180.679524 241.269225 \n",
       "L 181.3847 240.55717 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 181.3847 240.55717 \n",
       "L 182.046509 239.824887 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 182.046509 239.824887 \n",
       "L 183.282732 238.276634 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 183.282732 238.276634 \n",
       "L 184.789387 236.038223 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 184.789387 236.038223 \n",
       "L 186.030475 233.871587 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 186.030475 233.871587 \n",
       "L 187.460362 230.976297 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 187.460362 230.976297 \n",
       "L 188.801369 227.839827 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 188.801369 227.839827 \n",
       "L 191.45016 220.339478 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 191.45016 220.339478 \n",
       "L 193.778423 212.222978 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 193.778423 212.222978 \n",
       "L 198.18236 192.970886 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 198.18236 192.970886 \n",
       "L 203.535582 164.192545 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 203.535582 164.192545 \n",
       "L 208.742944 135.032395 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 208.742944 135.032395 \n",
       "L 211.752325 120.33259 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 211.752325 120.33259 \n",
       "L 214.629012 109.366561 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 214.629012 109.366561 \n",
       "L 215.834117 105.931572 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 215.834117 105.931572 \n",
       "L 216.391661 104.601972 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 216.391661 104.601972 \n",
       "L 216.98805 103.369555 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 216.98805 103.369555 \n",
       "L 217.352117 102.71591 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.352117 102.71591 \n",
       "L 217.656044 102.228499 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 217.656044 102.228499 \n",
       "L 218.019901 101.715517 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.019901 101.715517 \n",
       "L 218.360598 101.305568 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.360598 101.305568 \n",
       "L 218.659831 101.002132 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.659831 101.002132 \n",
       "L 218.810219 100.86974 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.810219 100.86974 \n",
       "L 218.95405 100.755752 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 218.95405 100.755752 \n",
       "L 219.120949 100.639 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.120949 100.639 \n",
       "L 219.26125 100.553779 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.26125 100.553779 \n",
       "L 219.414427 100.474243 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.414427 100.474243 \n",
       "L 219.54896 100.416036 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.54896 100.416036 \n",
       "L 219.639657 100.382948 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.639657 100.382948 \n",
       "L 219.725035 100.356334 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.725035 100.356334 \n",
       "L 219.821925 100.331457 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.821925 100.331457 \n",
       "L 219.928459 100.310646 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 219.928459 100.310646 \n",
       "L 220.014796 100.298808 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.014796 100.298808 \n",
       "L 220.114098 100.29076 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.114098 100.29076 \n",
       "L 220.194654 100.288607 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.194654 100.288607 \n",
       "L 220.28345 100.290777 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.28345 100.290777 \n",
       "L 220.42559 100.304165 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.42559 100.304165 \n",
       "L 220.517087 100.319239 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.517087 100.319239 \n",
       "L 220.59853 100.336909 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.59853 100.336909 \n",
       "L 220.763256 100.384883 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.763256 100.384883 \n",
       "L 220.915153 100.44362 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 220.915153 100.44362 \n",
       "L 221.073099 100.519432 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.073099 100.519432 \n",
       "L 221.244984 100.618978 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.244984 100.618978 \n",
       "L 221.403822 100.72673 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.403822 100.72673 \n",
       "L 221.57053 100.856068 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.57053 100.856068 \n",
       "L 221.838102 101.098333 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.838102 101.098333 \n",
       "L 222.120589 101.400257 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.120589 101.400257 \n",
       "L 222.498658 101.878008 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.498658 101.878008 \n",
       "L 222.82414 102.356267 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 222.82414 102.356267 \n",
       "L 223.417674 103.38574 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 223.417674 103.38574 \n",
       "L 224.189098 105.020997 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 224.189098 105.020997 \n",
       "L 224.920164 106.870836 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 224.920164 106.870836 \n",
       "L 226.45463 111.648043 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 226.45463 111.648043 \n",
       "L 228.112489 118.039999 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 228.112489 118.039999 \n",
       "L 231.082984 132.049987 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 231.082984 132.049987 \n",
       "L 237.487542 167.741325 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 237.487542 167.741325 \n",
       "L 243.296146 198.145667 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 243.296146 198.145667 \n",
       "L 248.338463 218.358295 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 248.338463 218.358295 \n",
       "L 250.986858 226.272841 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 250.986858 226.272841 \n",
       "L 252.523056 230.053441 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 252.523056 230.053441 \n",
       "L 254.073378 233.313596 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 254.073378 233.313596 \n",
       "L 255.83673 236.404957 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 255.83673 236.404957 \n",
       "L 256.548856 237.483883 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 256.548856 237.483883 \n",
       "L 257.390317 238.643485 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 257.390317 238.643485 \n",
       "L 258.703126 240.222812 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 258.703126 240.222812 \n",
       "L 259.468592 241.025447 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 259.468592 241.025447 \n",
       "L 260.291282 241.799773 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 260.291282 241.799773 \n",
       "L 261.078317 242.461647 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 261.078317 242.461647 \n",
       "L 261.995794 243.144341 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 261.995794 243.144341 \n",
       "L 262.758793 243.645711 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 262.758793 243.645711 \n",
       "L 263.473683 244.065708 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 263.473683 244.065708 \n",
       "L 264.449455 244.568698 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 264.449455 244.568698 \n",
       "L 265.452032 245.010156 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 265.452032 245.010156 \n",
       "L 267.121994 245.601236 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 267.121994 245.601236 \n",
       "L 268.727304 246.030266 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 268.727304 246.030266 \n",
       "L 270.275494 246.342347 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 270.275494 246.342347 \n",
       "L 272.928741 246.705651 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 272.928741 246.705651 \n",
       "L 277.753257 247.026885 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.753257 247.026885 \n",
       "L 281.904662 247.130169 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 281.904662 247.130169 \n",
       "L 287.155965 247.174029 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 287.155965 247.174029 \n",
       "L 292.654733 247.185579 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 292.654733 247.185579 \n",
       "L 297.889797 247.187991 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 297.889797 247.187991 \n",
       "L 302.58343 247.188461 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 302.58343 247.188461 \n",
       "L 307.677857 247.188567 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.677857 247.188567 \n",
       "L 312.984705 247.188586 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 312.984705 247.188586 \n",
       "L 317.622451 247.188588 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 317.622451 247.188588 \n",
       "L 323.052198 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 323.052198 247.188589 \n",
       "L 328.129138 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 328.129138 247.188589 \n",
       "L 334.242493 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 334.242493 247.188589 \n",
       "L 340.045179 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 340.045179 247.188589 \n",
       "L 345.787232 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 345.787232 247.188589 \n",
       "L 351.927434 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 351.927434 247.188589 \n",
       "L 358.392722 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 358.392722 247.188589 \n",
       "L 363.061069 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 363.061069 247.188589 \n",
       "L 367.035822 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 367.035822 247.188589 \n",
       "L 371.889791 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 371.889791 247.188589 \n",
       "L 376.327106 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 376.327106 247.188589 \n",
       "L 381.404432 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 381.404432 247.188589 \n",
       "L 386.34278 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 386.34278 247.188589 \n",
       "L 391.774434 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 391.774434 247.188589 \n",
       "L 396.615961 247.188589 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_4\">\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 43.78125 247.188589 \n",
       "L 49.487728 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 49.487728 247.188589 \n",
       "L 56.166474 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 56.166474 247.188589 \n",
       "L 62.027288 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 62.027288 247.188589 \n",
       "L 68.207413 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 68.207413 247.188589 \n",
       "L 74.960514 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 74.960514 247.188589 \n",
       "L 81.534087 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 81.534087 247.188589 \n",
       "L 87.69194 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 87.69194 247.188589 \n",
       "L 93.258873 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 93.258873 247.188589 \n",
       "L 98.201397 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 98.201397 247.188589 \n",
       "L 103.621424 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 103.621424 247.188589 \n",
       "L 110.089586 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 110.089586 247.188589 \n",
       "L 115.961921 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 115.961921 247.188589 \n",
       "L 121.091585 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 121.091585 247.188589 \n",
       "L 125.903744 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 125.903744 247.188589 \n",
       "L 130.857495 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 130.857495 247.188589 \n",
       "L 136.113736 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 136.113736 247.188589 \n",
       "L 141.846666 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 141.846666 247.188589 \n",
       "L 146.590083 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 146.590083 247.188589 \n",
       "L 150.735437 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 150.735437 247.188589 \n",
       "L 155.20686 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 155.20686 247.188589 \n",
       "L 159.508581 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 159.508581 247.188589 \n",
       "L 163.283329 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 163.283329 247.188589 \n",
       "L 167.378818 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 167.378818 247.188589 \n",
       "L 172.111939 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 172.111939 247.188589 \n",
       "L 176.74346 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 176.74346 247.188589 \n",
       "L 181.821454 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 181.821454 247.188589 \n",
       "L 186.366436 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 186.366436 247.188589 \n",
       "L 190.613243 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 190.613243 247.188589 \n",
       "L 196.600502 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 196.600502 247.188589 \n",
       "L 201.74803 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 201.74803 247.188589 \n",
       "L 206.66263 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 206.66263 247.188589 \n",
       "L 212.154714 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 212.154714 247.188589 \n",
       "L 216.46056 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 216.46056 247.188589 \n",
       "L 221.463009 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 221.463009 247.188589 \n",
       "L 226.637697 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 226.637697 247.188589 \n",
       "L 231.197364 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 231.197364 247.188589 \n",
       "L 236.389851 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 236.389851 247.188589 \n",
       "L 241.96676 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 241.96676 247.188589 \n",
       "L 246.787421 247.188584 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 246.787421 247.188584 \n",
       "L 251.610707 247.188516 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 251.610707 247.188516 \n",
       "L 256.814797 247.187601 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 256.814797 247.187601 \n",
       "L 262.414484 247.176213 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 262.414484 247.176213 \n",
       "L 268.117335 247.067999 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 268.117335 247.067999 \n",
       "L 271.051645 246.842552 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 271.051645 246.842552 \n",
       "L 272.189351 246.678884 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 272.189351 246.678884 \n",
       "L 273.455622 246.415187 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 273.455622 246.415187 \n",
       "L 274.230488 246.197669 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 274.230488 246.197669 \n",
       "L 274.882826 245.973015 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 274.882826 245.973015 \n",
       "L 275.76136 245.597871 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 275.76136 245.597871 \n",
       "L 276.557964 245.171013 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 276.557964 245.171013 \n",
       "L 277.182732 244.767487 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.182732 244.767487 \n",
       "L 277.832496 244.273176 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 277.832496 244.273176 \n",
       "L 278.260675 243.900501 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 278.260675 243.900501 \n",
       "L 278.66607 243.509605 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 278.66607 243.509605 \n",
       "L 279.364038 242.74051 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 279.364038 242.74051 \n",
       "L 279.93313 242.013174 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 279.93313 242.013174 \n",
       "L 280.535967 241.132414 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 280.535967 241.132414 \n",
       "L 281.153445 240.099422 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 281.153445 240.099422 \n",
       "L 281.844472 238.768398 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 281.844472 238.768398 \n",
       "L 282.992012 236.09235 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 282.992012 236.09235 \n",
       "L 284.246455 232.392719 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 284.246455 232.392719 \n",
       "L 285.947697 225.833052 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 285.947697 225.833052 \n",
       "L 287.457608 218.267533 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 287.457608 218.267533 \n",
       "L 290.730864 195.276616 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 290.730864 195.276616 \n",
       "L 296.72299 130.026879 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 296.72299 130.026879 \n",
       "L 301.952803 65.46922 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 301.952803 65.46922 \n",
       "L 305.158409 37.341217 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 305.158409 37.341217 \n",
       "L 305.804234 33.639532 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 305.804234 33.639532 \n",
       "L 306.46186 30.663544 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 306.46186 30.663544 \n",
       "L 306.789546 29.490662 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 306.789546 29.490662 \n",
       "L 307.124133 28.510833 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.124133 28.510833 \n",
       "L 307.321963 28.036248 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.321963 28.036248 \n",
       "L 307.49036 27.694097 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.49036 27.694097 \n",
       "L 307.579764 27.535655 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.579764 27.535655 \n",
       "L 307.681339 27.375232 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.681339 27.375232 \n",
       "L 307.77042 27.251731 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.77042 27.251731 \n",
       "L 307.844871 27.160853 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.844871 27.160853 \n",
       "L 307.936466 27.064488 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 307.936466 27.064488 \n",
       "L 308.013923 26.996304 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.013923 26.996304 \n",
       "L 308.065093 26.957956 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.065093 26.957956 \n",
       "L 308.110366 26.928471 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.110366 26.928471 \n",
       "L 308.154006 26.904 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.154006 26.904 \n",
       "L 308.196898 26.88373 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.196898 26.88373 \n",
       "L 308.235157 26.868813 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.235157 26.868813 \n",
       "L 308.26887 26.85814 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.26887 26.85814 \n",
       "L 308.312739 26.847722 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.312739 26.847722 \n",
       "L 308.350324 26.841917 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.350324 26.841917 \n",
       "L 308.390941 26.838882 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.390941 26.838882 \n",
       "L 308.435075 26.839397 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.435075 26.839397 \n",
       "L 308.472181 26.842903 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.472181 26.842903 \n",
       "L 308.512817 26.849964 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.512817 26.849964 \n",
       "L 308.548053 26.858811 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.548053 26.858811 \n",
       "L 308.579577 26.868872 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.579577 26.868872 \n",
       "L 308.612887 26.881703 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.612887 26.881703 \n",
       "L 308.647887 26.897621 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.647887 26.897621 \n",
       "L 308.685104 26.917286 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.685104 26.917286 \n",
       "L 308.726566 26.942515 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.726566 26.942515 \n",
       "L 308.763973 26.968282 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.763973 26.968282 \n",
       "L 308.801191 26.996743 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.801191 26.996743 \n",
       "L 308.838733 27.028309 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.838733 27.028309 \n",
       "L 308.881631 27.067886 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.881631 27.067886 \n",
       "L 308.962018 27.152121 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 308.962018 27.152121 \n",
       "L 309.038515 27.244464 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.038515 27.244464 \n",
       "L 309.102522 27.330848 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.102522 27.330848 \n",
       "L 309.185005 27.454401 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.185005 27.454401 \n",
       "L 309.267643 27.591981 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.267643 27.591981 \n",
       "L 309.451569 27.947621 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.451569 27.947621 \n",
       "L 309.622641 28.339394 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.622641 28.339394 \n",
       "L 309.78097 28.754073 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 309.78097 28.754073 \n",
       "L 310.101981 29.747284 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 310.101981 29.747284 \n",
       "L 310.395017 30.830197 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 310.395017 30.830197 \n",
       "L 311.020916 33.694075 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 311.020916 33.694075 \n",
       "L 311.760845 38.01124 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 311.760845 38.01124 \n",
       "L 313.34401 50.335774 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 313.34401 50.335774 \n",
       "L 318.858775 114.259513 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 318.858775 114.259513 \n",
       "L 324.46494 180.354936 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 324.46494 180.354936 \n",
       "L 327.337423 205.208068 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 327.337423 205.208068 \n",
       "L 330.363317 223.504774 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 330.363317 223.504774 \n",
       "L 331.986299 230.363686 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 331.986299 230.363686 \n",
       "L 332.867813 233.357389 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 332.867813 233.357389 \n",
       "L 333.684152 235.726244 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 333.684152 235.726244 \n",
       "L 334.51536 237.781629 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 334.51536 237.781629 \n",
       "L 335.22005 239.272447 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 335.22005 239.272447 \n",
       "L 335.897553 240.5115 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 335.897553 240.5115 \n",
       "L 336.596594 241.611893 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 336.596594 241.611893 \n",
       "L 337.092272 242.293849 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 337.092272 242.293849 \n",
       "L 337.567579 242.878532 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 337.567579 242.878532 \n",
       "L 338.089045 243.448976 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 338.089045 243.448976 \n",
       "L 338.654133 243.991323 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 338.654133 243.991323 \n",
       "L 339.109693 244.37678 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.109693 244.37678 \n",
       "L 339.651659 244.78132 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 339.651659 244.78132 \n",
       "L 340.186509 245.128947 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 340.186509 245.128947 \n",
       "L 340.707075 245.423512 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 340.707075 245.423512 \n",
       "L 341.523528 245.809971 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 341.523528 245.809971 \n",
       "L 342.341859 246.119068 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 342.341859 246.119068 \n",
       "L 343.296172 246.39934 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 343.296172 246.39934 \n",
       "L 344.212118 246.60366 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 344.212118 246.60366 \n",
       "L 345.763497 246.842621 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 345.763497 246.842621 \n",
       "L 347.239726 246.982983 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 347.239726 246.982983 \n",
       "L 350.172171 247.119704 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 350.172171 247.119704 \n",
       "L 357.192826 247.184952 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 357.192826 247.184952 \n",
       "L 363.620388 247.188424 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 363.620388 247.188424 \n",
       "L 369.315962 247.188581 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 369.315962 247.188581 \n",
       "L 375.425626 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 375.425626 247.188589 \n",
       "L 382.333685 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 382.333685 247.188589 \n",
       "L 388.956639 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p62c1f3bb74)\" d=\"M 388.956639 247.188589 \n",
       "L 396.615961 247.188589 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path d=\"M 43.78125 258.206089 \n",
       "L 43.78125 15.821094 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path d=\"M 414.257696 258.206089 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path d=\"M 26.139514 247.188589 \n",
       "L 414.257696 247.188589 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path d=\"M 26.139514 15.821094 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"p62c1f3bb74\">\n",
       "   <rect height=\"242.384995\" width=\"388.118182\" x=\"26.139514\" y=\"15.821094\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    },
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"287.034451pt\" version=\"1.1\" viewBox=\"0 0 424.694344 287.034451\" width=\"424.694344pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:27.044751</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 287.034451 \n",
       "L 424.694344 287.034451 \n",
       "L 424.694344 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 32.791787 260.60473 \n",
       "L 414.534969 260.60473 \n",
       "L 414.534969 15.821094 \n",
       "L 32.791787 15.821094 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m4c23cb73b5\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(42.192188 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"93.523657\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(85.572095 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"136.903564\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(128.952002 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"180.283471\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(172.331909 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"223.663378\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(215.711816 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"267.043285\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(259.091723 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"310.423192\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(302.47163 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"353.803099\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 3.5 -->\n",
       "      <g transform=\"translate(345.851537 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"397.183006\" xlink:href=\"#m4c23cb73b5\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 4.0 -->\n",
       "      <g transform=\"translate(389.231444 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- x -->\n",
       "     <g transform=\"translate(411.575594 277.754764)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 54.890625 54.6875 \n",
       "L 35.109375 28.078125 \n",
       "L 55.90625 0 \n",
       "L 45.3125 0 \n",
       "L 29.390625 21.484375 \n",
       "L 13.484375 0 \n",
       "L 2.875 0 \n",
       "L 24.125 28.609375 \n",
       "L 4.6875 54.6875 \n",
       "L 15.28125 54.6875 \n",
       "L 29.78125 35.203125 \n",
       "L 44.28125 54.6875 \n",
       "z\n",
       "\" id=\"DejaVuSans-120\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-120\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"m4d976dfc0b\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 0.00 -->\n",
       "      <g transform=\"translate(20.878125 253.27742)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"220.031901\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 0.25 -->\n",
       "      <g transform=\"translate(20.878125 223.83112)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"190.585601\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 0.50 -->\n",
       "      <g transform=\"translate(20.878125 194.38482)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"161.139301\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 0.75 -->\n",
       "      <g transform=\"translate(20.878125 164.93852)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 8.203125 72.90625 \n",
       "L 55.078125 72.90625 \n",
       "L 55.078125 68.703125 \n",
       "L 28.609375 0 \n",
       "L 18.3125 0 \n",
       "L 43.21875 64.59375 \n",
       "L 8.203125 64.59375 \n",
       "z\n",
       "\" id=\"DejaVuSans-55\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-55\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"131.693001\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_15\">\n",
       "      <!-- 1.00 -->\n",
       "      <g transform=\"translate(20.878125 135.49222)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"102.246701\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_16\">\n",
       "      <!-- 1.25 -->\n",
       "      <g transform=\"translate(20.878125 106.04592)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_7\">\n",
       "     <g id=\"line2d_16\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"72.800401\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_17\">\n",
       "      <!-- 1.50 -->\n",
       "      <g transform=\"translate(20.878125 76.59962)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_8\">\n",
       "     <g id=\"line2d_17\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"50.14375\" xlink:href=\"#m4d976dfc0b\" y=\"43.354101\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_18\">\n",
       "      <!-- 1.75 -->\n",
       "      <g transform=\"translate(20.878125 47.15332)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-55\"/>\n",
       "       <use x=\"159.033203\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_19\">\n",
       "     <!-- f(x) -->\n",
       "     <g transform=\"translate(14.798438 24.442187)rotate(-90)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 37.109375 75.984375 \n",
       "L 37.109375 68.5 \n",
       "L 28.515625 68.5 \n",
       "Q 23.6875 68.5 21.796875 66.546875 \n",
       "Q 19.921875 64.59375 19.921875 59.515625 \n",
       "L 19.921875 54.6875 \n",
       "L 34.71875 54.6875 \n",
       "L 34.71875 47.703125 \n",
       "L 19.921875 47.703125 \n",
       "L 19.921875 0 \n",
       "L 10.890625 0 \n",
       "L 10.890625 47.703125 \n",
       "L 2.296875 47.703125 \n",
       "L 2.296875 54.6875 \n",
       "L 10.890625 54.6875 \n",
       "L 10.890625 58.5 \n",
       "Q 10.890625 67.625 15.140625 71.796875 \n",
       "Q 19.390625 75.984375 28.609375 75.984375 \n",
       "z\n",
       "\" id=\"DejaVuSans-102\"/>\n",
       "       <path d=\"M 31 75.875 \n",
       "Q 24.46875 64.65625 21.28125 53.65625 \n",
       "Q 18.109375 42.671875 18.109375 31.390625 \n",
       "Q 18.109375 20.125 21.3125 9.0625 \n",
       "Q 24.515625 -2 31 -13.1875 \n",
       "L 23.1875 -13.1875 \n",
       "Q 15.875 -1.703125 12.234375 9.375 \n",
       "Q 8.59375 20.453125 8.59375 31.390625 \n",
       "Q 8.59375 42.28125 12.203125 53.3125 \n",
       "Q 15.828125 64.359375 23.1875 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-40\"/>\n",
       "       <path d=\"M 8.015625 75.875 \n",
       "L 15.828125 75.875 \n",
       "Q 23.140625 64.359375 26.78125 53.3125 \n",
       "Q 30.421875 42.28125 30.421875 31.390625 \n",
       "Q 30.421875 20.453125 26.78125 9.375 \n",
       "Q 23.140625 -1.703125 15.828125 -13.1875 \n",
       "L 8.015625 -13.1875 \n",
       "Q 14.5 -2 17.703125 9.0625 \n",
       "Q 20.90625 20.125 20.90625 31.390625 \n",
       "Q 20.90625 42.671875 17.703125 53.65625 \n",
       "Q 14.5 64.65625 8.015625 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-41\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-102\"/>\n",
       "      <use x=\"35.205078\" xlink:href=\"#DejaVuSans-40\"/>\n",
       "      <use x=\"74.21875\" xlink:href=\"#DejaVuSans-120\"/>\n",
       "      <use x=\"133.398438\" xlink:href=\"#DejaVuSans-41\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_1\">\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 50.14375 232.185933 \n",
       "L 55.615666 229.937152 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 55.615666 229.937152 \n",
       "L 60.619223 227.776917 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 60.619223 227.776917 \n",
       "L 65.572402 225.559838 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 65.572402 225.559838 \n",
       "L 70.226269 223.425118 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 70.226269 223.425118 \n",
       "L 74.714413 221.338895 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 74.714413 221.338895 \n",
       "L 79.077487 219.304693 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 79.077487 219.304693 \n",
       "L 83.523183 217.247047 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 83.523183 217.247047 \n",
       "L 88.006035 215.210501 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 88.006035 215.210501 \n",
       "L 92.671422 213.1576 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 92.671422 213.1576 \n",
       "L 97.921056 210.962301 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 97.921056 210.962301 \n",
       "L 103.077035 208.959837 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 103.077035 208.959837 \n",
       "L 107.81681 207.282979 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 107.81681 207.282979 \n",
       "L 112.212996 205.890041 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 112.212996 205.890041 \n",
       "L 116.762867 204.631752 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 116.762867 204.631752 \n",
       "L 120.909343 203.660881 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 120.909343 203.660881 \n",
       "L 125.829722 202.739849 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 125.829722 202.739849 \n",
       "L 131.172663 202.035353 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 131.172663 202.035353 \n",
       "L 137.051454 201.622291 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 137.051454 201.622291 \n",
       "L 141.430986 201.558852 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 141.430986 201.558852 \n",
       "L 146.382472 201.729149 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 146.382472 201.729149 \n",
       "L 151.459268 202.152989 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 151.459268 202.152989 \n",
       "L 156.583983 202.80672 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 156.583983 202.80672 \n",
       "L 162.214101 203.722049 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 162.214101 203.722049 \n",
       "L 167.767105 204.682296 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 167.767105 204.682296 \n",
       "L 172.296381 205.277571 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 172.296381 205.277571 \n",
       "L 174.867634 205.394785 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 174.867634 205.394785 \n",
       "L 176.353558 205.337073 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 176.353558 205.337073 \n",
       "L 177.820869 205.156733 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 177.820869 205.156733 \n",
       "L 179.177603 204.853086 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 179.177603 204.853086 \n",
       "L 179.927207 204.618056 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 179.927207 204.618056 \n",
       "L 180.76316 204.291149 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 180.76316 204.291149 \n",
       "L 181.516786 203.931368 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 181.516786 203.931368 \n",
       "L 182.227502 203.529635 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 182.227502 203.529635 \n",
       "L 182.891799 203.094268 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 182.891799 203.094268 \n",
       "L 183.462407 202.670367 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 183.462407 202.670367 \n",
       "L 184.258029 201.995976 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 184.258029 201.995976 \n",
       "L 185.136685 201.128623 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 185.136685 201.128623 \n",
       "L 185.915985 200.241938 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 185.915985 200.241938 \n",
       "L 186.709025 199.216608 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 186.709025 199.216608 \n",
       "L 187.45133 198.135877 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 187.45133 198.135877 \n",
       "L 188.284624 196.773049 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 188.284624 196.773049 \n",
       "L 189.061512 195.350184 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 189.061512 195.350184 \n",
       "L 189.867868 193.707789 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 189.867868 193.707789 \n",
       "L 191.261007 190.443607 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 191.261007 190.443607 \n",
       "L 192.638684 186.642693 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 192.638684 186.642693 \n",
       "L 194.115434 181.886953 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 194.115434 181.886953 \n",
       "L 195.408035 177.11238 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 195.408035 177.11238 \n",
       "L 198.121325 165.150876 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 198.121325 165.150876 \n",
       "L 200.634442 151.727132 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 200.634442 151.727132 \n",
       "L 206.940187 109.93326 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 206.940187 109.93326 \n",
       "L 213.767997 61.82038 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 213.767997 61.82038 \n",
       "L 216.315331 47.080744 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 216.315331 47.080744 \n",
       "L 217.424301 41.695176 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 217.424301 41.695176 \n",
       "L 218.764208 36.186157 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 218.764208 36.186157 \n",
       "L 219.560524 33.476569 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 219.560524 33.476569 \n",
       "L 220.212765 31.589998 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 220.212765 31.589998 \n",
       "L 220.572579 30.68163 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 220.572579 30.68163 \n",
       "L 220.911276 29.914315 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 220.911276 29.914315 \n",
       "L 221.291181 29.156305 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.291181 29.156305 \n",
       "L 221.526598 28.741655 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.526598 28.741655 \n",
       "L 221.73524 28.409673 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.73524 28.409673 \n",
       "L 222.018654 28.012516 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.018654 28.012516 \n",
       "L 222.164746 27.832117 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.164746 27.832117 \n",
       "L 222.316077 27.662769 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.316077 27.662769 \n",
       "L 222.487132 27.492875 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.487132 27.492875 \n",
       "L 222.635734 27.363873 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.635734 27.363873 \n",
       "L 222.809131 27.235247 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.809131 27.235247 \n",
       "L 222.98982 27.126362 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.98982 27.126362 \n",
       "L 223.089758 27.077179 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.089758 27.077179 \n",
       "L 223.174568 27.041615 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.174568 27.041615 \n",
       "L 223.263583 27.01039 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.263583 27.01039 \n",
       "L 223.363993 26.982671 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.363993 26.982671 \n",
       "L 223.445104 26.966091 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.445104 26.966091 \n",
       "L 223.542861 26.953012 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.542861 26.953012 \n",
       "L 223.633768 26.947623 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.633768 26.947623 \n",
       "L 223.71198 26.948209 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.71198 26.948209 \n",
       "L 223.819747 26.956933 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.819747 26.956933 \n",
       "L 223.922583 26.973809 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.922583 26.973809 \n",
       "L 224.027334 26.999583 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.027334 26.999583 \n",
       "L 224.114723 27.027711 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.114723 27.027711 \n",
       "L 224.20619 27.063604 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.20619 27.063604 \n",
       "L 224.29469 27.104611 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.29469 27.104611 \n",
       "L 224.467798 27.202656 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.467798 27.202656 \n",
       "L 224.637446 27.321609 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.637446 27.321609 \n",
       "L 224.818082 27.473102 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.818082 27.473102 \n",
       "L 224.990863 27.641916 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.990863 27.641916 \n",
       "L 225.155202 27.824115 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.155202 27.824115 \n",
       "L 225.325672 28.035328 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.325672 28.035328 \n",
       "L 225.469979 28.23175 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.469979 28.23175 \n",
       "L 225.732702 28.630661 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.732702 28.630661 \n",
       "L 226.103688 29.284161 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.103688 29.284161 \n",
       "L 226.419287 29.922462 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.419287 29.922462 \n",
       "L 226.797312 30.785486 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.797312 30.785486 \n",
       "L 227.239159 31.928243 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 227.239159 31.928243 \n",
       "L 227.935444 34.015542 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 227.935444 34.015542 \n",
       "L 228.777692 36.992345 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 228.777692 36.992345 \n",
       "L 230.277715 43.438187 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 230.277715 43.438187 \n",
       "L 235.060289 71.705672 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 235.060289 71.705672 \n",
       "L 239.343286 102.351774 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 239.343286 102.351774 \n",
       "L 243.221135 129.862218 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 243.221135 129.862218 \n",
       "L 248.296178 160.549431 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 248.296178 160.549431 \n",
       "L 250.680175 171.981656 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 250.680175 171.981656 \n",
       "L 253.083302 181.440016 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 253.083302 181.440016 \n",
       "L 254.488201 186.04129 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 254.488201 186.04129 \n",
       "L 255.851435 189.890919 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 255.851435 189.890919 \n",
       "L 256.927452 192.528296 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 256.927452 192.528296 \n",
       "L 258.120201 195.067486 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 258.120201 195.067486 \n",
       "L 258.787381 196.323146 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 258.787381 196.323146 \n",
       "L 259.493356 197.531299 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 259.493356 197.531299 \n",
       "L 260.302304 198.772157 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 260.302304 198.772157 \n",
       "L 261.04563 199.785833 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 261.04563 199.785833 \n",
       "L 261.748173 200.640001 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 261.748173 200.640001 \n",
       "L 262.473965 201.423648 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 262.473965 201.423648 \n",
       "L 263.128644 202.050311 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 263.128644 202.050311 \n",
       "L 263.799578 202.619181 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 263.799578 202.619181 \n",
       "L 264.41693 203.0816 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 264.41693 203.0816 \n",
       "L 265.019925 203.480785 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 265.019925 203.480785 \n",
       "L 266.162505 204.107771 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 266.162505 204.107771 \n",
       "L 267.402599 204.619119 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 267.402599 204.619119 \n",
       "L 268.529624 204.953206 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 268.529624 204.953206 \n",
       "L 270.093127 205.24557 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 270.093127 205.24557 \n",
       "L 271.401281 205.36527 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 271.401281 205.36527 \n",
       "L 274.271842 205.335344 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 274.271842 205.335344 \n",
       "L 281.064157 204.430796 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 281.064157 204.430796 \n",
       "L 286.737482 203.442865 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 286.737482 203.442865 \n",
       "L 292.526363 202.556059 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 292.526363 202.556059 \n",
       "L 299.248366 201.843826 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 299.248366 201.843826 \n",
       "L 304.37592 201.584387 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 304.37592 201.584387 \n",
       "L 310.45256 201.629211 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 310.45256 201.629211 \n",
       "L 315.640682 201.98414 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 315.640682 201.98414 \n",
       "L 320.92639 202.649764 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 320.92639 202.649764 \n",
       "L 328.028327 204.017434 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 328.028327 204.017434 \n",
       "L 333.990403 205.561376 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 333.990403 205.561376 \n",
       "L 340.811014 207.726119 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 340.811014 207.726119 \n",
       "L 346.631081 209.863513 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 346.631081 209.863513 \n",
       "L 353.081224 212.484983 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 353.081224 212.484983 \n",
       "L 358.986059 215.060667 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 358.986059 215.060667 \n",
       "L 365.318737 217.945242 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 365.318737 217.945242 \n",
       "L 371.718053 220.921777 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 371.718053 220.921777 \n",
       "L 379.225011 224.404513 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 379.225011 224.404513 \n",
       "L 385.448618 227.22001 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 385.448618 227.22001 \n",
       "L 391.284374 229.756531 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 391.284374 229.756531 \n",
       "L 397.183006 232.185933 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_2\">\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 50.14375 232.191732 \n",
       "L 55.077745 230.171946 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 55.077745 230.171946 \n",
       "L 60.183356 227.980025 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 60.183356 227.980025 \n",
       "L 66.140645 225.318394 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 66.140645 225.318394 \n",
       "L 72.429393 222.428502 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 72.429393 222.428502 \n",
       "L 77.907001 219.885557 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 77.907001 219.885557 \n",
       "L 82.564571 217.735801 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 82.564571 217.735801 \n",
       "L 86.918396 215.761437 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 86.918396 215.761437 \n",
       "L 92.122498 213.4784 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 92.122498 213.4784 \n",
       "L 97.33934 211.311261 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 97.33934 211.311261 \n",
       "L 103.644008 208.910782 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 103.644008 208.910782 \n",
       "L 109.311377 207.008909 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 109.311377 207.008909 \n",
       "L 115.216253 205.334982 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 115.216253 205.334982 \n",
       "L 120.657081 204.107866 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 120.657081 204.107866 \n",
       "L 126.13007 203.207711 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 126.13007 203.207711 \n",
       "L 132.584938 202.604988 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 132.584938 202.604988 \n",
       "L 138.131954 202.498124 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 138.131954 202.498124 \n",
       "L 144.217533 202.821462 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 144.217533 202.821462 \n",
       "L 150.50101 203.628838 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 150.50101 203.628838 \n",
       "L 156.106699 204.73524 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 156.106699 204.73524 \n",
       "L 162.928591 206.532169 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 162.928591 206.532169 \n",
       "L 168.71158 208.398556 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 168.71158 208.398556 \n",
       "L 175.373079 210.875651 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 175.373079 210.875651 \n",
       "L 183.268321 214.162174 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 183.268321 214.162174 \n",
       "L 190.286415 217.298477 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 190.286415 217.298477 \n",
       "L 196.061417 219.960383 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 196.061417 219.960383 \n",
       "L 202.453203 222.926374 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 202.453203 222.926374 \n",
       "L 208.436507 225.667531 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 208.436507 225.667531 \n",
       "L 213.696254 228.011781 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 213.696254 228.011781 \n",
       "L 219.462793 230.478705 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 219.462793 230.478705 \n",
       "L 224.582184 232.555915 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.582184 232.555915 \n",
       "L 230.757188 234.897319 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 230.757188 234.897319 \n",
       "L 237.4924 237.225715 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 237.4924 237.225715 \n",
       "L 241.365063 238.452449 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 241.365063 238.452449 \n",
       "L 245.196031 239.583954 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 245.196031 239.583954 \n",
       "L 249.566178 240.775162 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 249.566178 240.775162 \n",
       "L 254.063754 241.89184 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 254.063754 241.89184 \n",
       "L 259.375416 243.072078 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 259.375416 243.072078 \n",
       "L 264.619082 244.096697 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 264.619082 244.096697 \n",
       "L 269.163401 244.878381 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 269.163401 244.878381 \n",
       "L 273.545139 245.544875 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 273.545139 245.544875 \n",
       "L 277.922711 246.131388 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 277.922711 246.131388 \n",
       "L 282.110811 246.624106 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 282.110811 246.624106 \n",
       "L 286.211091 247.047146 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 286.211091 247.047146 \n",
       "L 290.725593 247.451271 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 290.725593 247.451271 \n",
       "L 295.536579 247.818198 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 295.536579 247.818198 \n",
       "L 300.423145 248.131465 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 300.423145 248.131465 \n",
       "L 305.83467 248.417768 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 305.83467 248.417768 \n",
       "L 310.352128 248.614735 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 310.352128 248.614735 \n",
       "L 316.002222 248.815498 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 316.002222 248.815498 \n",
       "L 322.657673 248.998227 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 322.657673 248.998227 \n",
       "L 328.743706 249.124506 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 328.743706 249.124506 \n",
       "L 334.17502 249.211088 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 334.17502 249.211088 \n",
       "L 340.51403 249.287621 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 340.51403 249.287621 \n",
       "L 346.52044 249.341153 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 346.52044 249.341153 \n",
       "L 352.748219 249.381819 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 352.748219 249.381819 \n",
       "L 357.997603 249.407135 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 357.997603 249.407135 \n",
       "L 362.515106 249.423847 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 362.515106 249.423847 \n",
       "L 367.008695 249.436793 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 367.008695 249.436793 \n",
       "L 371.233627 249.446295 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 371.233627 249.446295 \n",
       "L 376.054222 249.454641 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 376.054222 249.454641 \n",
       "L 381.860965 249.461983 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 381.860965 249.461983 \n",
       "L 387.161589 249.466758 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 387.161589 249.466758 \n",
       "L 391.799936 249.469819 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 391.799936 249.469819 \n",
       "L 397.183006 249.472402 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_3\">\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 50.14375 249.478201 \n",
       "L 54.691076 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 54.691076 249.478201 \n",
       "L 58.474234 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 58.474234 249.478201 \n",
       "L 62.881568 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 62.881568 249.478201 \n",
       "L 67.342906 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 67.342906 249.478201 \n",
       "L 71.835462 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 71.835462 249.478201 \n",
       "L 76.646954 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 76.646954 249.478201 \n",
       "L 80.477585 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 80.477585 249.478201 \n",
       "L 84.513142 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 84.513142 249.478201 \n",
       "L 90.909292 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 90.909292 249.478201 \n",
       "L 96.155123 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 96.155123 249.478201 \n",
       "L 100.89755 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 100.89755 249.478201 \n",
       "L 105.946373 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 105.946373 249.478201 \n",
       "L 111.501684 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 111.501684 249.478201 \n",
       "L 116.754034 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 116.754034 249.478201 \n",
       "L 121.603354 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 121.603354 249.478201 \n",
       "L 125.710848 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 125.710848 249.478201 \n",
       "L 131.114368 249.478199 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 131.114368 249.478199 \n",
       "L 137.657027 249.478173 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 137.657027 249.478173 \n",
       "L 143.016172 249.478015 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 143.016172 249.478015 \n",
       "L 147.560279 249.477355 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 147.560279 249.477355 \n",
       "L 153.295068 249.473155 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 153.295068 249.473155 \n",
       "L 158.026229 249.458388 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 158.026229 249.458388 \n",
       "L 163.363981 249.3955 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 163.363981 249.3955 \n",
       "L 169.826659 249.08152 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 169.826659 249.08152 \n",
       "L 172.552953 248.74947 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 172.552953 248.74947 \n",
       "L 174.886924 248.282062 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 174.886924 248.282062 \n",
       "L 176.205974 247.911585 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 176.205974 247.911585 \n",
       "L 177.383172 247.497455 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 177.383172 247.497455 \n",
       "L 178.465381 247.033543 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 178.465381 247.033543 \n",
       "L 179.543697 246.478154 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 179.543697 246.478154 \n",
       "L 180.814412 245.683773 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 180.814412 245.683773 \n",
       "L 181.613326 245.095315 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 181.613326 245.095315 \n",
       "L 182.267056 244.556461 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 182.267056 244.556461 \n",
       "L 182.953469 243.930084 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 182.953469 243.930084 \n",
       "L 183.631692 243.245195 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 183.631692 243.245195 \n",
       "L 184.847782 241.836095 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 184.847782 241.836095 \n",
       "L 185.579962 240.864508 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 185.579962 240.864508 \n",
       "L 186.313534 239.789357 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 186.313534 239.789357 \n",
       "L 187.097521 238.519303 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 187.097521 238.519303 \n",
       "L 187.956813 236.972828 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 187.956813 236.972828 \n",
       "L 189.571673 233.587327 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 189.571673 233.587327 \n",
       "L 191.322942 229.129052 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 191.322942 229.129052 \n",
       "L 192.786003 224.708043 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 192.786003 224.708043 \n",
       "L 194.241399 219.628299 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 194.241399 219.628299 \n",
       "L 197.017599 207.922138 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 197.017599 207.922138 \n",
       "L 202.138601 179.275192 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 202.138601 179.275192 \n",
       "L 207.174208 144.023483 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 207.174208 144.023483 \n",
       "L 211.645919 111.203834 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 211.645919 111.203834 \n",
       "L 214.58643 91.716182 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 214.58643 91.716182 \n",
       "L 216.419041 81.36026 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 216.419041 81.36026 \n",
       "L 218.107446 73.457 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 218.107446 73.457 \n",
       "L 219.465395 68.430819 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 219.465395 68.430819 \n",
       "L 220.19662 66.261054 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 220.19662 66.261054 \n",
       "L 220.582828 65.273636 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 220.582828 65.273636 \n",
       "L 221.04755 64.2342 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.04755 64.2342 \n",
       "L 221.327431 63.687687 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.327431 63.687687 \n",
       "L 221.666022 63.107353 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.666022 63.107353 \n",
       "L 221.836719 62.848587 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 221.836719 62.848587 \n",
       "L 222.005815 62.614717 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.005815 62.614717 \n",
       "L 222.216477 62.354772 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.216477 62.354772 \n",
       "L 222.393804 62.163075 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.393804 62.163075 \n",
       "L 222.528173 62.034375 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.528173 62.034375 \n",
       "L 222.654715 61.926253 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.654715 61.926253 \n",
       "L 222.81627 61.806693 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.81627 61.806693 \n",
       "L 222.957171 61.719364 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 222.957171 61.719364 \n",
       "L 223.102466 61.645873 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.102466 61.645873 \n",
       "L 223.188612 61.610248 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.188612 61.610248 \n",
       "L 223.271291 61.581626 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.271291 61.581626 \n",
       "L 223.393325 61.54935 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.393325 61.54935 \n",
       "L 223.528615 61.527471 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.528615 61.527471 \n",
       "L 223.60522 61.521567 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.60522 61.521567 \n",
       "L 223.691273 61.520527 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.691273 61.520527 \n",
       "L 223.79645 61.52729 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.79645 61.52729 \n",
       "L 223.887978 61.540369 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 223.887978 61.540369 \n",
       "L 224.035855 61.575637 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.035855 61.575637 \n",
       "L 224.185374 61.629047 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.185374 61.629047 \n",
       "L 224.343702 61.705041 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.343702 61.705041 \n",
       "L 224.488352 61.791929 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.488352 61.791929 \n",
       "L 224.644859 61.904686 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.644859 61.904686 \n",
       "L 224.833209 62.066173 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.833209 62.066173 \n",
       "L 225.008399 62.2416 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.008399 62.2416 \n",
       "L 225.16666 62.420919 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.16666 62.420919 \n",
       "L 225.306203 62.595396 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.306203 62.595396 \n",
       "L 225.470494 62.820413 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.470494 62.820413 \n",
       "L 225.65344 63.09583 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.65344 63.09583 \n",
       "L 225.848172 63.417635 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 225.848172 63.417635 \n",
       "L 226.168952 64.011731 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.168952 64.011731 \n",
       "L 226.573543 64.873539 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.573543 64.873539 \n",
       "L 226.911771 65.689093 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 226.911771 65.689093 \n",
       "L 227.539647 67.428406 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 227.539647 67.428406 \n",
       "L 228.377314 70.191723 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 228.377314 70.191723 \n",
       "L 229.172918 73.264826 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 229.172918 73.264826 \n",
       "L 231.759046 85.962897 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 231.759046 85.962897 \n",
       "L 234.09824 100.35557 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 234.09824 100.35557 \n",
       "L 240.376677 145.678438 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 240.376677 145.678438 \n",
       "L 246.669497 188.459858 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 246.669497 188.459858 \n",
       "L 250.020178 206.546923 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 250.020178 206.546923 \n",
       "L 252.837894 218.69393 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 252.837894 218.69393 \n",
       "L 254.416317 224.300948 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 254.416317 224.300948 \n",
       "L 256.263567 229.845761 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 256.263567 229.845761 \n",
       "L 257.939127 234.006707 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 257.939127 234.006707 \n",
       "L 258.836779 235.926847 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 258.836779 235.926847 \n",
       "L 259.684523 237.558458 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 259.684523 237.558458 \n",
       "L 260.892756 239.602552 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 260.892756 239.602552 \n",
       "L 261.905903 241.084014 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 261.905903 241.084014 \n",
       "L 263.174337 242.671544 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 263.174337 242.671544 \n",
       "L 264.329945 243.888333 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 264.329945 243.888333 \n",
       "L 265.535552 244.954012 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 265.535552 244.954012 \n",
       "L 266.663838 245.787232 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 266.663838 245.787232 \n",
       "L 267.735701 246.451401 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 267.735701 246.451401 \n",
       "L 268.993784 247.095044 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 268.993784 247.095044 \n",
       "L 270.386335 247.663453 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 270.386335 247.663453 \n",
       "L 271.737405 248.095962 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 271.737405 248.095962 \n",
       "L 274.261608 248.664138 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 274.261608 248.664138 \n",
       "L 279.402632 249.223522 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 279.402632 249.223522 \n",
       "L 285.263375 249.41916 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 285.263375 249.41916 \n",
       "L 290.313709 249.4633 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 290.313709 249.4633 \n",
       "L 296.138138 249.475539 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 296.138138 249.475539 \n",
       "L 303.015031 249.477912 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 303.015031 249.477912 \n",
       "L 308.23837 249.478154 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 308.23837 249.478154 \n",
       "L 312.999499 249.478193 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 312.999499 249.478193 \n",
       "L 318.275507 249.4782 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 318.275507 249.4782 \n",
       "L 324.219974 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 324.219974 249.478201 \n",
       "L 330.387118 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 330.387118 249.478201 \n",
       "L 335.474748 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 335.474748 249.478201 \n",
       "L 341.446606 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 341.446606 249.478201 \n",
       "L 348.520365 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 348.520365 249.478201 \n",
       "L 355.56678 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 355.56678 249.478201 \n",
       "L 361.782826 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 361.782826 249.478201 \n",
       "L 368.322545 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 368.322545 249.478201 \n",
       "L 375.152584 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 375.152584 249.478201 \n",
       "L 381.196799 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 381.196799 249.478201 \n",
       "L 386.68077 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 386.68077 249.478201 \n",
       "L 392.002279 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 392.002279 249.478201 \n",
       "L 397.183006 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_4\">\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 50.14375 249.472402 \n",
       "L 55.400473 249.46989 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 55.400473 249.46989 \n",
       "L 60.59642 249.466426 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 60.59642 249.466426 \n",
       "L 66.354004 249.46102 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 66.354004 249.46102 \n",
       "L 72.165823 249.453268 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 72.165823 249.453268 \n",
       "L 76.938566 249.444574 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 76.938566 249.444574 \n",
       "L 81.227802 249.43443 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 81.227802 249.43443 \n",
       "L 86.747177 249.417191 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 86.747177 249.417191 \n",
       "L 91.331099 249.398309 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 91.331099 249.398309 \n",
       "L 97.050494 249.367229 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 97.050494 249.367229 \n",
       "L 102.1667 249.330402 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 102.1667 249.330402 \n",
       "L 108.538296 249.269056 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 108.538296 249.269056 \n",
       "L 114.733982 249.188088 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 114.733982 249.188088 \n",
       "L 119.716868 249.103527 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 119.716868 249.103527 \n",
       "L 124.39419 249.0047 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 124.39419 249.0047 \n",
       "L 130.096284 248.853247 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 130.096284 248.853247 \n",
       "L 135.75805 248.661975 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 135.75805 248.661975 \n",
       "L 141.88657 248.398847 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 141.88657 248.398847 \n",
       "L 146.984909 248.126701 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 146.984909 248.126701 \n",
       "L 152.597596 247.760881 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 152.597596 247.760881 \n",
       "L 157.632732 247.364285 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 157.632732 247.364285 \n",
       "L 163.852043 246.771079 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 163.852043 246.771079 \n",
       "L 169.614399 246.104925 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 169.614399 246.104925 \n",
       "L 174.375674 245.459309 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 174.375674 245.459309 \n",
       "L 179.606852 244.640368 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 179.606852 244.640368 \n",
       "L 186.152386 243.438921 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 186.152386 243.438921 \n",
       "L 191.772661 242.237896 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 191.772661 242.237896 \n",
       "L 198.569328 240.562669 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 198.569328 240.562669 \n",
       "L 205.294741 238.655316 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 205.294741 238.655316 \n",
       "L 211.797849 236.572179 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 211.797849 236.572179 \n",
       "L 218.681593 234.117903 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 218.681593 234.117903 \n",
       "L 224.471057 231.86839 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 224.471057 231.86839 \n",
       "L 231.329219 229.010845 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 231.329219 229.010845 \n",
       "L 236.721717 226.64323 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 236.721717 226.64323 \n",
       "L 241.762413 224.359133 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 241.762413 224.359133 \n",
       "L 245.964477 222.42134 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 245.964477 222.42134 \n",
       "L 250.554558 220.290288 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 250.554558 220.290288 \n",
       "L 254.39388 218.512844 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 254.39388 218.512844 \n",
       "L 259.072161 216.375755 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 259.072161 216.375755 \n",
       "L 263.823012 214.264709 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 263.823012 214.264709 \n",
       "L 267.886991 212.528626 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 267.886991 212.528626 \n",
       "L 272.639751 210.606425 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 272.639751 210.606425 \n",
       "L 278.015994 208.608004 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 278.015994 208.608004 \n",
       "L 283.825387 206.703792 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 283.825387 206.703792 \n",
       "L 289.032793 205.259911 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 289.032793 205.259911 \n",
       "L 294.66287 204.013979 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 294.66287 204.013979 \n",
       "L 299.468302 203.231933 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 299.468302 203.231933 \n",
       "L 304.602094 202.69976 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 304.602094 202.69976 \n",
       "L 310.546742 202.4888 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 310.546742 202.4888 \n",
       "L 315.428276 202.644827 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 315.428276 202.644827 \n",
       "L 320.57173 203.127266 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 320.57173 203.127266 \n",
       "L 326.743868 204.122428 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 326.743868 204.122428 \n",
       "L 331.890772 205.279338 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 331.890772 205.279338 \n",
       "L 337.661074 206.899161 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 337.661074 206.899161 \n",
       "L 343.743507 208.932578 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 343.743507 208.932578 \n",
       "L 350.631582 211.570929 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 350.631582 211.570929 \n",
       "L 357.158724 214.323759 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 357.158724 214.323759 \n",
       "L 362.335415 216.629624 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 362.335415 216.629624 \n",
       "L 367.41913 218.959039 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 367.41913 218.959039 \n",
       "L 371.424319 220.816276 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 371.424319 220.816276 \n",
       "L 375.863586 222.875849 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 375.863586 222.875849 \n",
       "L 380.995966 225.231983 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 380.995966 225.231983 \n",
       "L 386.721134 227.79469 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 386.721134 227.79469 \n",
       "L 392.168061 230.137955 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#p3723fed9c8)\" d=\"M 392.168061 230.137955 \n",
       "L 397.183006 232.191732 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path d=\"M 50.14375 260.60473 \n",
       "L 50.14375 15.821094 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path d=\"M 414.534969 260.60473 \n",
       "L 414.534969 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path d=\"M 32.791787 249.478201 \n",
       "L 414.534969 249.478201 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path d=\"M 32.791787 15.821094 \n",
       "L 414.534969 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"p3723fed9c8\">\n",
       "   <rect height=\"244.783636\" width=\"381.743182\" x=\"32.791787\" y=\"15.821094\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "model.initial_values[sp.Symbol(R\"\\sigma_1\")] = sp.Symbol(R\"\\sigma_3\")\n",
    "plot_model(model)\n",
    "model.initial_values[sp.Symbol(R\"\\sigma_3\")] = 1\n",
    "plot_model(model)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "And it's also possible to insert custom dynamics:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"287.034451pt\" version=\"1.1\" viewBox=\"0 0 424.417071 287.034451\" width=\"424.417071pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:27.265598</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 287.034451 \n",
       "L 424.417071 287.034451 \n",
       "L 424.417071 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 26.139514 260.60473 \n",
       "L 414.257696 260.60473 \n",
       "L 414.257696 15.821094 \n",
       "L 26.139514 15.821094 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"m3326d9af18\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(35.829687 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"87.885589\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(79.934026 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"131.989928\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(124.038365 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"176.094267\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(168.142704 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"220.198605\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(212.247043 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"264.302944\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(256.351382 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"308.407283\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(300.455721 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"352.511622\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 3.5 -->\n",
       "      <g transform=\"translate(344.560059 264.076639)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"396.615961\" xlink:href=\"#m3326d9af18\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 4.0 -->\n",
       "      <g transform=\"translate(388.664398 264.076639)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_10\">\n",
       "     <!-- x -->\n",
       "     <g transform=\"translate(411.298321 277.754764)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 54.890625 54.6875 \n",
       "L 35.109375 28.078125 \n",
       "L 55.90625 0 \n",
       "L 45.3125 0 \n",
       "L 29.390625 21.484375 \n",
       "L 13.484375 0 \n",
       "L 2.875 0 \n",
       "L 24.125 28.609375 \n",
       "L 4.6875 54.6875 \n",
       "L 15.28125 54.6875 \n",
       "L 29.78125 35.203125 \n",
       "L 44.28125 54.6875 \n",
       "z\n",
       "\" id=\"DejaVuSans-120\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-120\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"m004b6e7991\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"249.478201\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(20.878125 253.27742)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"214.231755\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(20.878125 218.030974)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"178.985309\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(20.878125 182.784528)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"143.738863\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(20.878125 147.538082)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"108.492417\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_15\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(20.878125 112.291636)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"73.245971\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_16\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(20.878125 77.045189)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_7\">\n",
       "     <g id=\"line2d_16\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"43.78125\" xlink:href=\"#m004b6e7991\" y=\"37.999525\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_17\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(20.878125 41.798743)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"text_18\">\n",
       "     <!-- f(x) -->\n",
       "     <g transform=\"translate(14.798437 24.442187)rotate(-90)scale(0.1 -0.1)\">\n",
       "      <defs>\n",
       "       <path d=\"M 37.109375 75.984375 \n",
       "L 37.109375 68.5 \n",
       "L 28.515625 68.5 \n",
       "Q 23.6875 68.5 21.796875 66.546875 \n",
       "Q 19.921875 64.59375 19.921875 59.515625 \n",
       "L 19.921875 54.6875 \n",
       "L 34.71875 54.6875 \n",
       "L 34.71875 47.703125 \n",
       "L 19.921875 47.703125 \n",
       "L 19.921875 0 \n",
       "L 10.890625 0 \n",
       "L 10.890625 47.703125 \n",
       "L 2.296875 47.703125 \n",
       "L 2.296875 54.6875 \n",
       "L 10.890625 54.6875 \n",
       "L 10.890625 58.5 \n",
       "Q 10.890625 67.625 15.140625 71.796875 \n",
       "Q 19.390625 75.984375 28.609375 75.984375 \n",
       "z\n",
       "\" id=\"DejaVuSans-102\"/>\n",
       "       <path d=\"M 31 75.875 \n",
       "Q 24.46875 64.65625 21.28125 53.65625 \n",
       "Q 18.109375 42.671875 18.109375 31.390625 \n",
       "Q 18.109375 20.125 21.3125 9.0625 \n",
       "Q 24.515625 -2 31 -13.1875 \n",
       "L 23.1875 -13.1875 \n",
       "Q 15.875 -1.703125 12.234375 9.375 \n",
       "Q 8.59375 20.453125 8.59375 31.390625 \n",
       "Q 8.59375 42.28125 12.203125 53.3125 \n",
       "Q 15.828125 64.359375 23.1875 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-40\"/>\n",
       "       <path d=\"M 8.015625 75.875 \n",
       "L 15.828125 75.875 \n",
       "Q 23.140625 64.359375 26.78125 53.3125 \n",
       "Q 30.421875 42.28125 30.421875 31.390625 \n",
       "Q 30.421875 20.453125 26.78125 9.375 \n",
       "Q 23.140625 -1.703125 15.828125 -13.1875 \n",
       "L 8.015625 -13.1875 \n",
       "Q 14.5 -2 17.703125 9.0625 \n",
       "Q 20.90625 20.125 20.90625 31.390625 \n",
       "Q 20.90625 42.671875 17.703125 53.65625 \n",
       "Q 14.5 64.65625 8.015625 75.875 \n",
       "z\n",
       "\" id=\"DejaVuSans-41\"/>\n",
       "      </defs>\n",
       "      <use xlink:href=\"#DejaVuSans-102\"/>\n",
       "      <use x=\"35.205078\" xlink:href=\"#DejaVuSans-40\"/>\n",
       "      <use x=\"74.21875\" xlink:href=\"#DejaVuSans-120\"/>\n",
       "      <use x=\"133.398438\" xlink:href=\"#DejaVuSans-41\"/>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_1\">\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.78125 239.132477 \n",
       "L 43.950709 236.00295 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.950709 236.00295 \n",
       "L 44.148885 234.495152 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 44.148885 234.495152 \n",
       "L 44.490759 232.643171 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 44.490759 232.643171 \n",
       "L 45.178322 229.930652 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 45.178322 229.930652 \n",
       "L 46.479727 226.160407 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 46.479727 226.160407 \n",
       "L 47.817769 223.084932 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 47.817769 223.084932 \n",
       "L 48.967192 220.789319 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 48.967192 220.789319 \n",
       "L 51.564514 216.291736 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 51.564514 216.291736 \n",
       "L 54.351297 212.115965 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 54.351297 212.115965 \n",
       "L 60.455205 204.260679 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 60.455205 204.260679 \n",
       "L 65.878693 198.159484 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 65.878693 198.159484 \n",
       "L 72.503451 191.406956 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 72.503451 191.406956 \n",
       "L 78.516203 185.768637 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 78.516203 185.768637 \n",
       "L 85.30899 179.856873 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 85.30899 179.856873 \n",
       "L 91.115541 175.150919 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 91.115541 175.150919 \n",
       "L 97.392753 170.40909 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 97.392753 170.40909 \n",
       "L 103.042585 166.447164 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 103.042585 166.447164 \n",
       "L 109.66299 162.179112 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 109.66299 162.179112 \n",
       "L 115.521818 158.746024 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 115.521818 158.746024 \n",
       "L 119.987672 156.349735 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 119.987672 156.349735 \n",
       "L 125.299328 153.750188 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 125.299328 153.750188 \n",
       "L 131.571469 151.030742 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 131.571469 151.030742 \n",
       "L 137.004597 148.977317 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 137.004597 148.977317 \n",
       "L 142.363765 147.218579 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 142.363765 147.218579 \n",
       "L 148.145767 145.603576 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 148.145767 145.603576 \n",
       "L 153.898968 144.262464 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 153.898968 144.262464 \n",
       "L 160.392325 143.002111 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 160.392325 143.002111 \n",
       "L 165.230006 142.137915 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 165.230006 142.137915 \n",
       "L 171.096759 140.893658 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 171.096759 140.893658 \n",
       "L 172.304266 140.560718 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 172.304266 140.560718 \n",
       "L 173.752052 140.102492 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 173.752052 140.102492 \n",
       "L 174.954503 139.660963 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 174.954503 139.660963 \n",
       "L 176.09718 139.178844 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 176.09718 139.178844 \n",
       "L 177.642957 138.409349 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 177.642957 138.409349 \n",
       "L 179.134753 137.512235 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 179.134753 137.512235 \n",
       "L 179.941012 136.953283 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 179.941012 136.953283 \n",
       "L 180.62077 136.436685 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 180.62077 136.436685 \n",
       "L 182.012565 135.235131 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 182.012565 135.235131 \n",
       "L 183.552857 133.650567 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 183.552857 133.650567 \n",
       "L 184.998279 131.88496 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 184.998279 131.88496 \n",
       "L 186.414739 129.859625 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 186.414739 129.859625 \n",
       "L 187.963007 127.275051 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 187.963007 127.275051 \n",
       "L 189.608004 124.064586 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 189.608004 124.064586 \n",
       "L 191.078695 120.759228 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 191.078695 120.759228 \n",
       "L 194.240032 112.181332 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 194.240032 112.181332 \n",
       "L 201.457219 85.474224 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 201.457219 85.474224 \n",
       "L 207.763396 58.068624 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 207.763396 58.068624 \n",
       "L 213.483505 37.19582 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 213.483505 37.19582 \n",
       "L 214.834113 33.646274 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 214.834113 33.646274 \n",
       "L 216.078981 30.990857 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 216.078981 30.990857 \n",
       "L 216.828134 29.699026 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 216.828134 29.699026 \n",
       "L 217.247536 29.080455 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.247536 29.080455 \n",
       "L 217.659818 28.547203 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.659818 28.547203 \n",
       "L 217.983187 28.18156 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.983187 28.18156 \n",
       "L 218.366052 27.809106 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.366052 27.809106 \n",
       "L 218.57392 27.634565 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.57392 27.634565 \n",
       "L 218.761793 27.493665 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.761793 27.493665 \n",
       "L 218.995414 27.340862 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.995414 27.340862 \n",
       "L 219.198165 27.228452 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.198165 27.228452 \n",
       "L 219.382461 27.142606 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.382461 27.142606 \n",
       "L 219.555923 27.076046 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.555923 27.076046 \n",
       "L 219.678251 27.037421 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.678251 27.037421 \n",
       "L 219.785089 27.009319 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.785089 27.009319 \n",
       "L 219.880328 26.988697 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.880328 26.988697 \n",
       "L 219.979808 26.971617 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.979808 26.971617 \n",
       "L 220.073973 26.959649 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.073973 26.959649 \n",
       "L 220.186017 26.950732 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.186017 26.950732 \n",
       "L 220.313769 26.947623 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.313769 26.947623 \n",
       "L 220.428154 26.951219 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.428154 26.951219 \n",
       "L 220.542239 26.960809 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.542239 26.960809 \n",
       "L 220.652523 26.975775 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.652523 26.975775 \n",
       "L 220.751347 26.993941 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.751347 26.993941 \n",
       "L 220.852196 27.01711 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.852196 27.01711 \n",
       "L 220.960399 27.047164 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.960399 27.047164 \n",
       "L 221.05849 27.079055 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.05849 27.079055 \n",
       "L 221.161546 27.117314 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.161546 27.117314 \n",
       "L 221.258577 27.157782 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.258577 27.157782 \n",
       "L 221.371161 27.210136 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.371161 27.210136 \n",
       "L 221.4892 27.271243 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.4892 27.271243 \n",
       "L 221.726233 27.413126 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.726233 27.413126 \n",
       "L 221.988874 27.600124 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.988874 27.600124 \n",
       "L 222.206047 27.778283 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.206047 27.778283 \n",
       "L 222.503042 28.0562 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.503042 28.0562 \n",
       "L 222.772389 28.342239 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.772389 28.342239 \n",
       "L 223.166636 28.81864 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 223.166636 28.81864 \n",
       "L 223.640206 29.480344 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 223.640206 29.480344 \n",
       "L 224.561258 31.03985 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 224.561258 31.03985 \n",
       "L 225.552352 33.103645 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 225.552352 33.103645 \n",
       "L 226.713504 35.997138 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 226.713504 35.997138 \n",
       "L 232.909839 57.971559 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 232.909839 57.971559 \n",
       "L 238.634121 82.263397 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 238.634121 82.263397 \n",
       "L 243.771127 101.808398 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 243.771127 101.808398 \n",
       "L 246.25394 109.575573 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 246.25394 109.575573 \n",
       "L 249.157462 117.044522 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 249.157462 117.044522 \n",
       "L 251.587244 121.97345 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 251.587244 121.97345 \n",
       "L 252.774212 123.970052 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 252.774212 123.970052 \n",
       "L 254.140979 125.959671 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 254.140979 125.959671 \n",
       "L 255.119825 127.194592 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 255.119825 127.194592 \n",
       "L 256.264246 128.452443 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 256.264246 128.452443 \n",
       "L 257.423582 129.538429 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 257.423582 129.538429 \n",
       "L 258.096923 130.088999 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 258.096923 130.088999 \n",
       "L 258.833538 130.628743 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 258.833538 130.628743 \n",
       "L 259.564782 131.10405 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 259.564782 131.10405 \n",
       "L 260.234073 131.489796 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 260.234073 131.489796 \n",
       "L 261.016685 131.885365 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 261.016685 131.885365 \n",
       "L 261.824577 132.235775 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 261.824577 132.235775 \n",
       "L 262.455996 132.471878 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 262.455996 132.471878 \n",
       "L 263.202363 132.711649 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 263.202363 132.711649 \n",
       "L 263.892689 132.898462 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 263.892689 132.898462 \n",
       "L 264.565795 133.050925 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 264.565795 133.050925 \n",
       "L 265.286134 133.18432 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 265.286134 133.18432 \n",
       "L 266.033811 133.293085 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 266.033811 133.293085 \n",
       "L 266.85556 133.381088 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 266.85556 133.381088 \n",
       "L 267.715315 133.441492 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 267.715315 133.441492 \n",
       "L 269.384823 133.479609 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 269.384823 133.479609 \n",
       "L 270.980979 133.435909 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 270.980979 133.435909 \n",
       "L 273.934075 133.203601 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 273.934075 133.203601 \n",
       "L 276.799272 132.850401 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 276.799272 132.850401 \n",
       "L 282.104267 132.011878 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 282.104267 132.011878 \n",
       "L 286.984545 131.132907 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 286.984545 131.132907 \n",
       "L 291.799382 130.215704 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 291.799382 130.215704 \n",
       "L 296.664462 129.258164 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 296.664462 129.258164 \n",
       "L 302.79129 128.021597 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 302.79129 128.021597 \n",
       "L 307.818283 126.987869 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 307.818283 126.987869 \n",
       "L 314.200338 125.657338 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 314.200338 125.657338 \n",
       "L 319.816175 124.474754 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 319.816175 124.474754 \n",
       "L 325.442799 123.282984 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 325.442799 123.282984 \n",
       "L 330.071503 122.299787 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 330.071503 122.299787 \n",
       "L 334.326396 121.395248 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 334.326396 121.395248 \n",
       "L 338.61815 120.483263 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 338.61815 120.483263 \n",
       "L 343.72495 119.399868 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 343.72495 119.399868 \n",
       "L 348.022061 118.490648 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 348.022061 118.490648 \n",
       "L 351.706099 117.713414 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 351.706099 117.713414 \n",
       "L 356.000391 116.810543 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 356.000391 116.810543 \n",
       "L 361.207569 115.720811 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 361.207569 115.720811 \n",
       "L 365.980647 114.727291 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 365.980647 114.727291 \n",
       "L 371.257 113.635415 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 371.257 113.635415 \n",
       "L 376.053442 112.648958 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 376.053442 112.648958 \n",
       "L 381.639372 111.507696 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 381.639372 111.507696 \n",
       "L 386.361425 110.5494 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 386.361425 110.5494 \n",
       "L 391.518774 109.509597 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 391.518774 109.509597 \n",
       "L 396.615961 108.488946 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_2\">\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.78125 239.132477 \n",
       "L 48.598986 237.9727 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 48.598986 237.9727 \n",
       "L 52.759506 236.927433 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 52.759506 236.927433 \n",
       "L 57.230521 235.766246 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 57.230521 235.766246 \n",
       "L 61.076364 234.742538 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 61.076364 234.742538 \n",
       "L 65.712803 233.487292 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 65.712803 233.487292 \n",
       "L 70.20019 232.261497 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 70.20019 232.261497 \n",
       "L 75.08555 230.929397 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 75.08555 230.929397 \n",
       "L 79.708937 229.686079 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 79.708937 229.686079 \n",
       "L 83.985841 228.564421 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 83.985841 228.564421 \n",
       "L 89.139856 227.267139 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 89.139856 227.267139 \n",
       "L 93.988037 226.119509 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 93.988037 226.119509 \n",
       "L 99.70129 224.882247 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 99.70129 224.882247 \n",
       "L 105.680425 223.749382 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 105.680425 223.749382 \n",
       "L 111.893142 222.778142 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 111.893142 222.778142 \n",
       "L 116.58066 222.200859 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 116.58066 222.200859 \n",
       "L 122.068919 221.709115 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 122.068919 221.709115 \n",
       "L 126.580381 221.461175 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 126.580381 221.461175 \n",
       "L 131.732302 221.355846 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 131.732302 221.355846 \n",
       "L 136.128558 221.417446 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 136.128558 221.417446 \n",
       "L 141.129356 221.655897 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 141.129356 221.655897 \n",
       "L 146.62142 222.118825 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 146.62142 222.118825 \n",
       "L 152.845733 222.884594 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 152.845733 222.884594 \n",
       "L 157.82423 223.667315 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 157.82423 223.667315 \n",
       "L 163.802399 224.785571 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 163.802399 224.785571 \n",
       "L 170.402983 226.213643 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 170.402983 226.213643 \n",
       "L 176.666765 227.718908 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 176.666765 227.718908 \n",
       "L 182.383509 229.186944 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 182.383509 229.186944 \n",
       "L 187.787122 230.62953 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 187.787122 230.62953 \n",
       "L 194.444029 232.443177 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 194.444029 232.443177 \n",
       "L 201.371899 234.329923 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 201.371899 234.329923 \n",
       "L 206.929698 235.813746 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 206.929698 235.813746 \n",
       "L 212.522798 237.258634 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 212.522798 237.258634 \n",
       "L 217.399743 238.46575 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.399743 238.46575 \n",
       "L 221.938334 239.536495 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.938334 239.536495 \n",
       "L 227.844688 240.844303 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 227.844688 240.844303 \n",
       "L 232.693397 241.839651 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 232.693397 241.839651 \n",
       "L 237.643504 242.779431 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 237.643504 242.779431 \n",
       "L 243.633411 243.811307 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 243.633411 243.811307 \n",
       "L 250.319384 244.82746 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 250.319384 244.82746 \n",
       "L 256.326463 245.622016 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 256.326463 245.622016 \n",
       "L 263.934588 246.476786 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 263.934588 246.476786 \n",
       "L 270.187683 247.06252 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 270.187683 247.06252 \n",
       "L 275.865044 247.511884 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 275.865044 247.511884 \n",
       "L 282.02211 247.919913 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 282.02211 247.919913 \n",
       "L 288.783164 248.284601 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 288.783164 248.284601 \n",
       "L 295.590854 248.576391 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 295.590854 248.576391 \n",
       "L 301.361927 248.773739 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 301.361927 248.773739 \n",
       "L 307.248969 248.935433 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 307.248969 248.935433 \n",
       "L 312.482579 249.050942 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 312.482579 249.050942 \n",
       "L 318.063755 249.149729 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 318.063755 249.149729 \n",
       "L 324.456358 249.237526 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 324.456358 249.237526 \n",
       "L 331.055183 249.30553 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 331.055183 249.30553 \n",
       "L 337.356825 249.353759 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 337.356825 249.353759 \n",
       "L 342.673397 249.384552 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 342.673397 249.384552 \n",
       "L 349.12956 249.412536 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 349.12956 249.412536 \n",
       "L 355.947854 249.433588 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 355.947854 249.433588 \n",
       "L 361.740312 249.446376 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 361.740312 249.446376 \n",
       "L 366.592829 249.454378 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 366.592829 249.454378 \n",
       "L 370.812746 249.459773 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 370.812746 249.459773 \n",
       "L 375.589003 249.464496 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 375.589003 249.464496 \n",
       "L 381.481405 249.468767 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 381.481405 249.468767 \n",
       "L 386.435509 249.471356 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 386.435509 249.471356 \n",
       "L 391.357324 249.473256 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 391.357324 249.473256 \n",
       "L 396.615961 249.474731 \n",
       "\" style=\"fill:none;stroke:#ff0000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_3\">\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.78125 249.478201 \n",
       "L 49.45484 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 49.45484 249.478201 \n",
       "L 55.154821 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 55.154821 249.478201 \n",
       "L 61.917033 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 61.917033 249.478201 \n",
       "L 68.859346 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 68.859346 249.478201 \n",
       "L 74.276728 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 74.276728 249.478201 \n",
       "L 80.75497 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 80.75497 249.478201 \n",
       "L 86.271806 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 86.271806 249.478201 \n",
       "L 91.848157 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 91.848157 249.478201 \n",
       "L 97.30882 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 97.30882 249.478201 \n",
       "L 103.798039 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 103.798039 249.478201 \n",
       "L 109.130948 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 109.130948 249.478201 \n",
       "L 114.894243 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 114.894243 249.478201 \n",
       "L 121.664077 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 121.664077 249.478201 \n",
       "L 127.464532 249.478199 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 127.464532 249.478199 \n",
       "L 133.271756 249.478181 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 133.271756 249.478181 \n",
       "L 138.960115 249.478058 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 138.960115 249.478058 \n",
       "L 145.621433 249.476987 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 145.621433 249.476987 \n",
       "L 151.887496 249.47055 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 151.887496 249.47055 \n",
       "L 158.021681 249.438522 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 158.021681 249.438522 \n",
       "L 165.00486 249.264141 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 165.00486 249.264141 \n",
       "L 167.859448 249.075788 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 167.859448 249.075788 \n",
       "L 170.398966 248.792211 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 170.398966 248.792211 \n",
       "L 171.793621 248.569057 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 171.793621 248.569057 \n",
       "L 172.949712 248.336922 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 172.949712 248.336922 \n",
       "L 174.481092 247.948755 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 174.481092 247.948755 \n",
       "L 175.990123 247.456468 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 175.990123 247.456468 \n",
       "L 177.166018 246.981654 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 177.166018 246.981654 \n",
       "L 178.23918 246.46661 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 178.23918 246.46661 \n",
       "L 179.536457 245.724003 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 179.536457 245.724003 \n",
       "L 180.742573 244.898729 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 180.742573 244.898729 \n",
       "L 181.463112 244.336218 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 181.463112 244.336218 \n",
       "L 182.250576 243.656383 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 182.250576 243.656383 \n",
       "L 183.682474 242.229144 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 183.682474 242.229144 \n",
       "L 184.934124 240.758172 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 184.934124 240.758172 \n",
       "L 186.418451 238.712476 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 186.418451 238.712476 \n",
       "L 187.656495 236.732244 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 187.656495 236.732244 \n",
       "L 188.697304 234.859752 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 188.697304 234.859752 \n",
       "L 190.823314 230.402295 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 190.823314 230.402295 \n",
       "L 193.061628 224.735304 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 193.061628 224.735304 \n",
       "L 195.573182 217.152179 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 195.573182 217.152179 \n",
       "L 201.168592 196.058605 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 201.168592 196.058605 \n",
       "L 206.564349 172.724128 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 206.564349 172.724128 \n",
       "L 211.434712 153.422531 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 211.434712 153.422531 \n",
       "L 213.756518 146.189486 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 213.756518 146.189486 \n",
       "L 214.790607 143.553685 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 214.790607 143.553685 \n",
       "L 215.984891 141.020919 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 215.984891 141.020919 \n",
       "L 216.64797 139.866595 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 216.64797 139.866595 \n",
       "L 217.337285 138.865818 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.337285 138.865818 \n",
       "L 217.70264 138.419715 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 217.70264 138.419715 \n",
       "L 218.035444 138.065037 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.035444 138.065037 \n",
       "L 218.367959 137.76037 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.367959 137.76037 \n",
       "L 218.563271 137.604745 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.563271 137.604745 \n",
       "L 218.747294 137.473997 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.747294 137.473997 \n",
       "L 218.931565 137.358567 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 218.931565 137.358567 \n",
       "L 219.128853 137.252225 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.128853 137.252225 \n",
       "L 219.330192 137.162133 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.330192 137.162133 \n",
       "L 219.430312 137.12428 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.430312 137.12428 \n",
       "L 219.526335 137.092316 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.526335 137.092316 \n",
       "L 219.618415 137.065661 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.618415 137.065661 \n",
       "L 219.703316 137.044552 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.703316 137.044552 \n",
       "L 219.805561 137.02355 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.805561 137.02355 \n",
       "L 219.913 137.006688 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.913 137.006688 \n",
       "L 219.995291 136.997382 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.995291 136.997382 \n",
       "L 220.088033 136.990649 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.088033 136.990649 \n",
       "L 220.192842 136.987828 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.192842 136.987828 \n",
       "L 220.298399 136.990124 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.298399 136.990124 \n",
       "L 220.391326 136.996412 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.391326 136.996412 \n",
       "L 220.469065 137.00474 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.469065 137.00474 \n",
       "L 220.555631 137.017302 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.555631 137.017302 \n",
       "L 220.652662 137.035501 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.652662 137.035501 \n",
       "L 220.745263 137.056926 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.745263 137.056926 \n",
       "L 220.831198 137.08035 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.831198 137.08035 \n",
       "L 220.916149 137.106857 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 220.916149 137.106857 \n",
       "L 221.014776 137.141805 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.014776 137.141805 \n",
       "L 221.180955 137.210826 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.180955 137.210826 \n",
       "L 221.37643 137.308267 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.37643 137.308267 \n",
       "L 221.553624 137.41174 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.553624 137.41174 \n",
       "L 221.76217 137.551917 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.76217 137.551917 \n",
       "L 221.945584 137.691583 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 221.945584 137.691583 \n",
       "L 222.101792 137.822576 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.101792 137.822576 \n",
       "L 222.415362 138.118804 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.415362 138.118804 \n",
       "L 222.759041 138.494137 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 222.759041 138.494137 \n",
       "L 223.056966 138.861968 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 223.056966 138.861968 \n",
       "L 223.419329 139.361904 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 223.419329 139.361904 \n",
       "L 223.772976 139.904706 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 223.772976 139.904706 \n",
       "L 224.449014 141.090165 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 224.449014 141.090165 \n",
       "L 225.792551 143.998356 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 225.792551 143.998356 \n",
       "L 227.182823 147.723977 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 227.182823 147.723977 \n",
       "L 232.376512 166.55558 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 232.376512 166.55558 \n",
       "L 236.9329 186.233331 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 236.9329 186.233331 \n",
       "L 242.301237 208.28448 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 242.301237 208.28448 \n",
       "L 247.644529 225.578599 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 247.644529 225.578599 \n",
       "L 250.412891 232.266006 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 250.412891 232.266006 \n",
       "L 252.957855 237.098525 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 252.957855 237.098525 \n",
       "L 254.325748 239.221682 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 254.325748 239.221682 \n",
       "L 255.78424 241.156781 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 255.78424 241.156781 \n",
       "L 256.624078 242.129897 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 256.624078 242.129897 \n",
       "L 257.512876 243.056412 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 257.512876 243.056412 \n",
       "L 258.345007 243.83432 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 258.345007 243.83432 \n",
       "L 259.20883 244.557177 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 259.20883 244.557177 \n",
       "L 259.93049 245.099883 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 259.93049 245.099883 \n",
       "L 260.616383 245.567884 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 260.616383 245.567884 \n",
       "L 261.84823 246.301851 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 261.84823 246.301851 \n",
       "L 262.977419 246.867317 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 262.977419 246.867317 \n",
       "L 264.175836 247.369884 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 264.175836 247.369884 \n",
       "L 265.401688 247.794346 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 265.401688 247.794346 \n",
       "L 266.751414 248.172922 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 266.751414 248.172922 \n",
       "L 268.018423 248.457452 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 268.018423 248.457452 \n",
       "L 269.319784 248.690694 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 269.319784 248.690694 \n",
       "L 271.438306 248.969603 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 271.438306 248.969603 \n",
       "L 273.258546 249.133989 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 273.258546 249.133989 \n",
       "L 277.820395 249.356328 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 277.820395 249.356328 \n",
       "L 281.926759 249.433715 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 281.926759 249.433715 \n",
       "L 286.423673 249.464575 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 286.423673 249.464575 \n",
       "L 290.819288 249.474246 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 290.819288 249.474246 \n",
       "L 295.199067 249.477136 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 295.199067 249.477136 \n",
       "L 299.797166 249.477954 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 299.797166 249.477954 \n",
       "L 304.134431 249.478144 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 304.134431 249.478144 \n",
       "L 311.234774 249.478197 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 311.234774 249.478197 \n",
       "L 318.043078 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 318.043078 249.478201 \n",
       "L 324.326549 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 324.326549 249.478201 \n",
       "L 329.645132 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 329.645132 249.478201 \n",
       "L 336.098107 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 336.098107 249.478201 \n",
       "L 341.971303 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 341.971303 249.478201 \n",
       "L 348.083581 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 348.083581 249.478201 \n",
       "L 353.352187 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 353.352187 249.478201 \n",
       "L 358.612687 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 358.612687 249.478201 \n",
       "L 363.387089 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 363.387089 249.478201 \n",
       "L 368.676576 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 368.676576 249.478201 \n",
       "L 374.486309 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 374.486309 249.478201 \n",
       "L 379.797871 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 379.797871 249.478201 \n",
       "L 385.797352 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 385.797352 249.478201 \n",
       "L 390.957311 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 390.957311 249.478201 \n",
       "L 396.615961 249.478201 \n",
       "\" style=\"fill:none;stroke:#0000ff;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"LineCollection_4\">\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.78125 249.478201 \n",
       "L 43.948658 246.407212 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 43.948658 246.407212 \n",
       "L 44.143105 244.963209 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 44.143105 244.963209 \n",
       "L 44.527516 242.994299 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 44.527516 242.994299 \n",
       "L 45.279036 240.292454 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 45.279036 240.292454 \n",
       "L 46.155322 237.913441 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 46.155322 237.913441 \n",
       "L 47.042943 235.922835 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 47.042943 235.922835 \n",
       "L 48.742668 232.759883 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 48.742668 232.759883 \n",
       "L 50.392984 230.178643 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 50.392984 230.178643 \n",
       "L 52.198747 227.702048 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 52.198747 227.702048 \n",
       "L 53.705047 225.833785 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 53.705047 225.833785 \n",
       "L 56.646423 222.55681 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 56.646423 222.55681 \n",
       "L 60.190015 219.074418 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 60.190015 219.074418 \n",
       "L 63.264022 216.348689 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 63.264022 216.348689 \n",
       "L 68.769059 211.958985 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 68.769059 211.958985 \n",
       "L 74.464352 207.902527 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 74.464352 207.902527 \n",
       "L 79.145963 204.843283 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 79.145963 204.843283 \n",
       "L 84.437452 201.620363 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 84.437452 201.620363 \n",
       "L 89.261449 198.860682 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 89.261449 198.860682 \n",
       "L 94.467382 196.042163 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 94.467382 196.042163 \n",
       "L 100.611674 192.895963 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 100.611674 192.895963 \n",
       "L 106.467685 190.052206 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 106.467685 190.052206 \n",
       "L 113.106768 186.984502 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 113.106768 186.984502 \n",
       "L 119.795281 184.039216 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 119.795281 184.039216 \n",
       "L 125.364076 181.684547 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 125.364076 181.684547 \n",
       "L 130.329105 179.652095 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 130.329105 179.652095 \n",
       "L 135.858818 177.455966 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 135.858818 177.455966 \n",
       "L 141.044578 175.455618 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 141.044578 175.455618 \n",
       "L 146.787964 173.301451 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 146.787964 173.301451 \n",
       "L 153.386784 170.899307 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 153.386784 170.899307 \n",
       "L 159.733803 168.656157 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 159.733803 168.656157 \n",
       "L 165.209192 166.769921 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 165.209192 166.769921 \n",
       "L 171.103768 164.786222 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 171.103768 164.786222 \n",
       "L 175.70615 163.269111 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 175.70615 163.269111 \n",
       "L 180.946301 161.57364 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 180.946301 161.57364 \n",
       "L 185.970312 159.978256 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 185.970312 159.978256 \n",
       "L 190.511676 158.560224 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 190.511676 158.560224 \n",
       "L 196.181801 156.820197 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 196.181801 156.820197 \n",
       "L 202.197419 155.009178 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 202.197419 155.009178 \n",
       "L 208.220925 153.229921 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 208.220925 153.229921 \n",
       "L 214.035773 151.542959 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 214.035773 151.542959 \n",
       "L 219.442221 150.00014 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 219.442221 150.00014 \n",
       "L 225.700234 148.243668 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 225.700234 148.243668 \n",
       "L 231.260144 146.708318 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 231.260144 146.708318 \n",
       "L 236.528549 145.274337 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 236.528549 145.274337 \n",
       "L 242.804003 143.591593 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 242.804003 143.591593 \n",
       "L 249.121916 141.924055 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 249.121916 141.924055 \n",
       "L 254.174645 140.608827 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 254.174645 140.608827 \n",
       "L 258.391301 139.523272 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 258.391301 139.523272 \n",
       "L 263.78989 138.148885 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 263.78989 138.148885 \n",
       "L 268.305365 137.012222 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 268.305365 137.012222 \n",
       "L 273.220677 135.787826 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 273.220677 135.787826 \n",
       "L 277.965231 134.618346 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 277.965231 134.618346 \n",
       "L 283.011454 133.387435 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 283.011454 133.387435 \n",
       "L 288.850114 131.979317 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 288.850114 131.979317 \n",
       "L 294.194366 130.705069 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 294.194366 130.705069 \n",
       "L 300.091338 129.314714 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 300.091338 129.314714 \n",
       "L 304.794264 128.21731 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 304.794264 128.21731 \n",
       "L 309.389247 127.154603 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 309.389247 127.154603 \n",
       "L 314.05567 126.08474 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 314.05567 126.08474 \n",
       "L 318.503268 125.07361 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 318.503268 125.07361 \n",
       "L 323.788143 123.882714 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 323.788143 123.882714 \n",
       "L 328.795807 122.764611 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 328.795807 122.764611 \n",
       "L 334.960686 121.401532 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 334.960686 121.401532 \n",
       "L 341.075386 120.063729 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 341.075386 120.063729 \n",
       "L 347.172444 118.743416 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 347.172444 118.743416 \n",
       "L 352.221669 117.66002 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 352.221669 117.66002 \n",
       "L 357.824692 116.468126 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 357.824692 116.468126 \n",
       "L 364.488648 115.064307 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 364.488648 115.064307 \n",
       "L 369.93476 113.927833 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 369.93476 113.927833 \n",
       "L 375.023308 112.874518 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 375.023308 112.874518 \n",
       "L 379.565006 111.941211 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 379.565006 111.941211 \n",
       "L 384.973367 110.838004 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 384.973367 110.838004 \n",
       "L 391.079846 109.602851 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "    <path clip-path=\"url(#pf2991ab8eb)\" d=\"M 391.079846 109.602851 \n",
       "L 396.615961 108.492417 \n",
       "\" style=\"fill:none;stroke:#008000;stroke-width:1.5;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path d=\"M 43.78125 260.60473 \n",
       "L 43.78125 15.821094 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path d=\"M 414.257696 260.60473 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path d=\"M 26.139514 249.478201 \n",
       "L 414.257696 249.478201 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path d=\"M 26.139514 15.821094 \n",
       "L 414.257696 15.821094 \n",
       "\" style=\"fill:none;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"pf2991ab8eb\">\n",
       "   <rect height=\"244.783636\" width=\"388.118182\" x=\"26.139514\" y=\"15.821094\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "model.dynamics[sp.Symbol(R\"\\mathrm{dyn}_3\")] = sp.sqrt(x)\n",
    "plot_model(model)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Implementation in TensorWaves"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Credits [@spflueger](https://github.com/spflueger)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "jupyter": {
     "source_hidden": true
    },
    "tags": [
     "hide-cell",
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "# !pip install jax==0.2.8 jaxlib==0.1.59 numpy==1.19.5 tensorflow==2.4.0"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 1. Create a double gaussian amp with SymPy"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "When building the model, we should be careful to pass the parameters as arguments as well, otherwise frameworks like jax can't determine the gradient."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\frac{0.398942280401433 A_{1} e^{- \\frac{\\left(- \\mu_{1} + x\\right)^{2}}{2 \\sigma_{1}}}}{\\sigma_{1}} + \\frac{0.398942280401433 A_{2} e^{- \\frac{\\left(- \\mu_{2} + x\\right)^{2}}{2 \\sigma_{2}}}}{\\sigma_{2}}$"
      ],
      "text/plain": [
       "0.398942280401433*A1*exp(-(-mu1 + x)**2/(2*sigma1))/sigma1 + 0.398942280401433*A2*exp(-(-mu2 + x)**2/(2*sigma2))/sigma2"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "import math\n",
    "\n",
    "import sympy as sp\n",
    "\n",
    "x, A1, mu1, sigma1, A2, mu2, sigma2 = sp.symbols(\n",
    "    \"x, A1, mu1, sigma1, A2, mu2, sigma2\"\n",
    ")\n",
    "gaussian1 = (\n",
    "    A1\n",
    "    / (sigma1 * sp.sqrt(2.0 * math.pi))\n",
    "    * sp.exp(-((x - mu1) ** 2) / (2 * sigma1))\n",
    ")\n",
    "gaussian2 = (\n",
    "    A2\n",
    "    / (sigma2 * sp.sqrt(2.0 * math.pi))\n",
    "    * sp.exp(-((x - mu2) ** 2) / (2 * sigma2))\n",
    ")\n",
    "\n",
    "gauss_sum = gaussian1 + gaussian2\n",
    "gauss_sum"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 2. Convert this expression to a function using `lambdify`"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "[TensorFlow](https://www.tensorflow.org) as backend:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "def _lambdifygenerated(x, A1, mu1, sigma1, A2, mu2, sigma2):\n",
      "    return (0.398942280401433*A1*exp(-1/2*pow(-mu1 + x, 2)/sigma1)/sigma1 + 0.398942280401433*A2*exp(-1/2*pow(-mu2 + x, 2)/sigma2)/sigma2)\n",
      "\n"
     ]
    }
   ],
   "source": [
    "import inspect\n",
    "\n",
    "tf_gauss_sum = sp.lambdify(\n",
    "    (x, A1, mu1, sigma1, A2, mu2, sigma2), gauss_sum, \"tensorflow\"\n",
    ")\n",
    "print(inspect.getsource(tf_gauss_sum))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "[NumPy](https://numpy.org) as backend:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "def _lambdifygenerated(x, A1, mu1, sigma1, A2, mu2, sigma2):\n",
      "    return (0.398942280401433*A1*exp(-1/2*(-mu1 + x)**2/sigma1)/sigma1 + 0.398942280401433*A2*exp(-1/2*(-mu2 + x)**2/sigma2)/sigma2)\n",
      "\n"
     ]
    }
   ],
   "source": [
    "numpy_gauss_sum = sp.lambdify(\n",
    "    (x, A1, mu1, sigma1, A2, mu2, sigma2), gauss_sum, \"numpy\"\n",
    ")\n",
    "print(inspect.getsource(numpy_gauss_sum))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "[Jax](https://github.com/google/jax) as backend:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "def _lambdifygenerated(x, A1, mu1, sigma1, A2, mu2, sigma2):\n",
      "    return (0.398942280401433*A1*exp(-1/2*(-mu1 + x)**2/sigma1)/sigma1 + 0.398942280401433*A2*exp(-1/2*(-mu2 + x)**2/sigma2)/sigma2)\n",
      "\n"
     ]
    }
   ],
   "source": [
    "from jax import numpy as jnp\n",
    "from jax import scipy as jsp\n",
    "\n",
    "jax_gauss_sum = sp.lambdify(\n",
    "    (x, A1, mu1, sigma1, A2, mu2, sigma2),\n",
    "    gauss_sum,\n",
    "    modules=(jnp, jsp.special),\n",
    ")\n",
    "print(inspect.getsource(jax_gauss_sum))"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 3. Natively create the respective packages"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "import math\n",
    "\n",
    "import tensorflow as tf\n",
    "\n",
    "\n",
    "def gaussian(x, A, mu, sigma):\n",
    "    return (\n",
    "        A\n",
    "        / (sigma * tf.sqrt(tf.constant(2.0, dtype=tf.float64) * math.pi))\n",
    "        * tf.exp(\n",
    "            -tf.pow(-tf.constant(0.5, dtype=tf.float64) * (x - mu) / sigma, 2)\n",
    "        )\n",
    "    )\n",
    "\n",
    "\n",
    "def native_tf_gauss_sum(x_, A1_, mu1_, sigma1_, A2_, mu2_, sigma2_):\n",
    "    return gaussian(x_, A1_, mu1_, sigma1_) + gaussian(x_, A2_, mu2_, sigma2_)\n",
    "\n",
    "\n",
    "# @jx.pmap\n",
    "def jax_gaussian(x, A, mu, sigma):\n",
    "    return (\n",
    "        A\n",
    "        / (sigma * jnp.sqrt(2.0 * math.pi))\n",
    "        * jnp.exp(-((-0.5 * (x - mu) / sigma) ** 2))\n",
    "    )\n",
    "\n",
    "\n",
    "def native_jax_gauss_sum(x_, A1_, mu1_, sigma1_, A2_, mu2_, sigma2_):\n",
    "    return jax_gaussian(x_, A1_, mu1_, sigma1_) + jax_gaussian(\n",
    "        x_, A2_, mu2_, sigma2_\n",
    "    )"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 4. Compare performance"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [],
   "source": [
    "import numpy as np\n",
    "\n",
    "parameter_values = (1.0, 0.0, 0.1, 2.0, 2.0, 0.2)\n",
    "np_x = np.random.uniform(-1, 3, 10000)\n",
    "tf_x = tf.constant(np_x)\n",
    "\n",
    "\n",
    "def evaluate_with_parameters(function):\n",
    "    def wrapper():\n",
    "        return function(np_x, *(parameter_values))\n",
    "\n",
    "    return wrapper\n",
    "\n",
    "\n",
    "def call_native_tf():\n",
    "    func = native_tf_gauss_sum\n",
    "    params = tuple(tf.Variable(v, dtype=tf.float64) for v in parameter_values)\n",
    "\n",
    "    def wrapper():\n",
    "        return func(tf_x, *params)\n",
    "\n",
    "    return wrapper"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "WARNING:absl:No GPU/TPU found, falling back to CPU. (Set TF_CPP_MIN_LOG_LEVEL=0 and rerun for more info.)\n"
     ]
    },
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "sympy tf lambdify 0.0923923499999546\n",
      "sympy numpy lambdify 0.021591910000097414\n",
      "sympy jax lambdify 0.15498641800013502\n",
      "native tf 0.1038757030000852\n",
      "native jax 0.19923505700012356\n"
     ]
    }
   ],
   "source": [
    "import timeit\n",
    "\n",
    "from jax.config import config\n",
    "\n",
    "config.update(\"jax_enable_x64\", True)\n",
    "\n",
    "print(\n",
    "    \"sympy tf lambdify\",\n",
    "    timeit.timeit(evaluate_with_parameters(tf_gauss_sum), number=100),\n",
    ")\n",
    "print(\n",
    "    \"sympy numpy lambdify\",\n",
    "    timeit.timeit(evaluate_with_parameters(numpy_gauss_sum), number=100),\n",
    ")\n",
    "print(\n",
    "    \"sympy jax lambdify\",\n",
    "    timeit.timeit(evaluate_with_parameters(jax_gauss_sum), number=100),\n",
    ")\n",
    "print(\"native tf\", timeit.timeit(call_native_tf(), number=100))\n",
    "\n",
    "print(\n",
    "    \"native jax\",\n",
    "    timeit.timeit(evaluate_with_parameters(native_jax_gauss_sum), number=100),\n",
    ")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 5. Handling parameters"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Some options:\n",
    "\n",
    "#### 5.1 Changing parameter values\n",
    "\n",
    "Can be done in the model itself...\n",
    "\n",
    "But how can the values be propagated to the `AmplitudeModel`?\n",
    "\n",
    "Well, if an amplitude model only defines parameters with a name and the values are supplied in the function evaluation, then everything is decoupled and there are no problems.\n",
    "\n",
    "#### 5.2 Changing parameter names\n",
    "\n",
    "Names can be changed in the sympy `AmplitudeModel`. Since this sympy model serves as the source of truth for the `Function`, all things generated from this model will reflect the name changes as well.\n",
    "\n",
    "But going even further, since the Parameters are passed into the functions as arguments, the whole naming becomes irrelevant anyways.\n",
    "\n",
    "`tf_var_A1 = tf.Variable(1.0, dtype=tf.float64)`  <- does not carry a name!!\n",
    "\n",
    "#### 5.3 Coupling parameters\n",
    "This means that one parameter is just assigned to another one?"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "DeviceArray([2.8856688 , 1.81293941, 0.8762776 , ..., 1.57889689,\n",
       "             3.45055759, 3.30175027], dtype=float64)"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "result = evaluate_with_parameters(jax_gauss_sum)()\n",
    "result"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "array([1.64006008, 1.43829976, 2.77864469, ..., 1.39104059, 2.24092382,\n",
       "       1.72490419])"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "np_x"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"251.369507pt\" version=\"1.1\" viewBox=\"0 0 375.2875 251.369507\" width=\"375.2875pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:29.505627</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 251.369507 \n",
       "L 375.2875 251.369507 \n",
       "L 375.2875 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 33.2875 227.491382 \n",
       "L 368.0875 227.491382 \n",
       "L 368.0875 10.051382 \n",
       "L 33.2875 10.051382 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 48.505682 227.491382 \n",
       "L 51.549318 227.491382 \n",
       "L 51.549318 226.123429 \n",
       "L 48.505682 226.123429 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 51.549318 227.491382 \n",
       "L 54.592955 227.491382 \n",
       "L 54.592955 225.702408 \n",
       "L 51.549318 225.702408 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 54.592955 227.491382 \n",
       "L 57.636591 227.491382 \n",
       "L 57.636591 224.537524 \n",
       "L 54.592955 224.537524 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 57.636591 227.491382 \n",
       "L 60.680227 227.491382 \n",
       "L 60.680227 224.041236 \n",
       "L 57.636591 224.041236 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_7\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 60.680227 227.491382 \n",
       "L 63.723864 227.491382 \n",
       "L 63.723864 220.899873 \n",
       "L 60.680227 220.899873 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_8\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 63.723864 227.491382 \n",
       "L 66.7675 227.491382 \n",
       "L 66.7675 219.589401 \n",
       "L 63.723864 219.589401 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_9\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 66.7675 227.491382 \n",
       "L 69.811136 227.491382 \n",
       "L 69.811136 215.153642 \n",
       "L 66.7675 215.153642 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_10\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 69.811136 227.491382 \n",
       "L 72.854773 227.491382 \n",
       "L 72.854773 214.017039 \n",
       "L 69.811136 214.017039 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_11\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 72.854773 227.491382 \n",
       "L 75.898409 227.491382 \n",
       "L 75.898409 207.148902 \n",
       "L 72.854773 207.148902 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_12\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 75.898409 227.491382 \n",
       "L 78.942045 227.491382 \n",
       "L 78.942045 200.082085 \n",
       "L 75.898409 200.082085 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_13\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 78.942045 227.491382 \n",
       "L 81.985682 227.491382 \n",
       "L 81.985682 193.227225 \n",
       "L 78.942045 193.227225 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_14\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 81.985682 227.491382 \n",
       "L 85.029318 227.491382 \n",
       "L 85.029318 184.459125 \n",
       "L 81.985682 184.459125 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_15\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 85.029318 227.491382 \n",
       "L 88.072955 227.491382 \n",
       "L 88.072955 173.270341 \n",
       "L 85.029318 173.270341 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_16\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 88.072955 227.491382 \n",
       "L 91.116591 227.491382 \n",
       "L 91.116591 163.086988 \n",
       "L 88.072955 163.086988 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_17\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 91.116591 227.491382 \n",
       "L 94.160227 227.491382 \n",
       "L 94.160227 153.551023 \n",
       "L 91.116591 153.551023 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_18\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 94.160227 227.491382 \n",
       "L 97.203864 227.491382 \n",
       "L 97.203864 145.033122 \n",
       "L 94.160227 145.033122 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_19\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 97.203864 227.491382 \n",
       "L 100.2475 227.491382 \n",
       "L 100.2475 128.348449 \n",
       "L 97.203864 128.348449 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_20\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 100.2475 227.491382 \n",
       "L 103.291136 227.491382 \n",
       "L 103.291136 123.461191 \n",
       "L 100.2475 123.461191 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_21\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 103.291136 227.491382 \n",
       "L 106.334773 227.491382 \n",
       "L 106.334773 91.612548 \n",
       "L 103.291136 91.612548 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_22\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 106.334773 227.491382 \n",
       "L 109.378409 227.491382 \n",
       "L 109.378409 107.903386 \n",
       "L 106.334773 107.903386 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_23\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 109.378409 227.491382 \n",
       "L 112.422045 227.491382 \n",
       "L 112.422045 95.093658 \n",
       "L 109.378409 95.093658 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_24\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 112.422045 227.491382 \n",
       "L 115.465682 227.491382 \n",
       "L 115.465682 77.124898 \n",
       "L 112.422045 77.124898 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_25\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 115.465682 227.491382 \n",
       "L 118.509318 227.491382 \n",
       "L 118.509318 40.578497 \n",
       "L 115.465682 40.578497 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_26\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 118.509318 227.491382 \n",
       "L 121.552955 227.491382 \n",
       "L 121.552955 39.079952 \n",
       "L 118.509318 39.079952 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_27\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 121.552955 227.491382 \n",
       "L 124.596591 227.491382 \n",
       "L 124.596591 46.605225 \n",
       "L 121.552955 46.605225 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_28\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 124.596591 227.491382 \n",
       "L 127.640227 227.491382 \n",
       "L 127.640227 56.925911 \n",
       "L 124.596591 56.925911 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_29\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 127.640227 227.491382 \n",
       "L 130.683864 227.491382 \n",
       "L 130.683864 42.689661 \n",
       "L 127.640227 42.689661 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_30\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 130.683864 227.491382 \n",
       "L 133.7275 227.491382 \n",
       "L 133.7275 71.441374 \n",
       "L 130.683864 71.441374 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_31\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 133.7275 227.491382 \n",
       "L 136.771136 227.491382 \n",
       "L 136.771136 84.924639 \n",
       "L 133.7275 84.924639 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_32\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 136.771136 227.491382 \n",
       "L 139.814773 227.491382 \n",
       "L 139.814773 100.049203 \n",
       "L 136.771136 100.049203 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_33\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 139.814773 227.491382 \n",
       "L 142.858409 227.491382 \n",
       "L 142.858409 97.656505 \n",
       "L 139.814773 97.656505 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_34\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 142.858409 227.491382 \n",
       "L 145.902045 227.491382 \n",
       "L 145.902045 119.768311 \n",
       "L 142.858409 119.768311 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_35\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 145.902045 227.491382 \n",
       "L 148.945682 227.491382 \n",
       "L 148.945682 123.776938 \n",
       "L 145.902045 123.776938 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_36\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 148.945682 227.491382 \n",
       "L 151.989318 227.491382 \n",
       "L 151.989318 146.323287 \n",
       "L 148.945682 146.323287 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_37\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 151.989318 227.491382 \n",
       "L 155.032955 227.491382 \n",
       "L 155.032955 150.656801 \n",
       "L 151.989318 150.656801 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_38\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 155.032955 227.491382 \n",
       "L 158.076591 227.491382 \n",
       "L 158.076591 148.960597 \n",
       "L 155.032955 148.960597 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_39\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 158.076591 227.491382 \n",
       "L 161.120227 227.491382 \n",
       "L 161.120227 172.556321 \n",
       "L 158.076591 172.556321 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_40\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 161.120227 227.491382 \n",
       "L 164.163864 227.491382 \n",
       "L 164.163864 175.761886 \n",
       "L 161.120227 175.761886 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_41\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 164.163864 227.491382 \n",
       "L 167.2075 227.491382 \n",
       "L 167.2075 184.877794 \n",
       "L 164.163864 184.877794 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_42\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 167.2075 227.491382 \n",
       "L 170.251136 227.491382 \n",
       "L 170.251136 188.943576 \n",
       "L 167.2075 188.943576 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_43\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 170.251136 227.491382 \n",
       "L 173.294773 227.491382 \n",
       "L 173.294773 200.425588 \n",
       "L 170.251136 200.425588 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_44\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 173.294773 227.491382 \n",
       "L 176.338409 227.491382 \n",
       "L 176.338409 202.611842 \n",
       "L 173.294773 202.611842 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_45\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 176.338409 227.491382 \n",
       "L 179.382045 227.491382 \n",
       "L 179.382045 211.609626 \n",
       "L 176.338409 211.609626 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_46\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 179.382045 227.491382 \n",
       "L 182.425682 227.491382 \n",
       "L 182.425682 210.220903 \n",
       "L 179.382045 210.220903 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_47\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 182.425682 227.491382 \n",
       "L 185.469318 227.491382 \n",
       "L 185.469318 214.773999 \n",
       "L 182.425682 214.773999 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_48\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 185.469318 227.491382 \n",
       "L 188.512955 227.491382 \n",
       "L 188.512955 217.62977 \n",
       "L 185.469318 217.62977 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_49\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 188.512955 227.491382 \n",
       "L 191.556591 227.491382 \n",
       "L 191.556591 216.699467 \n",
       "L 188.512955 216.699467 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_50\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 191.556591 227.491382 \n",
       "L 194.600227 227.491382 \n",
       "L 194.600227 213.788027 \n",
       "L 191.556591 213.788027 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_51\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 194.600227 227.491382 \n",
       "L 197.643864 227.491382 \n",
       "L 197.643864 215.107043 \n",
       "L 194.600227 215.107043 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_52\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 197.643864 227.491382 \n",
       "L 200.6875 227.491382 \n",
       "L 200.6875 213.047888 \n",
       "L 197.643864 213.047888 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_53\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 200.6875 227.491382 \n",
       "L 203.731136 227.491382 \n",
       "L 203.731136 210.469591 \n",
       "L 200.6875 210.469591 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_54\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 203.731136 227.491382 \n",
       "L 206.774773 227.491382 \n",
       "L 206.774773 209.738416 \n",
       "L 203.731136 209.738416 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_55\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 206.774773 227.491382 \n",
       "L 209.818409 227.491382 \n",
       "L 209.818409 205.71841 \n",
       "L 206.774773 205.71841 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_56\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 209.818409 227.491382 \n",
       "L 212.862045 227.491382 \n",
       "L 212.862045 199.301613 \n",
       "L 209.818409 199.301613 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_57\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 212.862045 227.491382 \n",
       "L 215.905682 227.491382 \n",
       "L 215.905682 192.375192 \n",
       "L 212.862045 192.375192 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_58\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 215.905682 227.491382 \n",
       "L 218.949318 227.491382 \n",
       "L 218.949318 192.376262 \n",
       "L 215.905682 192.376262 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_59\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 218.949318 227.491382 \n",
       "L 221.992955 227.491382 \n",
       "L 221.992955 183.167199 \n",
       "L 218.949318 183.167199 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_60\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 221.992955 227.491382 \n",
       "L 225.036591 227.491382 \n",
       "L 225.036591 172.243591 \n",
       "L 221.992955 172.243591 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_61\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 225.036591 227.491382 \n",
       "L 228.080227 227.491382 \n",
       "L 228.080227 169.035815 \n",
       "L 225.036591 169.035815 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_62\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 228.080227 227.491382 \n",
       "L 231.123864 227.491382 \n",
       "L 231.123864 171.128331 \n",
       "L 228.080227 171.128331 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_63\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 231.123864 227.491382 \n",
       "L 234.1675 227.491382 \n",
       "L 234.1675 154.910038 \n",
       "L 231.123864 154.910038 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_64\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 234.1675 227.491382 \n",
       "L 237.211136 227.491382 \n",
       "L 237.211136 152.504989 \n",
       "L 234.1675 152.504989 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_65\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 237.211136 227.491382 \n",
       "L 240.254773 227.491382 \n",
       "L 240.254773 143.620856 \n",
       "L 237.211136 143.620856 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_66\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 240.254773 227.491382 \n",
       "L 243.298409 227.491382 \n",
       "L 243.298409 143.24328 \n",
       "L 240.254773 143.24328 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_67\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 243.298409 227.491382 \n",
       "L 246.342045 227.491382 \n",
       "L 246.342045 118.844574 \n",
       "L 243.298409 118.844574 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_68\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 246.342045 227.491382 \n",
       "L 249.385682 227.491382 \n",
       "L 249.385682 112.028037 \n",
       "L 246.342045 112.028037 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_69\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 249.385682 227.491382 \n",
       "L 252.429318 227.491382 \n",
       "L 252.429318 75.017465 \n",
       "L 249.385682 75.017465 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_70\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 252.429318 227.491382 \n",
       "L 255.472955 227.491382 \n",
       "L 255.472955 82.520035 \n",
       "L 252.429318 82.520035 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_71\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 255.472955 227.491382 \n",
       "L 258.516591 227.491382 \n",
       "L 258.516591 70.187251 \n",
       "L 255.472955 70.187251 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_72\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 258.516591 227.491382 \n",
       "L 261.560227 227.491382 \n",
       "L 261.560227 91.117695 \n",
       "L 258.516591 91.117695 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_73\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 261.560227 227.491382 \n",
       "L 264.603864 227.491382 \n",
       "L 264.603864 50.650613 \n",
       "L 261.560227 50.650613 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_74\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 264.603864 227.491382 \n",
       "L 267.6475 227.491382 \n",
       "L 267.6475 56.321877 \n",
       "L 264.603864 56.321877 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_75\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 267.6475 227.491382 \n",
       "L 270.691136 227.491382 \n",
       "L 270.691136 28.766017 \n",
       "L 267.6475 28.766017 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_76\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 270.691136 227.491382 \n",
       "L 273.734773 227.491382 \n",
       "L 273.734773 20.405667 \n",
       "L 270.691136 20.405667 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_77\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 273.734773 227.491382 \n",
       "L 276.778409 227.491382 \n",
       "L 276.778409 44.60325 \n",
       "L 273.734773 44.60325 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_78\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 276.778409 227.491382 \n",
       "L 279.822045 227.491382 \n",
       "L 279.822045 79.146212 \n",
       "L 276.778409 79.146212 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_79\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 279.822045 227.491382 \n",
       "L 282.865682 227.491382 \n",
       "L 282.865682 44.465817 \n",
       "L 279.822045 44.465817 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_80\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 282.865682 227.491382 \n",
       "L 285.909318 227.491382 \n",
       "L 285.909318 80.918055 \n",
       "L 282.865682 80.918055 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_81\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 285.909318 227.491382 \n",
       "L 288.952955 227.491382 \n",
       "L 288.952955 53.39361 \n",
       "L 285.909318 53.39361 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_82\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 288.952955 227.491382 \n",
       "L 291.996591 227.491382 \n",
       "L 291.996591 95.607237 \n",
       "L 288.952955 95.607237 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_83\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 291.996591 227.491382 \n",
       "L 295.040227 227.491382 \n",
       "L 295.040227 91.411748 \n",
       "L 291.996591 91.411748 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_84\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 295.040227 227.491382 \n",
       "L 298.083864 227.491382 \n",
       "L 298.083864 93.136284 \n",
       "L 295.040227 93.136284 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_85\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 298.083864 227.491382 \n",
       "L 301.1275 227.491382 \n",
       "L 301.1275 111.289355 \n",
       "L 298.083864 111.289355 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_86\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 301.1275 227.491382 \n",
       "L 304.171136 227.491382 \n",
       "L 304.171136 97.908571 \n",
       "L 301.1275 97.908571 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_87\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 304.171136 227.491382 \n",
       "L 307.214773 227.491382 \n",
       "L 307.214773 108.088015 \n",
       "L 304.171136 108.088015 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_88\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 307.214773 227.491382 \n",
       "L 310.258409 227.491382 \n",
       "L 310.258409 100.365034 \n",
       "L 307.214773 100.365034 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_89\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 310.258409 227.491382 \n",
       "L 313.302045 227.491382 \n",
       "L 313.302045 135.398235 \n",
       "L 310.258409 135.398235 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_90\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 313.302045 227.491382 \n",
       "L 316.345682 227.491382 \n",
       "L 316.345682 136.753543 \n",
       "L 313.302045 136.753543 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_91\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 316.345682 227.491382 \n",
       "L 319.389318 227.491382 \n",
       "L 319.389318 135.96474 \n",
       "L 316.345682 135.96474 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_92\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 319.389318 227.491382 \n",
       "L 322.432955 227.491382 \n",
       "L 322.432955 143.928908 \n",
       "L 319.389318 143.928908 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_93\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 322.432955 227.491382 \n",
       "L 325.476591 227.491382 \n",
       "L 325.476591 150.492977 \n",
       "L 322.432955 150.492977 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_94\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 325.476591 227.491382 \n",
       "L 328.520227 227.491382 \n",
       "L 328.520227 171.164383 \n",
       "L 325.476591 171.164383 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_95\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 328.520227 227.491382 \n",
       "L 331.563864 227.491382 \n",
       "L 331.563864 173.646031 \n",
       "L 328.520227 173.646031 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_96\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 331.563864 227.491382 \n",
       "L 334.6075 227.491382 \n",
       "L 334.6075 178.957596 \n",
       "L 331.563864 178.957596 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_97\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 334.6075 227.491382 \n",
       "L 337.651136 227.491382 \n",
       "L 337.651136 195.012602 \n",
       "L 334.6075 195.012602 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_98\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 337.651136 227.491382 \n",
       "L 340.694773 227.491382 \n",
       "L 340.694773 198.128494 \n",
       "L 337.651136 198.128494 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_99\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 340.694773 227.491382 \n",
       "L 343.738409 227.491382 \n",
       "L 343.738409 200.293654 \n",
       "L 340.694773 200.293654 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_100\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 343.738409 227.491382 \n",
       "L 346.782045 227.491382 \n",
       "L 346.782045 204.487148 \n",
       "L 343.738409 204.487148 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_101\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 346.782045 227.491382 \n",
       "L 349.825682 227.491382 \n",
       "L 349.825682 208.716535 \n",
       "L 346.782045 208.716535 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_102\">\n",
       "    <path clip-path=\"url(#p51bdf0bea6)\" d=\"M 349.825682 227.491382 \n",
       "L 352.869318 227.491382 \n",
       "L 352.869318 210.766048 \n",
       "L 349.825682 210.766048 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"mead0bc3f12\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"48.465748\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- −1.0 -->\n",
       "      <g transform=\"translate(36.324342 242.089819)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.59375 35.5 \n",
       "L 73.1875 35.5 \n",
       "L 73.1875 27.203125 \n",
       "L 10.59375 27.203125 \n",
       "z\n",
       "\" id=\"DejaVuSans-8722\"/>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-8722\"/>\n",
       "       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"86.516241\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- −0.5 -->\n",
       "      <g transform=\"translate(74.374835 242.089819)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-8722\"/>\n",
       "       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"124.566735\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(116.615172 242.089819)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"162.617228\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(154.665665 242.089819)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"200.667721\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(192.716159 242.089819)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"238.718214\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(230.766652 242.089819)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"276.768708\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(268.817145 242.089819)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"314.819201\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(306.867638 242.089819)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"352.869694\" xlink:href=\"#mead0bc3f12\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(344.918131 242.089819)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"mc6b0b56292\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"227.491382\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_10\">\n",
       "      <!-- 0 -->\n",
       "      <g transform=\"translate(19.925 231.2906)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"184.192949\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 100 -->\n",
       "      <g transform=\"translate(7.2 187.992168)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"140.894516\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 200 -->\n",
       "      <g transform=\"translate(7.2 144.693735)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"97.596084\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 300 -->\n",
       "      <g transform=\"translate(7.2 101.395303)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"54.297651\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 400 -->\n",
       "      <g transform=\"translate(7.2 58.09687)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_6\">\n",
       "     <g id=\"line2d_15\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#mc6b0b56292\" y=\"10.999219\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_15\">\n",
       "      <!-- 500 -->\n",
       "      <g transform=\"translate(7.2 14.798437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-53\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"patch_103\">\n",
       "    <path d=\"M 33.2875 227.491382 \n",
       "L 33.2875 10.051382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_104\">\n",
       "    <path d=\"M 368.0875 227.491382 \n",
       "L 368.0875 10.051382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_105\">\n",
       "    <path d=\"M 33.2875 227.491382 \n",
       "L 368.0875 227.491382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_106\">\n",
       "    <path d=\"M 33.2875 10.051382 \n",
       "L 368.0875 10.051382 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"p51bdf0bea6\">\n",
       "   <rect height=\"217.44\" width=\"334.8\" x=\"33.2875\" y=\"10.051382\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "import matplotlib.pyplot as plt\n",
    "\n",
    "plt.hist(np_x, bins=100, weights=result);"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "image/svg+xml": [
       "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n",
       "<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
       "  \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
       "<!-- Created with matplotlib (https://matplotlib.org/) -->\n",
       "<svg height=\"248.518125pt\" version=\"1.1\" viewBox=\"0 0 375.2875 248.518125\" width=\"375.2875pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
       " <metadata>\n",
       "  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n",
       "   <cc:Work>\n",
       "    <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n",
       "    <dc:date>2021-03-23T09:07:29.809335</dc:date>\n",
       "    <dc:format>image/svg+xml</dc:format>\n",
       "    <dc:creator>\n",
       "     <cc:Agent>\n",
       "      <dc:title>Matplotlib v3.3.4, https://matplotlib.org/</dc:title>\n",
       "     </cc:Agent>\n",
       "    </dc:creator>\n",
       "   </cc:Work>\n",
       "  </rdf:RDF>\n",
       " </metadata>\n",
       " <defs>\n",
       "  <style type=\"text/css\">*{stroke-linecap:butt;stroke-linejoin:round;}</style>\n",
       " </defs>\n",
       " <g id=\"figure_1\">\n",
       "  <g id=\"patch_1\">\n",
       "   <path d=\"M 0 248.518125 \n",
       "L 375.2875 248.518125 \n",
       "L 375.2875 0 \n",
       "L 0 0 \n",
       "z\n",
       "\" style=\"fill:none;\"/>\n",
       "  </g>\n",
       "  <g id=\"axes_1\">\n",
       "   <g id=\"patch_2\">\n",
       "    <path d=\"M 33.2875 224.64 \n",
       "L 368.0875 224.64 \n",
       "L 368.0875 7.2 \n",
       "L 33.2875 7.2 \n",
       "z\n",
       "\" style=\"fill:#ffffff;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_3\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 48.505682 224.64 \n",
       "L 51.549318 224.64 \n",
       "L 51.549318 223.949674 \n",
       "L 48.505682 223.949674 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_4\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 51.549318 224.64 \n",
       "L 54.592955 224.64 \n",
       "L 54.592955 223.737209 \n",
       "L 51.549318 223.737209 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_5\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 54.592955 224.64 \n",
       "L 57.636591 224.64 \n",
       "L 57.636591 223.14936 \n",
       "L 54.592955 223.14936 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_6\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 57.636591 224.64 \n",
       "L 60.680227 224.64 \n",
       "L 60.680227 222.898913 \n",
       "L 57.636591 222.898913 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_7\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 60.680227 224.64 \n",
       "L 63.723864 224.64 \n",
       "L 63.723864 221.31365 \n",
       "L 60.680227 221.31365 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_8\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 63.723864 224.64 \n",
       "L 66.7675 224.64 \n",
       "L 66.7675 220.652331 \n",
       "L 63.723864 220.652331 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_9\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 66.7675 224.64 \n",
       "L 69.811136 224.64 \n",
       "L 69.811136 218.413862 \n",
       "L 66.7675 218.413862 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_10\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 69.811136 224.64 \n",
       "L 72.854773 224.64 \n",
       "L 72.854773 217.840285 \n",
       "L 69.811136 217.840285 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_11\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 72.854773 224.64 \n",
       "L 75.898409 224.64 \n",
       "L 75.898409 214.374337 \n",
       "L 72.854773 214.374337 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_12\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 75.898409 224.64 \n",
       "L 78.942045 224.64 \n",
       "L 78.942045 210.808127 \n",
       "L 75.898409 210.808127 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_13\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 78.942045 224.64 \n",
       "L 81.985682 224.64 \n",
       "L 81.985682 207.348881 \n",
       "L 78.942045 207.348881 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_14\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 81.985682 224.64 \n",
       "L 85.029318 224.64 \n",
       "L 85.029318 202.924135 \n",
       "L 81.985682 202.924135 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_15\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 85.029318 224.64 \n",
       "L 88.072955 224.64 \n",
       "L 88.072955 197.277814 \n",
       "L 85.029318 197.277814 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_16\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 88.072955 224.64 \n",
       "L 91.116591 224.64 \n",
       "L 91.116591 192.138877 \n",
       "L 88.072955 192.138877 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_17\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 91.116591 224.64 \n",
       "L 94.160227 224.64 \n",
       "L 94.160227 187.326646 \n",
       "L 91.116591 187.326646 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_18\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 94.160227 224.64 \n",
       "L 97.203864 224.64 \n",
       "L 97.203864 183.028178 \n",
       "L 94.160227 183.028178 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_19\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 97.203864 224.64 \n",
       "L 100.2475 224.64 \n",
       "L 100.2475 174.608437 \n",
       "L 97.203864 174.608437 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_20\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 100.2475 224.64 \n",
       "L 103.291136 224.64 \n",
       "L 103.291136 172.142172 \n",
       "L 100.2475 172.142172 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_21\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 103.291136 224.64 \n",
       "L 106.334773 224.64 \n",
       "L 106.334773 156.070143 \n",
       "L 103.291136 156.070143 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_22\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 106.334773 224.64 \n",
       "L 109.378409 224.64 \n",
       "L 109.378409 164.29125 \n",
       "L 106.334773 164.29125 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_23\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 109.378409 224.64 \n",
       "L 112.422045 224.64 \n",
       "L 112.422045 157.82713 \n",
       "L 109.378409 157.82713 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_24\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 112.422045 224.64 \n",
       "L 115.465682 224.64 \n",
       "L 115.465682 148.759692 \n",
       "L 112.422045 148.759692 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_25\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 115.465682 224.64 \n",
       "L 118.509318 224.64 \n",
       "L 118.509318 130.317554 \n",
       "L 115.465682 130.317554 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_26\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 118.509318 224.64 \n",
       "L 121.552955 224.64 \n",
       "L 121.552955 129.562169 \n",
       "L 118.509318 129.562169 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_27\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 121.552955 224.64 \n",
       "L 124.596591 224.64 \n",
       "L 124.596591 133.360681 \n",
       "L 121.552955 133.360681 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_28\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 124.596591 224.64 \n",
       "L 127.640227 224.64 \n",
       "L 127.640227 138.570342 \n",
       "L 124.596591 138.570342 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_29\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 127.640227 224.64 \n",
       "L 130.683864 224.64 \n",
       "L 130.683864 131.389177 \n",
       "L 127.640227 131.389177 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_30\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 130.683864 224.64 \n",
       "L 133.7275 224.64 \n",
       "L 133.7275 145.900651 \n",
       "L 130.683864 145.900651 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_31\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 133.7275 224.64 \n",
       "L 136.771136 224.64 \n",
       "L 136.771136 152.70878 \n",
       "L 133.7275 152.70878 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_32\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 136.771136 224.64 \n",
       "L 139.814773 224.64 \n",
       "L 139.814773 160.346912 \n",
       "L 136.771136 160.346912 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_33\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 139.814773 224.64 \n",
       "L 142.858409 224.64 \n",
       "L 142.858409 159.150762 \n",
       "L 139.814773 159.150762 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_34\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 142.858409 224.64 \n",
       "L 145.902045 224.64 \n",
       "L 145.902045 170.31712 \n",
       "L 142.858409 170.31712 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_35\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 145.902045 224.64 \n",
       "L 148.945682 224.64 \n",
       "L 148.945682 172.36106 \n",
       "L 145.902045 172.36106 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_36\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 148.945682 224.64 \n",
       "L 151.989318 224.64 \n",
       "L 151.989318 183.754845 \n",
       "L 148.945682 183.754845 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_37\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 151.989318 224.64 \n",
       "L 155.032955 224.64 \n",
       "L 155.032955 185.977671 \n",
       "L 151.989318 185.977671 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_38\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 155.032955 224.64 \n",
       "L 158.076591 224.64 \n",
       "L 158.076591 185.194271 \n",
       "L 155.032955 185.194271 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_39\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 158.076591 224.64 \n",
       "L 161.120227 224.64 \n",
       "L 161.120227 197.128883 \n",
       "L 158.076591 197.128883 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_40\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 161.120227 224.64 \n",
       "L 164.163864 224.64 \n",
       "L 164.163864 198.857039 \n",
       "L 161.120227 198.857039 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_41\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 164.163864 224.64 \n",
       "L 167.2075 224.64 \n",
       "L 167.2075 203.573849 \n",
       "L 164.163864 203.573849 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_42\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 167.2075 224.64 \n",
       "L 170.251136 224.64 \n",
       "L 170.251136 205.836528 \n",
       "L 167.2075 205.836528 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_43\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 170.251136 224.64 \n",
       "L 173.294773 224.64 \n",
       "L 173.294773 211.723995 \n",
       "L 170.251136 211.723995 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_44\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 173.294773 224.64 \n",
       "L 176.338409 224.64 \n",
       "L 176.338409 213.1827 \n",
       "L 173.294773 213.1827 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_45\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 176.338409 224.64 \n",
       "L 179.382045 224.64 \n",
       "L 179.382045 217.755543 \n",
       "L 176.338409 217.755543 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_46\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 179.382045 224.64 \n",
       "L 182.425682 224.64 \n",
       "L 182.425682 217.886201 \n",
       "L 179.382045 217.886201 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_47\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 182.425682 224.64 \n",
       "L 185.469318 224.64 \n",
       "L 185.469318 220.272858 \n",
       "L 182.425682 220.272858 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_48\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 185.469318 224.64 \n",
       "L 188.512955 224.64 \n",
       "L 188.512955 221.863452 \n",
       "L 185.469318 221.863452 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_49\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 188.512955 224.64 \n",
       "L 191.556591 224.64 \n",
       "L 191.556591 222.24065 \n",
       "L 188.512955 222.24065 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_50\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 191.556591 224.64 \n",
       "L 194.600227 224.64 \n",
       "L 194.600227 222.30911 \n",
       "L 191.556591 222.30911 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_51\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 194.600227 224.64 \n",
       "L 197.643864 224.64 \n",
       "L 197.643864 222.964422 \n",
       "L 194.600227 222.964422 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_52\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 197.643864 224.64 \n",
       "L 200.6875 224.64 \n",
       "L 200.6875 222.935538 \n",
       "L 197.643864 222.935538 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_53\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 200.6875 224.64 \n",
       "L 203.731136 224.64 \n",
       "L 203.731136 222.665474 \n",
       "L 200.6875 222.665474 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_54\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 203.731136 224.64 \n",
       "L 206.774773 224.64 \n",
       "L 206.774773 222.447901 \n",
       "L 203.731136 222.447901 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_55\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 206.774773 224.64 \n",
       "L 209.818409 224.64 \n",
       "L 209.818409 221.564479 \n",
       "L 206.774773 221.564479 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_56\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 209.818409 224.64 \n",
       "L 212.862045 224.64 \n",
       "L 212.862045 220.028894 \n",
       "L 209.818409 220.028894 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_57\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 212.862045 224.64 \n",
       "L 215.905682 224.64 \n",
       "L 215.905682 217.992227 \n",
       "L 212.862045 217.992227 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_58\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 215.905682 224.64 \n",
       "L 218.949318 224.64 \n",
       "L 218.949318 216.871063 \n",
       "L 215.905682 216.871063 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_59\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 218.949318 224.64 \n",
       "L 221.992955 224.64 \n",
       "L 221.992955 213.141591 \n",
       "L 218.949318 213.141591 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_60\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 221.992955 224.64 \n",
       "L 225.036591 224.64 \n",
       "L 225.036591 208.258058 \n",
       "L 221.992955 208.258058 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_61\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 225.036591 224.64 \n",
       "L 228.080227 224.64 \n",
       "L 228.080227 204.647661 \n",
       "L 225.036591 204.647661 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_62\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 228.080227 224.64 \n",
       "L 231.123864 224.64 \n",
       "L 231.123864 202.777569 \n",
       "L 228.080227 202.777569 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_63\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 231.123864 224.64 \n",
       "L 234.1675 224.64 \n",
       "L 234.1675 192.87436 \n",
       "L 231.123864 192.87436 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_64\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 234.1675 224.64 \n",
       "L 237.211136 224.64 \n",
       "L 237.211136 188.099206 \n",
       "L 234.1675 188.099206 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_65\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 237.211136 224.64 \n",
       "L 240.254773 224.64 \n",
       "L 240.254773 179.441586 \n",
       "L 237.211136 179.441586 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_66\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 240.254773 224.64 \n",
       "L 243.298409 224.64 \n",
       "L 243.298409 174.639966 \n",
       "L 240.254773 174.639966 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_67\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 243.298409 224.64 \n",
       "L 246.342045 224.64 \n",
       "L 246.342045 154.223953 \n",
       "L 243.298409 154.223953 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_68\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 246.342045 224.64 \n",
       "L 249.385682 224.64 \n",
       "L 249.385682 143.45715 \n",
       "L 246.342045 143.45715 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_69\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 249.385682 224.64 \n",
       "L 252.429318 224.64 \n",
       "L 252.429318 109.478218 \n",
       "L 249.385682 109.478218 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_70\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 252.429318 224.64 \n",
       "L 255.472955 224.64 \n",
       "L 255.472955 107.651928 \n",
       "L 252.429318 107.651928 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_71\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 255.472955 224.64 \n",
       "L 258.516591 224.64 \n",
       "L 258.516591 90.736117 \n",
       "L 255.472955 90.736117 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_72\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 258.516591 224.64 \n",
       "L 261.560227 224.64 \n",
       "L 261.560227 102.526987 \n",
       "L 258.516591 102.526987 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_73\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 261.560227 224.64 \n",
       "L 264.603864 224.64 \n",
       "L 264.603864 60.006084 \n",
       "L 261.560227 60.006084 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_74\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 264.603864 224.64 \n",
       "L 267.6475 224.64 \n",
       "L 267.6475 60.020115 \n",
       "L 264.603864 60.020115 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_75\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 267.6475 224.64 \n",
       "L 270.691136 224.64 \n",
       "L 270.691136 29.085114 \n",
       "L 267.6475 29.085114 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_76\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 270.691136 224.64 \n",
       "L 273.734773 224.64 \n",
       "L 273.734773 17.554286 \n",
       "L 270.691136 17.554286 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_77\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 273.734773 224.64 \n",
       "L 276.778409 224.64 \n",
       "L 276.778409 40.267272 \n",
       "L 273.734773 40.267272 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_78\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 276.778409 224.64 \n",
       "L 279.822045 224.64 \n",
       "L 279.822045 75.126603 \n",
       "L 276.778409 75.126603 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_79\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 279.822045 224.64 \n",
       "L 282.865682 224.64 \n",
       "L 282.865682 41.713895 \n",
       "L 279.822045 41.713895 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_80\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 282.865682 224.64 \n",
       "L 285.909318 224.64 \n",
       "L 285.909318 80.350179 \n",
       "L 282.865682 80.350179 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_81\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 285.909318 224.64 \n",
       "L 288.952955 224.64 \n",
       "L 288.952955 57.553409 \n",
       "L 285.909318 57.553409 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_82\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 288.952955 224.64 \n",
       "L 291.996591 224.64 \n",
       "L 291.996591 102.181445 \n",
       "L 288.952955 102.181445 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_83\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 291.996591 224.64 \n",
       "L 295.040227 224.64 \n",
       "L 295.040227 103.051804 \n",
       "L 291.996591 103.051804 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_84\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 295.040227 224.64 \n",
       "L 298.083864 224.64 \n",
       "L 298.083864 109.969541 \n",
       "L 295.040227 109.969541 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_85\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 298.083864 224.64 \n",
       "L 301.1275 224.64 \n",
       "L 301.1275 130.691678 \n",
       "L 298.083864 130.691678 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_86\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 301.1275 224.64 \n",
       "L 304.171136 224.64 \n",
       "L 304.171136 126.485374 \n",
       "L 301.1275 126.485374 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_87\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 304.171136 224.64 \n",
       "L 307.214773 224.64 \n",
       "L 307.214773 140.459552 \n",
       "L 304.171136 140.459552 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_88\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 307.214773 224.64 \n",
       "L 310.258409 224.64 \n",
       "L 310.258409 142.488873 \n",
       "L 307.214773 142.488873 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_89\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 310.258409 224.64 \n",
       "L 313.302045 224.64 \n",
       "L 313.302045 170.146796 \n",
       "L 310.258409 170.146796 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_90\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 313.302045 224.64 \n",
       "L 316.345682 224.64 \n",
       "L 316.345682 175.510402 \n",
       "L 313.302045 175.510402 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_91\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 316.345682 224.64 \n",
       "L 319.389318 224.64 \n",
       "L 319.389318 180.104806 \n",
       "L 316.345682 180.104806 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_92\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 319.389318 224.64 \n",
       "L 322.432955 224.64 \n",
       "L 322.432955 188.170793 \n",
       "L 319.389318 188.170793 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_93\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 322.432955 224.64 \n",
       "L 325.476591 224.64 \n",
       "L 325.476591 194.738381 \n",
       "L 322.432955 194.738381 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_94\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 325.476591 224.64 \n",
       "L 328.520227 224.64 \n",
       "L 328.520227 205.499706 \n",
       "L 325.476591 205.499706 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_95\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 328.520227 224.64 \n",
       "L 331.563864 224.64 \n",
       "L 331.563864 208.633405 \n",
       "L 328.520227 208.633405 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_96\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 331.563864 224.64 \n",
       "L 334.6075 224.64 \n",
       "L 334.6075 212.219416 \n",
       "L 331.563864 212.219416 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_97\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 334.6075 224.64 \n",
       "L 337.651136 224.64 \n",
       "L 337.651136 217.4581 \n",
       "L 334.6075 217.4581 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_98\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 337.651136 224.64 \n",
       "L 340.694773 224.64 \n",
       "L 340.694773 219.092637 \n",
       "L 337.651136 219.092637 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_99\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 340.694773 224.64 \n",
       "L 343.738409 224.64 \n",
       "L 343.738409 220.263395 \n",
       "L 340.694773 220.263395 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_100\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 343.738409 224.64 \n",
       "L 346.782045 224.64 \n",
       "L 346.782045 221.570931 \n",
       "L 343.738409 221.570931 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_101\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 346.782045 224.64 \n",
       "L 349.825682 224.64 \n",
       "L 349.825682 222.554672 \n",
       "L 346.782045 222.554672 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_102\">\n",
       "    <path clip-path=\"url(#pdd75c719c0)\" d=\"M 349.825682 224.64 \n",
       "L 352.869318 224.64 \n",
       "L 352.869318 223.107674 \n",
       "L 349.825682 223.107674 \n",
       "z\n",
       "\" style=\"fill:#1f77b4;\"/>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_1\">\n",
       "    <g id=\"xtick_1\">\n",
       "     <g id=\"line2d_1\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L 0 3.5 \n",
       "\" id=\"mcc43dc4da2\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"48.465748\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_1\">\n",
       "      <!-- −1.0 -->\n",
       "      <g transform=\"translate(36.324342 239.238437)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.59375 35.5 \n",
       "L 73.1875 35.5 \n",
       "L 73.1875 27.203125 \n",
       "L 10.59375 27.203125 \n",
       "z\n",
       "\" id=\"DejaVuSans-8722\"/>\n",
       "        <path d=\"M 12.40625 8.296875 \n",
       "L 28.515625 8.296875 \n",
       "L 28.515625 63.921875 \n",
       "L 10.984375 60.40625 \n",
       "L 10.984375 69.390625 \n",
       "L 28.421875 72.90625 \n",
       "L 38.28125 72.90625 \n",
       "L 38.28125 8.296875 \n",
       "L 54.390625 8.296875 \n",
       "L 54.390625 0 \n",
       "L 12.40625 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-49\"/>\n",
       "        <path d=\"M 10.6875 12.40625 \n",
       "L 21 12.40625 \n",
       "L 21 0 \n",
       "L 10.6875 0 \n",
       "z\n",
       "\" id=\"DejaVuSans-46\"/>\n",
       "        <path d=\"M 31.78125 66.40625 \n",
       "Q 24.171875 66.40625 20.328125 58.90625 \n",
       "Q 16.5 51.421875 16.5 36.375 \n",
       "Q 16.5 21.390625 20.328125 13.890625 \n",
       "Q 24.171875 6.390625 31.78125 6.390625 \n",
       "Q 39.453125 6.390625 43.28125 13.890625 \n",
       "Q 47.125 21.390625 47.125 36.375 \n",
       "Q 47.125 51.421875 43.28125 58.90625 \n",
       "Q 39.453125 66.40625 31.78125 66.40625 \n",
       "z\n",
       "M 31.78125 74.21875 \n",
       "Q 44.046875 74.21875 50.515625 64.515625 \n",
       "Q 56.984375 54.828125 56.984375 36.375 \n",
       "Q 56.984375 17.96875 50.515625 8.265625 \n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \n",
       "Q 6.59375 17.96875 6.59375 36.375 \n",
       "Q 6.59375 54.828125 13.0625 64.515625 \n",
       "Q 19.53125 74.21875 31.78125 74.21875 \n",
       "z\n",
       "\" id=\"DejaVuSans-48\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-8722\"/>\n",
       "       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_2\">\n",
       "     <g id=\"line2d_2\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"86.516241\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_2\">\n",
       "      <!-- −0.5 -->\n",
       "      <g transform=\"translate(74.374835 239.238437)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 10.796875 72.90625 \n",
       "L 49.515625 72.90625 \n",
       "L 49.515625 64.59375 \n",
       "L 19.828125 64.59375 \n",
       "L 19.828125 46.734375 \n",
       "Q 21.96875 47.46875 24.109375 47.828125 \n",
       "Q 26.265625 48.1875 28.421875 48.1875 \n",
       "Q 40.625 48.1875 47.75 41.5 \n",
       "Q 54.890625 34.8125 54.890625 23.390625 \n",
       "Q 54.890625 11.625 47.5625 5.09375 \n",
       "Q 40.234375 -1.421875 26.90625 -1.421875 \n",
       "Q 22.3125 -1.421875 17.546875 -0.640625 \n",
       "Q 12.796875 0.140625 7.71875 1.703125 \n",
       "L 7.71875 11.625 \n",
       "Q 12.109375 9.234375 16.796875 8.0625 \n",
       "Q 21.484375 6.890625 26.703125 6.890625 \n",
       "Q 35.15625 6.890625 40.078125 11.328125 \n",
       "Q 45.015625 15.765625 45.015625 23.390625 \n",
       "Q 45.015625 31 40.078125 35.4375 \n",
       "Q 35.15625 39.890625 26.703125 39.890625 \n",
       "Q 22.75 39.890625 18.8125 39.015625 \n",
       "Q 14.890625 38.140625 10.796875 36.28125 \n",
       "z\n",
       "\" id=\"DejaVuSans-53\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-8722\"/>\n",
       "       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_3\">\n",
       "     <g id=\"line2d_3\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"124.566735\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_3\">\n",
       "      <!-- 0.0 -->\n",
       "      <g transform=\"translate(116.615172 239.238437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_4\">\n",
       "     <g id=\"line2d_4\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"162.617228\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_4\">\n",
       "      <!-- 0.5 -->\n",
       "      <g transform=\"translate(154.665665 239.238437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_5\">\n",
       "     <g id=\"line2d_5\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"200.667721\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_5\">\n",
       "      <!-- 1.0 -->\n",
       "      <g transform=\"translate(192.716159 239.238437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_6\">\n",
       "     <g id=\"line2d_6\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"238.718214\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_6\">\n",
       "      <!-- 1.5 -->\n",
       "      <g transform=\"translate(230.766652 239.238437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-49\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_7\">\n",
       "     <g id=\"line2d_7\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"276.768708\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_7\">\n",
       "      <!-- 2.0 -->\n",
       "      <g transform=\"translate(268.817145 239.238437)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 19.1875 8.296875 \n",
       "L 53.609375 8.296875 \n",
       "L 53.609375 0 \n",
       "L 7.328125 0 \n",
       "L 7.328125 8.296875 \n",
       "Q 12.9375 14.109375 22.625 23.890625 \n",
       "Q 32.328125 33.6875 34.8125 36.53125 \n",
       "Q 39.546875 41.84375 41.421875 45.53125 \n",
       "Q 43.3125 49.21875 43.3125 52.78125 \n",
       "Q 43.3125 58.59375 39.234375 62.25 \n",
       "Q 35.15625 65.921875 28.609375 65.921875 \n",
       "Q 23.96875 65.921875 18.8125 64.3125 \n",
       "Q 13.671875 62.703125 7.8125 59.421875 \n",
       "L 7.8125 69.390625 \n",
       "Q 13.765625 71.78125 18.9375 73 \n",
       "Q 24.125 74.21875 28.421875 74.21875 \n",
       "Q 39.75 74.21875 46.484375 68.546875 \n",
       "Q 53.21875 62.890625 53.21875 53.421875 \n",
       "Q 53.21875 48.921875 51.53125 44.890625 \n",
       "Q 49.859375 40.875 45.40625 35.40625 \n",
       "Q 44.1875 33.984375 37.640625 27.21875 \n",
       "Q 31.109375 20.453125 19.1875 8.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-50\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_8\">\n",
       "     <g id=\"line2d_8\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"314.819201\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_8\">\n",
       "      <!-- 2.5 -->\n",
       "      <g transform=\"translate(306.867638 239.238437)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"xtick_9\">\n",
       "     <g id=\"line2d_9\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"352.869694\" xlink:href=\"#mcc43dc4da2\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_9\">\n",
       "      <!-- 3.0 -->\n",
       "      <g transform=\"translate(344.918131 239.238437)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 40.578125 39.3125 \n",
       "Q 47.65625 37.796875 51.625 33 \n",
       "Q 55.609375 28.21875 55.609375 21.1875 \n",
       "Q 55.609375 10.40625 48.1875 4.484375 \n",
       "Q 40.765625 -1.421875 27.09375 -1.421875 \n",
       "Q 22.515625 -1.421875 17.65625 -0.515625 \n",
       "Q 12.796875 0.390625 7.625 2.203125 \n",
       "L 7.625 11.71875 \n",
       "Q 11.71875 9.328125 16.59375 8.109375 \n",
       "Q 21.484375 6.890625 26.8125 6.890625 \n",
       "Q 36.078125 6.890625 40.9375 10.546875 \n",
       "Q 45.796875 14.203125 45.796875 21.1875 \n",
       "Q 45.796875 27.640625 41.28125 31.265625 \n",
       "Q 36.765625 34.90625 28.71875 34.90625 \n",
       "L 20.21875 34.90625 \n",
       "L 20.21875 43.015625 \n",
       "L 29.109375 43.015625 \n",
       "Q 36.375 43.015625 40.234375 45.921875 \n",
       "Q 44.09375 48.828125 44.09375 54.296875 \n",
       "Q 44.09375 59.90625 40.109375 62.90625 \n",
       "Q 36.140625 65.921875 28.71875 65.921875 \n",
       "Q 24.65625 65.921875 20.015625 65.03125 \n",
       "Q 15.375 64.15625 9.8125 62.3125 \n",
       "L 9.8125 71.09375 \n",
       "Q 15.4375 72.65625 20.34375 73.4375 \n",
       "Q 25.25 74.21875 29.59375 74.21875 \n",
       "Q 40.828125 74.21875 47.359375 69.109375 \n",
       "Q 53.90625 64.015625 53.90625 55.328125 \n",
       "Q 53.90625 49.265625 50.4375 45.09375 \n",
       "Q 46.96875 40.921875 40.578125 39.3125 \n",
       "z\n",
       "\" id=\"DejaVuSans-51\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-51\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n",
       "       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"matplotlib.axis_2\">\n",
       "    <g id=\"ytick_1\">\n",
       "     <g id=\"line2d_10\">\n",
       "      <defs>\n",
       "       <path d=\"M 0 0 \n",
       "L -3.5 0 \n",
       "\" id=\"m49b5b4fe2b\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n",
       "      </defs>\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#m49b5b4fe2b\" y=\"224.64\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_10\">\n",
       "      <!-- 0 -->\n",
       "      <g transform=\"translate(19.925 228.439219)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_2\">\n",
       "     <g id=\"line2d_11\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#m49b5b4fe2b\" y=\"180.939604\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_11\">\n",
       "      <!-- 200 -->\n",
       "      <g transform=\"translate(7.2 184.738823)scale(0.1 -0.1)\">\n",
       "       <use xlink:href=\"#DejaVuSans-50\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_3\">\n",
       "     <g id=\"line2d_12\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#m49b5b4fe2b\" y=\"137.239208\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_12\">\n",
       "      <!-- 400 -->\n",
       "      <g transform=\"translate(7.2 141.038426)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 37.796875 64.3125 \n",
       "L 12.890625 25.390625 \n",
       "L 37.796875 25.390625 \n",
       "z\n",
       "M 35.203125 72.90625 \n",
       "L 47.609375 72.90625 \n",
       "L 47.609375 25.390625 \n",
       "L 58.015625 25.390625 \n",
       "L 58.015625 17.1875 \n",
       "L 47.609375 17.1875 \n",
       "L 47.609375 0 \n",
       "L 37.796875 0 \n",
       "L 37.796875 17.1875 \n",
       "L 4.890625 17.1875 \n",
       "L 4.890625 26.703125 \n",
       "z\n",
       "\" id=\"DejaVuSans-52\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-52\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_4\">\n",
       "     <g id=\"line2d_13\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#m49b5b4fe2b\" y=\"93.538812\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_13\">\n",
       "      <!-- 600 -->\n",
       "      <g transform=\"translate(7.2 97.33803)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 33.015625 40.375 \n",
       "Q 26.375 40.375 22.484375 35.828125 \n",
       "Q 18.609375 31.296875 18.609375 23.390625 \n",
       "Q 18.609375 15.53125 22.484375 10.953125 \n",
       "Q 26.375 6.390625 33.015625 6.390625 \n",
       "Q 39.65625 6.390625 43.53125 10.953125 \n",
       "Q 47.40625 15.53125 47.40625 23.390625 \n",
       "Q 47.40625 31.296875 43.53125 35.828125 \n",
       "Q 39.65625 40.375 33.015625 40.375 \n",
       "z\n",
       "M 52.59375 71.296875 \n",
       "L 52.59375 62.3125 \n",
       "Q 48.875 64.0625 45.09375 64.984375 \n",
       "Q 41.3125 65.921875 37.59375 65.921875 \n",
       "Q 27.828125 65.921875 22.671875 59.328125 \n",
       "Q 17.53125 52.734375 16.796875 39.40625 \n",
       "Q 19.671875 43.65625 24.015625 45.921875 \n",
       "Q 28.375 48.1875 33.59375 48.1875 \n",
       "Q 44.578125 48.1875 50.953125 41.515625 \n",
       "Q 57.328125 34.859375 57.328125 23.390625 \n",
       "Q 57.328125 12.15625 50.6875 5.359375 \n",
       "Q 44.046875 -1.421875 33.015625 -1.421875 \n",
       "Q 20.359375 -1.421875 13.671875 8.265625 \n",
       "Q 6.984375 17.96875 6.984375 36.375 \n",
       "Q 6.984375 53.65625 15.1875 63.9375 \n",
       "Q 23.390625 74.21875 37.203125 74.21875 \n",
       "Q 40.921875 74.21875 44.703125 73.484375 \n",
       "Q 48.484375 72.75 52.59375 71.296875 \n",
       "z\n",
       "\" id=\"DejaVuSans-54\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-54\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "    <g id=\"ytick_5\">\n",
       "     <g id=\"line2d_14\">\n",
       "      <g>\n",
       "       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"33.2875\" xlink:href=\"#m49b5b4fe2b\" y=\"49.838415\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "     <g id=\"text_14\">\n",
       "      <!-- 800 -->\n",
       "      <g transform=\"translate(7.2 53.637634)scale(0.1 -0.1)\">\n",
       "       <defs>\n",
       "        <path d=\"M 31.78125 34.625 \n",
       "Q 24.75 34.625 20.71875 30.859375 \n",
       "Q 16.703125 27.09375 16.703125 20.515625 \n",
       "Q 16.703125 13.921875 20.71875 10.15625 \n",
       "Q 24.75 6.390625 31.78125 6.390625 \n",
       "Q 38.8125 6.390625 42.859375 10.171875 \n",
       "Q 46.921875 13.96875 46.921875 20.515625 \n",
       "Q 46.921875 27.09375 42.890625 30.859375 \n",
       "Q 38.875 34.625 31.78125 34.625 \n",
       "z\n",
       "M 21.921875 38.8125 \n",
       "Q 15.578125 40.375 12.03125 44.71875 \n",
       "Q 8.5 49.078125 8.5 55.328125 \n",
       "Q 8.5 64.0625 14.71875 69.140625 \n",
       "Q 20.953125 74.21875 31.78125 74.21875 \n",
       "Q 42.671875 74.21875 48.875 69.140625 \n",
       "Q 55.078125 64.0625 55.078125 55.328125 \n",
       "Q 55.078125 49.078125 51.53125 44.71875 \n",
       "Q 48 40.375 41.703125 38.8125 \n",
       "Q 48.828125 37.15625 52.796875 32.3125 \n",
       "Q 56.78125 27.484375 56.78125 20.515625 \n",
       "Q 56.78125 9.90625 50.3125 4.234375 \n",
       "Q 43.84375 -1.421875 31.78125 -1.421875 \n",
       "Q 19.734375 -1.421875 13.25 4.234375 \n",
       "Q 6.78125 9.90625 6.78125 20.515625 \n",
       "Q 6.78125 27.484375 10.78125 32.3125 \n",
       "Q 14.796875 37.15625 21.921875 38.8125 \n",
       "z\n",
       "M 18.3125 54.390625 \n",
       "Q 18.3125 48.734375 21.84375 45.5625 \n",
       "Q 25.390625 42.390625 31.78125 42.390625 \n",
       "Q 38.140625 42.390625 41.71875 45.5625 \n",
       "Q 45.3125 48.734375 45.3125 54.390625 \n",
       "Q 45.3125 60.0625 41.71875 63.234375 \n",
       "Q 38.140625 66.40625 31.78125 66.40625 \n",
       "Q 25.390625 66.40625 21.84375 63.234375 \n",
       "Q 18.3125 60.0625 18.3125 54.390625 \n",
       "z\n",
       "\" id=\"DejaVuSans-56\"/>\n",
       "       </defs>\n",
       "       <use xlink:href=\"#DejaVuSans-56\"/>\n",
       "       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n",
       "      </g>\n",
       "     </g>\n",
       "    </g>\n",
       "   </g>\n",
       "   <g id=\"patch_103\">\n",
       "    <path d=\"M 33.2875 224.64 \n",
       "L 33.2875 7.2 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_104\">\n",
       "    <path d=\"M 368.0875 224.64 \n",
       "L 368.0875 7.2 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_105\">\n",
       "    <path d=\"M 33.2875 224.64 \n",
       "L 368.0875 224.64 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "   <g id=\"patch_106\">\n",
       "    <path d=\"M 33.2875 7.2 \n",
       "L 368.0875 7.2 \n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n",
       "   </g>\n",
       "  </g>\n",
       " </g>\n",
       " <defs>\n",
       "  <clipPath id=\"pdd75c719c0\">\n",
       "   <rect height=\"217.44\" width=\"334.8\" x=\"33.2875\" y=\"7.2\"/>\n",
       "  </clipPath>\n",
       " </defs>\n",
       "</svg>\n"
      ],
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "parameter_values = (1.0, 0.0, 0.1, 2.0, 2.0, 0.1)\n",
    "result = evaluate_with_parameters(jax_gauss_sum)()\n",
    "plt.hist(np_x, bins=100, weights=result);"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 6. Exchange a gaussian with some other function"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "This should be easy if you know the exact expression that you want to replace:"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\sin{\\left(a x \\right)} + \\cos{\\left(b x \\right)}$"
      ],
      "text/plain": [
       "sin(a*x) + cos(b*x)"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "from sympy.abc import C, a, b, x\n",
    "\n",
    "expr = sp.sin(a * x) + sp.cos(b * x)\n",
    "expr"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle C + \\cos{\\left(b x \\right)}$"
      ],
      "text/plain": [
       "C + cos(b*x)"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "expr.subs(sp.sin(a * x), C)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 7. Matrix operations?"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/latex": [
       "$\\displaystyle \\operatorname{re}{\\left(\\left[\\begin{matrix}1 - i & 2 - i & 3 - i\\end{matrix}\\right] \\rho \\left[\\begin{matrix}1 + i\\\\2 + i\\\\3 + i\\end{matrix}\\right]\\right)}$"
      ],
      "text/plain": [
       "re(Matrix([[1 - I, 2 - I, 3 - I]])*rho*Matrix([\n",
       "[1 + I],\n",
       "[2 + I],\n",
       "[3 + I]]))"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "from sympy.physics.quantum.dagger import Dagger\n",
    "\n",
    "spin_density = sp.MatrixSymbol(\"rho\", 3, 3)\n",
    "amplitudes = sp.Matrix([[1 + sp.I], [2 + sp.I], [3 + sp.I]])\n",
    "\n",
    "dummy_intensity = sp.re(\n",
    "    Dagger(amplitudes) * spin_density * amplitudes,\n",
    "    evaluate=False\n",
    "    # evaluate=False is important otherwise it generates some function that cant\n",
    "    # be lambdified anymore\n",
    ")\n",
    "dummy_intensity"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "def _lambdifygenerated(rho):\n",
      "    return (real(matmul(matmul(constant([[1 - 1j, 2 - 1j, 3 - 1j]]), rho), constant([[1 + 1j], [2 + 1j], [3 + 1j]]))))\n",
      "\n"
     ]
    }
   ],
   "source": [
    "tf_intensity = sp.lambdify(\n",
    "    spin_density,\n",
    "    dummy_intensity,\n",
    "    modules=(tf,),\n",
    ")\n",
    "print(inspect.getsource(tf_intensity))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "tags": [
     "keep_output"
    ]
   },
   "outputs": [
    {
     "data": {
      "text/plain": [
       "<tf.Tensor: shape=(1, 1), dtype=float64, numpy=array([[13.]])>"
      ]
     },
     "execution_count": null,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "real0 = tf.constant(0, dtype=tf.float64)\n",
    "real1 = tf.constant(1, dtype=tf.float64)\n",
    "intensity_result = tf_intensity(\n",
    "    np.array(\n",
    "        [\n",
    "            [\n",
    "                tf.complex(real1, real0),\n",
    "                tf.complex(real0, real0),\n",
    "                -tf.complex(real0, real1),\n",
    "            ],\n",
    "            [\n",
    "                tf.complex(real0, real0),\n",
    "                tf.complex(real1, real0),\n",
    "                tf.complex(real0, real0),\n",
    "            ],\n",
    "            [\n",
    "                tf.complex(real0, real1),\n",
    "                tf.complex(real0, real0),\n",
    "                tf.complex(real1, real0),\n",
    "            ],\n",
    "        ]\n",
    "    ),\n",
    ")\n",
    "intensity_result"
   ]
  }
 ],
 "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.8"
  },
  "toc-autonumbering": false,
  "toc-showcode": true,
  "toc-showmarkdowntxt": false,
  "toc-showtags": true
 },
 "nbformat": 4,
 "nbformat_minor": 4
}
