diff --git a/doc/conf.py b/doc/conf.py
index 0ac043e2704231874e3c9e743b0567bed0f4cd23..79f75ff34ec2fe9df4eb0c2bd1e9970237b50136 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -17,6 +17,7 @@ def setup(app):
     app.add_js_file("latest-warning.js")
 
 extensions = [
+    'sphinx.ext.intersphinx',
     'sphinx.ext.autodoc',
     'sphinx.ext.todo',
     'sphinx.ext.mathjax',
@@ -28,6 +29,10 @@ master_doc = 'index'
 html_logo = 'images/arbor-lines-proto-colour.svg'
 html_favicon = 'images/arbor-lines-proto-colour-notext.svg'
 
+intersphinx_mapping = {
+    'sphinx': ('https://lfpykit.readthedocs.io/en/latest/', None),
+}
+
 project = 'Arbor'
 copyright = '2017-2021, ETHZ & FZJ'
 author = 'ETHZ & FZJ'
diff --git a/doc/scripts/make_images.py b/doc/scripts/make_images.py
index 9bfa9511a35f0678fadd523650049a2816ab8d6f..35369ec54205f50ce7287907d729964f6a8dcd2a 100644
--- a/doc/scripts/make_images.py
+++ b/doc/scripts/make_images.py
@@ -311,6 +311,7 @@ def generate(path=''):
     ####################### Tutorial examples
 
     morph_image([inputs.tutorial_morph], ['segments'], path+'/tutorial_morph.svg')
+    morph_image([inputs.tutorial_morph], ['segments'], path+'/tutorial_morph_nolabels_nocolors.svg', colors=False, draw_labels=False)
     morph_image([inputs.tutorial_network_ring_morph], ['segments'], path+'/tutorial_network_ring_morph.svg',lab_sc=6)
 
     ####################### locsets
diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst
index b5a897deea6baf00fe4fe0fa58e869bb2f894219..9d57b4d7db0910e8a5838b7aa4a5a32403c70c5b 100644
--- a/doc/tutorial/index.rst
+++ b/doc/tutorial/index.rst
@@ -7,7 +7,7 @@ Tutorials
     You can find some examples of full Arbor simulations in the ``python/examples`` directory of the
     `Arbor repository <https://github.com/arbor-sim/arbor>`_.
 
-    The examples use ``pandas`` and ``seaborn`` for analysis and plotting which are expected to be
+    The examples use ``pandas``, ``seaborn`` and ``LFPykit`` for analysis and plotting which are expected to be
     installed independently from Arbor.
 
     In an interactive Python interpreter, you can use ``help()`` on any class or function to get its
@@ -28,3 +28,4 @@ Tutorials
    network_ring
    network_ring_mpi
    two_cells_gap_junctions
+   tutorial_lfpykit
diff --git a/doc/tutorial/tutorial_lfpykit.rst b/doc/tutorial/tutorial_lfpykit.rst
new file mode 100644
index 0000000000000000000000000000000000000000..31b1080efb59912c299dc85abc0689cc0251be5a
--- /dev/null
+++ b/doc/tutorial/tutorial_lfpykit.rst
@@ -0,0 +1,227 @@
+.. _tutorial_lfpykit:
+
+Extracellular signals
+=====================
+
+This example takes elements from other tutorials to create a geometrically
+detailed single cell model from an SWC morphology file, and adds predictions of
+extracellular potentials using the `LFPykit <https://lfpykit.readthedocs.io/en/latest>`_ Python library.
+LFPykit provides a few different classes facilitating
+calculations of extracellular potentials and related electroencephalography (EEG)
+and magnetoencephalography (MEG) signals from geometrically detailed neuron models under various assumptions.
+These are signals that mainly stem from transmembrane currents.
+
+.. Note::
+
+   **Concepts covered in this tutorial:**
+
+   1. Recording of transmembrane currents using :class:`arbor.cable_probe_total_current_cell`
+   2. Recording of stimulus currents using :class:`arbor.cable_probe_stimulus_current_cell`
+   3. Using the :class:`arbor.place_pwlin` API
+   4. Map recorded transmembrane currents to extracellular potentials by derivinging Arbor specific classes from LFPykit's :class:`lfpykit.LineSourcePotential` and :class:`lfpykit.CellGeometry`
+
+.. _tutorial_lfpykit-linesource:
+
+The line source approximation
+-----------------------------
+
+First, let's describe how one can compute extracellular potentials from transmembrane currents of a number of segments,
+assuming that each segment can be treated as an equivalent line current source using a formalism invented
+by Gary R. Holt and Christof Koch [1]_.
+The implementation used in this tutorial rely on :class:`lfpykit.LineSourcePotential`.
+This class conveniently defines a 2D linear response matrix
+:math:`\mathbf{M}` between transmembrane current array
+:math:`\mathbf{I}` (nA) of a neuron model's
+geometry (:class:`lfpykit.CellGeometry`) and the
+corresponding extracellular electric potential in different extracellular locations
+:math:`\mathbf{V}_{e}` (mV) so
+
+.. math:: \mathbf{V}_{e} = \mathbf{M} \mathbf{I}
+
+The transmembrane current :math:`\mathbf{I}` is an array of shape (# segments, # timesteps)
+with unit (nA), and each row indexed by :math:`j` of
+:math:`\mathbf{V}_{e}` represents the electric potential at each
+measurement site for every time step.
+The resulting shape of :math:`\mathbf{V}_{e}` is (# locations, # timesteps).
+The elements of :math:`\mathbf{M}` are computed as:
+
+.. math:: M_{ji} = \frac{1}{ 4 \pi \sigma L_i } \log
+    \left|
+    \frac{\sqrt{h_{ji}^2+r_{ji}^2}-h_{ji}
+           }{
+           \sqrt{l_{ji}^2+r_{ji}^2}-l_{ji}}
+    \right|~.
+
+
+Here, segments are indexed by :math:`i`,
+segment length is denoted :math:`L_i`, perpendicular distance from the
+electrode point contact to the axis of the line segment is denoted
+:math:`r_{ji}`, longitudinal distance measured from the start of the
+segment is denoted :math:`h_{ji}` and longitudinal distance from the other
+end of the segment is denoted :math:`l_{ji}= L_i + h_{ji}`.
+
+.. Note::
+
+    **Assumptions:**
+
+    1. The extracellular conductivity :math:`\sigma` is infinite, homogeneous, frequency independent (linear) and isotropic
+    2. Each segment is treated as a straight line source with homogeneous current density between its start and end point coordinate.
+       Although Arbor allows segments to be defined as conical frusta with varying radius, we shall assume that any variation in
+       radius is small relative to overall segment length.
+    3. Each extracellular measurement site is treated as a point
+    4. The minimum distance to a line source is set equal to the average segment radius to avoid singularities.
+
+
+.. _tutorial_lfpykit-model:
+
+The model
+---------
+
+In this tutorial, the neuron model itself is kept deliberately simple with only
+passive (leaky) membrane dynamics, and it receives sinusoid synaptic current
+input in one arbitrary chosen control volume (CV).
+
+First we import some required modules:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 14-17
+
+We define a basic :class:`Recipe <arbor.recipe>` class, holding a cell and three probes (voltage, stimulus current and total current):
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 22-54
+
+Then, load a morphology on ``SWC`` file format (interpreted according to :ref:`Arbor's specifications <morph-formats>`).
+Similar to the tutorial :ref:`"A simple single cell model" <tutorialsinglecellswc>`,
+we use the morphology file in ``python/example/single_cell_detailed.swc``:
+
+.. figure:: ../gen-images/tutorial_morph_nolabels_nocolors.svg
+  :width: 800
+  :align: left
+
+  A graphic depiction of ``single_cell_detailed.swc``.
+
+Pass the filename as an argument to the simulation script:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 57-66
+
+As a target for a current stimuli we define an :class:`arbor.location` :
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 68-69
+
+Next, we let a basic function define our cell model, taking the morphology and clamp location as
+input.
+The function defines various attributes (:class:`~arbor.label_dict`, :class:`~arbor.decor`) for
+the cell model,
+sets sinusoid current clamp as stimuli using :class:`~arbor.iclamp`
+defines discretization policy (:class:`~arbor.cv_policy_fixed_per_branch`)
+and returns the corresponding :class:`~arbor.place_pwlin` and :class:`~arbor.cable_cell` objects for use later:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 72-115
+
+Store the function output:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 119
+
+Next, we instantiate :class:`Recipe`, a :class:`~arbor.context` etc. and execute cell model for a few hundred ms,
+sampling the different signals every 1 ms:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 121-136
+
+Extract recorded membrane voltages, electrode and transmembrane currents.
+Note that membrane voltages at branch points and intersections between CVs are dropped as
+we only illustrate membrane voltages of segments with finite lengths.
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 138-153
+
+Finally we sum the stimulation and transmembrane currents, allowing the stimuli to mimic a synapse
+current embedded in the membrane itself rather than an intracellular electrode current:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 161
+
+.. _tutorial_lfpykit-lfpykit:
+
+Compute extracellular potentials
+--------------------------------
+
+Here we utilize the LFPykit library to map
+transmembrane currents recorded during the
+simulation to extracellular potentials in vicinity to the cell.
+We shall account for every segment in each CV using the so-called line-source approximation described :ref:`above <tutorial_lfpykit-linesource>`.
+
+First we define a couple of inherited classes to interface LFPykit
+(as this library is not solely written for Arbor).
+Starting with a class inherited from :class:`lfpykit.CellGeometry`:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 171-204
+
+Then, a class inherited from :class:`lfpykit.LineSourcePotential`.
+Other use cases may inherit from any other parent class defined in :mod:`lfpykit.models` in a similar manner:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 207-254
+
+With these two classes one may then compute extracellular potentials from transmembrane
+currents in space with a few lines of code:
+
+.. literalinclude:: ../../python/example/single_cell_extracellular_potentials.py
+   :language: python
+   :lines: 257-280
+
+.. _tutorial_lfpykit-illustration:
+
+The result
+----------
+
+The visualization below of simulation results shows the cellular geometry and a contour plot
+of the extracellular potential (``V_e``) in a plane.
+Each part (CV) of the cell is shown with some color coding for the membrane potential (``V_m``).
+The stimulus location is denoted by the black marker.
+
+.. figure:: tutorial_lfpykit.svg
+    :width: 1600
+    :align: center
+
+    The result.
+
+.. Note::
+
+    The spatial discretization is here deliberately coarse with only 3 CVs per branch.
+    Hence the branch receiving input about 1/6 of the way from its root
+    (from ``decor.place(str(arbor.location(4, 1/6)), iclamp, '"iclamp"')``) is treated as 3 separate
+    line sources with inhomogeneous current density per unit length. This inhomogeneity
+    is due to the fact that the total transmembrane current per CV may
+    be distributed across multiple segments with varying surface area. The transmembrane
+    current is assumed to be constant per unit length per segment.
+
+.. _tutorial_lfpykit-code:
+
+The full code
+-------------
+You can find the full code of the example at ``python/examples/single_cell_extracellular_potentials.py``.
+
+Find the source of LFPykit `here <https://github.com/LFPy/LFPykit/>`_.
+
+References
+----------
+.. [1] Holt, G.R., Koch, C. Electrical Interactions via the Extracellular Potential Near Cell Bodies.
+  J Comput Neurosci 6, 169–184 (1999). https://doi.org/10.1023/A:1008832702585
diff --git a/doc/tutorial/tutorial_lfpykit.svg b/doc/tutorial/tutorial_lfpykit.svg
new file mode 100644
index 0000000000000000000000000000000000000000..5b8c68e82924043d55dcb12a776b747a87641409
--- /dev/null
+++ b/doc/tutorial/tutorial_lfpykit.svg
@@ -0,0 +1,7950 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
+  "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="1011.781pt" height="388.224688pt" viewBox="0 0 1011.781 388.224688" xmlns="http://www.w3.org/2000/svg" version="1.1">
+ <metadata>
+  <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+   <cc:Work>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+    <dc:date>2022-02-03T13:05:42.712090</dc:date>
+    <dc:format>image/svg+xml</dc:format>
+    <dc:creator>
+     <cc:Agent>
+      <dc:title>Matplotlib v3.5.1, https://matplotlib.org/</dc:title>
+     </cc:Agent>
+    </dc:creator>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <defs>
+  <style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
+ </defs>
+ <g id="figure_1">
+  <g id="patch_1">
+   <path d="M 0 388.224688 
+L 1011.781 388.224688 
+L 1011.781 0 
+L 0 0 
+z
+" style="fill: #ffffff"/>
+  </g>
+  <g id="axes_1">
+   <g id="patch_2">
+    <path d="M 41.6125 354.429375 
+L 934.4125 354.429375 
+L 934.4125 21.789375 
+L 41.6125 21.789375 
+z
+" style="fill: #eaeaf2"/>
+   </g>
+   <g id="matplotlib.axis_1">
+    <g id="xtick_1">
+     <g id="line2d_1">
+      <path d="M 60.2125 354.429375 
+L 60.2125 21.789375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_2"/>
+     <g id="text_1">
+      <!-- −100 -->
+      <g style="fill: #262626" transform="translate(48.950781 368.587188)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-2212" d="M 3381 1997 
+L 356 1997 
+L 356 2522 
+L 3381 2522 
+L 3381 1997 
+z
+" transform="scale(0.015625)"/>
+        <path id="ArialMT-31" d="M 2384 0 
+L 1822 0 
+L 1822 3584 
+Q 1619 3391 1289 3197 
+Q 959 3003 697 2906 
+L 697 3450 
+Q 1169 3672 1522 3987 
+Q 1875 4303 2022 4600 
+L 2384 4600 
+L 2384 0 
+z
+" transform="scale(0.015625)"/>
+        <path id="ArialMT-30" d="M 266 2259 
+Q 266 3072 433 3567 
+Q 600 4063 929 4331 
+Q 1259 4600 1759 4600 
+Q 2128 4600 2406 4451 
+Q 2684 4303 2865 4023 
+Q 3047 3744 3150 3342 
+Q 3253 2941 3253 2259 
+Q 3253 1453 3087 958 
+Q 2922 463 2592 192 
+Q 2263 -78 1759 -78 
+Q 1097 -78 719 397 
+Q 266 969 266 2259 
+z
+M 844 2259 
+Q 844 1131 1108 757 
+Q 1372 384 1759 384 
+Q 2147 384 2411 759 
+Q 2675 1134 2675 2259 
+Q 2675 3391 2411 3762 
+Q 2147 4134 1753 4134 
+Q 1366 4134 1134 3806 
+Q 844 3388 844 2259 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-31" x="58.398438"/>
+       <use xlink:href="#ArialMT-30" x="114.013672"/>
+       <use xlink:href="#ArialMT-30" x="169.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_2">
+     <g id="line2d_3">
+      <path d="M 246.2125 354.429375 
+L 246.2125 21.789375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_4"/>
+     <g id="text_2">
+      <!-- 0 -->
+      <g style="fill: #262626" transform="translate(243.432031 368.587188)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-30"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_3">
+     <g id="line2d_5">
+      <path d="M 432.2125 354.429375 
+L 432.2125 21.789375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_6"/>
+     <g id="text_3">
+      <!-- 100 -->
+      <g style="fill: #262626" transform="translate(423.871094 368.587188)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-31"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+       <use xlink:href="#ArialMT-30" x="111.230469"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_4">
+     <g id="line2d_7">
+      <path d="M 618.2125 354.429375 
+L 618.2125 21.789375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_8"/>
+     <g id="text_4">
+      <!-- 200 -->
+      <g style="fill: #262626" transform="translate(609.871094 368.587188)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-32" d="M 3222 541 
+L 3222 0 
+L 194 0 
+Q 188 203 259 391 
+Q 375 700 629 1000 
+Q 884 1300 1366 1694 
+Q 2113 2306 2375 2664 
+Q 2638 3022 2638 3341 
+Q 2638 3675 2398 3904 
+Q 2159 4134 1775 4134 
+Q 1369 4134 1125 3890 
+Q 881 3647 878 3216 
+L 300 3275 
+Q 359 3922 746 4261 
+Q 1134 4600 1788 4600 
+Q 2447 4600 2831 4234 
+Q 3216 3869 3216 3328 
+Q 3216 3053 3103 2787 
+Q 2991 2522 2730 2228 
+Q 2469 1934 1863 1422 
+Q 1356 997 1212 845 
+Q 1069 694 975 541 
+L 3222 541 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-32"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+       <use xlink:href="#ArialMT-30" x="111.230469"/>
+      </g>
+     </g>
+    </g>
+    <g id="xtick_5">
+     <g id="line2d_9">
+      <path d="M 804.2125 354.429375 
+L 804.2125 21.789375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_10"/>
+     <g id="text_5">
+      <!-- 300 -->
+      <g style="fill: #262626" transform="translate(795.871094 368.587188)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-33" d="M 269 1209 
+L 831 1284 
+Q 928 806 1161 595 
+Q 1394 384 1728 384 
+Q 2125 384 2398 659 
+Q 2672 934 2672 1341 
+Q 2672 1728 2419 1979 
+Q 2166 2231 1775 2231 
+Q 1616 2231 1378 2169 
+L 1441 2663 
+Q 1497 2656 1531 2656 
+Q 1891 2656 2178 2843 
+Q 2466 3031 2466 3422 
+Q 2466 3731 2256 3934 
+Q 2047 4138 1716 4138 
+Q 1388 4138 1169 3931 
+Q 950 3725 888 3313 
+L 325 3413 
+Q 428 3978 793 4289 
+Q 1159 4600 1703 4600 
+Q 2078 4600 2393 4439 
+Q 2709 4278 2876 4000 
+Q 3044 3722 3044 3409 
+Q 3044 3113 2884 2869 
+Q 2725 2625 2413 2481 
+Q 2819 2388 3044 2092 
+Q 3269 1797 3269 1353 
+Q 3269 753 2831 336 
+Q 2394 -81 1725 -81 
+Q 1122 -81 723 278 
+Q 325 638 269 1209 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-33"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+       <use xlink:href="#ArialMT-30" x="111.230469"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_6">
+     <!-- $x$ ($\mu$m) -->
+     <g style="fill: #262626" transform="translate(471.4575 378.604688)scale(0.11 -0.11)">
+      <defs>
+       <path id="DejaVuSans-Oblique-78" d="M 3841 3500 
+L 2234 1784 
+L 3219 0 
+L 2559 0 
+L 1819 1388 
+L 531 0 
+L -166 0 
+L 1556 1844 
+L 641 3500 
+L 1300 3500 
+L 1972 2234 
+L 3144 3500 
+L 3841 3500 
+z
+" transform="scale(0.015625)"/>
+       <path id="ArialMT-20" transform="scale(0.015625)"/>
+       <path id="ArialMT-28" d="M 1497 -1347 
+Q 1031 -759 709 28 
+Q 388 816 388 1659 
+Q 388 2403 628 3084 
+Q 909 3875 1497 4659 
+L 1900 4659 
+Q 1522 4009 1400 3731 
+Q 1209 3300 1100 2831 
+Q 966 2247 966 1656 
+Q 966 153 1900 -1347 
+L 1497 -1347 
+z
+" transform="scale(0.015625)"/>
+       <path id="DejaVuSans-Oblique-3bc" d="M -84 -1331 
+L 856 3500 
+L 1434 3500 
+L 1009 1322 
+Q 997 1256 987 1175 
+Q 978 1094 978 1013 
+Q 978 722 1161 565 
+Q 1344 409 1684 409 
+Q 2147 409 2431 671 
+Q 2716 934 2816 1459 
+L 3213 3500 
+L 3788 3500 
+L 3266 809 
+Q 3253 750 3248 706 
+Q 3244 663 3244 628 
+Q 3244 531 3283 486 
+Q 3322 441 3406 441 
+Q 3438 441 3492 456 
+Q 3547 472 3647 513 
+L 3559 50 
+Q 3422 -19 3297 -55 
+Q 3172 -91 3053 -91 
+Q 2847 -91 2730 40 
+Q 2613 172 2613 403 
+Q 2438 153 2195 31 
+Q 1953 -91 1625 -91 
+Q 1334 -91 1117 43 
+Q 900 178 831 397 
+L 494 -1331 
+L -84 -1331 
+z
+" transform="scale(0.015625)"/>
+       <path id="ArialMT-6d" d="M 422 0 
+L 422 3319 
+L 925 3319 
+L 925 2853 
+Q 1081 3097 1340 3245 
+Q 1600 3394 1931 3394 
+Q 2300 3394 2536 3241 
+Q 2772 3088 2869 2813 
+Q 3263 3394 3894 3394 
+Q 4388 3394 4653 3120 
+Q 4919 2847 4919 2278 
+L 4919 0 
+L 4359 0 
+L 4359 2091 
+Q 4359 2428 4304 2576 
+Q 4250 2725 4106 2815 
+Q 3963 2906 3769 2906 
+Q 3419 2906 3187 2673 
+Q 2956 2441 2956 1928 
+L 2956 0 
+L 2394 0 
+L 2394 2156 
+Q 2394 2531 2256 2718 
+Q 2119 2906 1806 2906 
+Q 1569 2906 1367 2781 
+Q 1166 2656 1075 2415 
+Q 984 2175 984 1722 
+L 984 0 
+L 422 0 
+z
+" transform="scale(0.015625)"/>
+       <path id="ArialMT-29" d="M 791 -1347 
+L 388 -1347 
+Q 1322 153 1322 1656 
+Q 1322 2244 1188 2822 
+Q 1081 3291 891 3722 
+Q 769 4003 388 4659 
+L 791 4659 
+Q 1378 3875 1659 3084 
+Q 1900 2403 1900 1659 
+Q 1900 816 1576 28 
+Q 1253 -759 791 -1347 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-Oblique-78" transform="translate(0 0.203125)"/>
+      <use xlink:href="#ArialMT-20" transform="translate(59.179688 0.203125)"/>
+      <use xlink:href="#ArialMT-28" transform="translate(86.962891 0.203125)"/>
+      <use xlink:href="#DejaVuSans-Oblique-3bc" transform="translate(120.263672 0.203125)"/>
+      <use xlink:href="#ArialMT-6d" transform="translate(183.886719 0.203125)"/>
+      <use xlink:href="#ArialMT-29" transform="translate(267.1875 0.203125)"/>
+     </g>
+    </g>
+   </g>
+   <g id="matplotlib.axis_2">
+    <g id="ytick_1">
+     <g id="line2d_11">
+      <path d="M 41.6125 354.429375 
+L 934.4125 354.429375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_12"/>
+     <g id="text_7">
+      <!-- −80 -->
+      <g style="fill: #262626" transform="translate(17.65 358.008281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-38" d="M 1131 2484 
+Q 781 2613 612 2850 
+Q 444 3088 444 3419 
+Q 444 3919 803 4259 
+Q 1163 4600 1759 4600 
+Q 2359 4600 2725 4251 
+Q 3091 3903 3091 3403 
+Q 3091 3084 2923 2848 
+Q 2756 2613 2416 2484 
+Q 2838 2347 3058 2040 
+Q 3278 1734 3278 1309 
+Q 3278 722 2862 322 
+Q 2447 -78 1769 -78 
+Q 1091 -78 675 323 
+Q 259 725 259 1325 
+Q 259 1772 486 2073 
+Q 713 2375 1131 2484 
+z
+M 1019 3438 
+Q 1019 3113 1228 2906 
+Q 1438 2700 1772 2700 
+Q 2097 2700 2305 2904 
+Q 2513 3109 2513 3406 
+Q 2513 3716 2298 3927 
+Q 2084 4138 1766 4138 
+Q 1444 4138 1231 3931 
+Q 1019 3725 1019 3438 
+z
+M 838 1322 
+Q 838 1081 952 856 
+Q 1066 631 1291 507 
+Q 1516 384 1775 384 
+Q 2178 384 2440 643 
+Q 2703 903 2703 1303 
+Q 2703 1709 2433 1975 
+Q 2163 2241 1756 2241 
+Q 1359 2241 1098 1978 
+Q 838 1716 838 1322 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-38" x="58.398438"/>
+       <use xlink:href="#ArialMT-30" x="114.013672"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_2">
+     <g id="line2d_13">
+      <path d="M 41.6125 310.077375 
+L 934.4125 310.077375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_14"/>
+     <g id="text_8">
+      <!-- −60 -->
+      <g style="fill: #262626" transform="translate(17.65 313.656281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-36" d="M 3184 3459 
+L 2625 3416 
+Q 2550 3747 2413 3897 
+Q 2184 4138 1850 4138 
+Q 1581 4138 1378 3988 
+Q 1113 3794 959 3422 
+Q 806 3050 800 2363 
+Q 1003 2672 1297 2822 
+Q 1591 2972 1913 2972 
+Q 2475 2972 2870 2558 
+Q 3266 2144 3266 1488 
+Q 3266 1056 3080 686 
+Q 2894 316 2569 119 
+Q 2244 -78 1831 -78 
+Q 1128 -78 684 439 
+Q 241 956 241 2144 
+Q 241 3472 731 4075 
+Q 1159 4600 1884 4600 
+Q 2425 4600 2770 4297 
+Q 3116 3994 3184 3459 
+z
+M 888 1484 
+Q 888 1194 1011 928 
+Q 1134 663 1356 523 
+Q 1578 384 1822 384 
+Q 2178 384 2434 671 
+Q 2691 959 2691 1453 
+Q 2691 1928 2437 2201 
+Q 2184 2475 1800 2475 
+Q 1419 2475 1153 2201 
+Q 888 1928 888 1484 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-36" x="58.398438"/>
+       <use xlink:href="#ArialMT-30" x="114.013672"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_3">
+     <g id="line2d_15">
+      <path d="M 41.6125 265.725375 
+L 934.4125 265.725375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_16"/>
+     <g id="text_9">
+      <!-- −40 -->
+      <g style="fill: #262626" transform="translate(17.65 269.304281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-34" d="M 2069 0 
+L 2069 1097 
+L 81 1097 
+L 81 1613 
+L 2172 4581 
+L 2631 4581 
+L 2631 1613 
+L 3250 1613 
+L 3250 1097 
+L 2631 1097 
+L 2631 0 
+L 2069 0 
+z
+M 2069 1613 
+L 2069 3678 
+L 634 1613 
+L 2069 1613 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-34" x="58.398438"/>
+       <use xlink:href="#ArialMT-30" x="114.013672"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_4">
+     <g id="line2d_17">
+      <path d="M 41.6125 221.373375 
+L 934.4125 221.373375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_18"/>
+     <g id="text_10">
+      <!-- −20 -->
+      <g style="fill: #262626" transform="translate(17.65 224.952281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-32" x="58.398438"/>
+       <use xlink:href="#ArialMT-30" x="114.013672"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_5">
+     <g id="line2d_19">
+      <path d="M 41.6125 177.021375 
+L 934.4125 177.021375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_20"/>
+     <g id="text_11">
+      <!-- 0 -->
+      <g style="fill: #262626" transform="translate(29.051563 180.600281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-30"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_6">
+     <g id="line2d_21">
+      <path d="M 41.6125 132.669375 
+L 934.4125 132.669375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_22"/>
+     <g id="text_12">
+      <!-- 20 -->
+      <g style="fill: #262626" transform="translate(23.490625 136.248281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-32"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_7">
+     <g id="line2d_23">
+      <path d="M 41.6125 88.317375 
+L 934.4125 88.317375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_24"/>
+     <g id="text_13">
+      <!-- 40 -->
+      <g style="fill: #262626" transform="translate(23.490625 91.896281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-34"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_8">
+     <g id="line2d_25">
+      <path d="M 41.6125 43.965375 
+L 934.4125 43.965375 
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #ffffff; stroke-linecap: round"/>
+     </g>
+     <g id="line2d_26"/>
+     <g id="text_14">
+      <!-- 60 -->
+      <g style="fill: #262626" transform="translate(23.490625 47.544281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-36"/>
+       <use xlink:href="#ArialMT-30" x="55.615234"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_15">
+     <!-- $y$ ($\mu$m) -->
+     <g style="fill: #262626" transform="translate(15.23 204.664375)rotate(-90)scale(0.11 -0.11)">
+      <defs>
+       <path id="DejaVuSans-Oblique-79" d="M 1588 -325 
+Q 1188 -997 936 -1164 
+Q 684 -1331 294 -1331 
+L -159 -1331 
+L -63 -850 
+L 269 -850 
+Q 509 -850 678 -719 
+Q 847 -588 1056 -206 
+L 1234 128 
+L 459 3500 
+L 1069 3500 
+L 1650 819 
+L 3256 3500 
+L 3859 3500 
+L 1588 -325 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-Oblique-79" transform="translate(0 0.203125)"/>
+      <use xlink:href="#ArialMT-20" transform="translate(59.179688 0.203125)"/>
+      <use xlink:href="#ArialMT-28" transform="translate(86.962891 0.203125)"/>
+      <use xlink:href="#DejaVuSans-Oblique-3bc" transform="translate(120.263672 0.203125)"/>
+      <use xlink:href="#ArialMT-6d" transform="translate(183.886719 0.203125)"/>
+      <use xlink:href="#ArialMT-29" transform="translate(267.1875 0.203125)"/>
+     </g>
+    </g>
+   </g>
+   <g id="PathCollection_1">
+    <path d="M 607.0525 240.355503 
+L 610.710752 239.114175 
+L 610.7725 238.942874 
+L 614.4925 238.050425 
+L 618.2125 236.884314 
+L 621.9325 235.096813 
+L 622.961035 234.678975 
+L 625.6525 233.929333 
+L 629.3725 232.49446 
+L 633.0925 230.758416 
+L 634.234762 230.243775 
+L 636.8125 229.347467 
+L 640.5325 227.731109 
+L 644.168419 225.808575 
+L 644.2525 225.774818 
+L 647.9725 224.213373 
+L 651.6925 222.173605 
+L 653.053532 221.373375 
+L 655.4125 220.249282 
+L 659.1325 218.043977 
+L 660.785242 216.938175 
+L 662.8525 215.817396 
+L 666.5725 213.257772 
+L 667.558788 212.502975 
+L 670.2925 210.768042 
+L 673.565114 208.067775 
+L 674.0125 207.77163 
+L 677.7325 205.50875 
+L 681.4525 203.993929 
+L 682.885897 203.632575 
+L 685.1725 203.256906 
+L 688.8925 202.276973 
+L 692.6125 199.574375 
+L 692.842948 199.197375 
+L 692.6125 199.052388 
+L 688.8925 197.491301 
+L 685.1725 196.393525 
+L 681.4525 195.562094 
+L 677.7325 194.968599 
+L 675.577688 194.762175 
+L 674.0125 194.333322 
+L 670.2925 194.549746 
+L 669.543293 194.762175 
+L 666.5725 195.324793 
+L 662.8525 196.603131 
+L 659.1325 198.43758 
+L 657.765705 199.197375 
+L 655.4125 200.24046 
+L 651.6925 202.348231 
+L 649.745283 203.632575 
+L 647.9725 204.564271 
+L 644.2525 206.980183 
+L 642.791288 208.067775 
+L 640.5325 209.403517 
+L 636.8125 212.266113 
+L 636.52863 212.502975 
+L 633.0925 214.77679 
+L 630.59725 216.938175 
+L 629.3725 217.714136 
+L 625.6525 220.867239 
+L 625.137846 221.373375 
+L 621.9325 223.675972 
+L 619.808551 225.808575 
+L 618.2125 226.794315 
+L 614.818012 230.243775 
+L 614.4925 230.464629 
+L 610.7725 233.438973 
+L 609.792256 234.678975 
+L 607.0525 237.074334 
+L 605.501412 239.114175 
+z
+" clip-path="url(#p868edd328b)" style="fill: #67001f"/>
+   </g>
+   <g id="PathCollection_2">
+    <path d="M 607.0525 240.681241 
+L 610.7725 239.567156 
+L 612.024041 239.114175 
+L 614.4925 238.424265 
+L 618.2125 237.429966 
+L 621.9325 235.93481 
+L 625.023819 234.678975 
+L 625.6525 234.503871 
+L 629.3725 233.385922 
+L 633.0925 231.957761 
+L 636.8125 230.291614 
+L 636.925803 230.243775 
+L 640.5325 228.982755 
+L 644.2525 227.335402 
+L 647.246091 225.808575 
+L 647.9725 225.506044 
+L 651.6925 223.818031 
+L 655.4125 221.688972 
+L 655.941661 221.373375 
+L 659.1325 219.756584 
+L 662.8525 217.347414 
+L 663.442473 216.938175 
+L 666.5725 215.079189 
+L 669.93882 212.502975 
+L 670.2925 212.278514 
+L 674.0125 209.613606 
+L 676.017639 208.067775 
+L 677.7325 207.063232 
+L 681.4525 205.554661 
+L 685.1725 204.566494 
+L 688.8925 203.767488 
+L 689.415944 203.632575 
+L 692.6125 202.126137 
+L 694.402759 199.197375 
+L 692.6125 198.071033 
+L 688.8925 196.659938 
+L 685.1725 195.691009 
+L 681.4525 194.991152 
+L 679.891516 194.762175 
+L 677.7325 193.929105 
+L 674.0125 193.007464 
+L 670.2925 193.120884 
+L 666.5725 194.056232 
+L 664.682856 194.762175 
+L 662.8525 195.285913 
+L 659.1325 196.744309 
+L 655.4125 198.72235 
+L 654.598886 199.197375 
+L 651.6925 200.609822 
+L 647.9725 202.928011 
+L 646.953133 203.632575 
+L 644.2525 205.187461 
+L 640.5325 207.928714 
+L 640.356871 208.067775 
+L 636.8125 210.404348 
+L 634.297375 212.502975 
+L 633.0925 213.300286 
+L 629.3725 216.385668 
+L 628.791961 216.938175 
+L 625.6525 219.30949 
+L 623.553879 221.373375 
+L 621.9325 222.538112 
+L 618.675307 225.808575 
+L 618.2125 226.09441 
+L 614.4925 229.580354 
+L 613.955442 230.243775 
+L 610.7725 232.664498 
+L 609.180019 234.678975 
+L 607.0525 236.539057 
+L 605.09439 239.114175 
+z
+M 605.501412 239.114175 
+L 607.0525 237.074334 
+L 609.792256 234.678975 
+L 610.7725 233.438973 
+L 614.4925 230.464629 
+L 614.818012 230.243775 
+L 618.2125 226.794315 
+L 619.808551 225.808575 
+L 621.9325 223.675972 
+L 625.137846 221.373375 
+L 625.6525 220.867239 
+L 629.3725 217.714136 
+L 630.59725 216.938175 
+L 633.0925 214.77679 
+L 636.52863 212.502975 
+L 636.8125 212.266113 
+L 640.5325 209.403517 
+L 642.791288 208.067775 
+L 644.2525 206.980183 
+L 647.9725 204.564271 
+L 649.745283 203.632575 
+L 651.6925 202.348231 
+L 655.4125 200.24046 
+L 657.765705 199.197375 
+L 659.1325 198.43758 
+L 662.8525 196.603131 
+L 666.5725 195.324793 
+L 669.543293 194.762175 
+L 670.2925 194.549746 
+L 674.0125 194.333322 
+L 675.577688 194.762175 
+L 677.7325 194.968599 
+L 681.4525 195.562094 
+L 685.1725 196.393525 
+L 688.8925 197.491301 
+L 692.6125 199.052388 
+L 692.842948 199.197375 
+L 692.6125 199.574375 
+L 688.8925 202.276973 
+L 685.1725 203.256906 
+L 682.885897 203.632575 
+L 681.4525 203.993929 
+L 677.7325 205.50875 
+L 674.0125 207.77163 
+L 673.565114 208.067775 
+L 670.2925 210.768042 
+L 667.558788 212.502975 
+L 666.5725 213.257772 
+L 662.8525 215.817396 
+L 660.785242 216.938175 
+L 659.1325 218.043977 
+L 655.4125 220.249282 
+L 653.053532 221.373375 
+L 651.6925 222.173605 
+L 647.9725 224.213373 
+L 644.2525 225.774818 
+L 644.168419 225.808575 
+L 640.5325 227.731109 
+L 636.8125 229.347467 
+L 634.234762 230.243775 
+L 633.0925 230.758416 
+L 629.3725 232.49446 
+L 625.6525 233.929333 
+L 622.961035 234.678975 
+L 621.9325 235.096813 
+L 618.2125 236.884314 
+L 614.4925 238.050425 
+L 610.7725 238.942874 
+L 610.710752 239.114175 
+L 607.0525 240.355503 
+z
+" clip-path="url(#p868edd328b)" style="fill: #760521"/>
+   </g>
+   <g id="PathCollection_3">
+    <path d="M 607.0525 241.006979 
+L 610.7725 240.051277 
+L 613.36162 239.114175 
+L 614.4925 238.798105 
+L 618.2125 237.975618 
+L 621.9325 236.772807 
+L 625.6525 235.459384 
+L 627.909821 234.678975 
+L 629.3725 234.277383 
+L 633.0925 233.157107 
+L 636.8125 231.803116 
+L 640.505686 230.243775 
+L 640.5325 230.2344 
+L 644.2525 228.918459 
+L 647.9725 227.285057 
+L 650.890627 225.808575 
+L 651.6925 225.462457 
+L 655.4125 223.704799 
+L 659.1325 221.508635 
+L 659.351928 221.373375 
+L 662.8525 219.474699 
+L 666.509243 216.938175 
+L 666.5725 216.900606 
+L 670.2925 214.477957 
+L 672.798715 212.502975 
+L 674.0125 211.659409 
+L 677.7325 208.950686 
+L 679.097709 208.067775 
+L 681.4525 207.115394 
+L 685.1725 206.047357 
+L 688.8925 205.163066 
+L 692.6125 204.180193 
+L 693.778714 203.632575 
+L 695.96257 199.197375 
+L 692.6125 197.089678 
+L 688.8925 195.828576 
+L 685.1725 194.988492 
+L 683.871441 194.762175 
+L 681.4525 193.721944 
+L 677.7325 192.427261 
+L 674.0125 191.681605 
+L 670.2925 191.692022 
+L 666.5725 192.336467 
+L 662.8525 193.511915 
+L 659.953489 194.762175 
+L 659.1325 195.051038 
+L 655.4125 196.633864 
+L 651.6925 198.726806 
+L 650.935116 199.197375 
+L 647.9725 200.775872 
+L 644.2525 203.28743 
+L 643.784226 203.632575 
+L 640.5325 205.692602 
+L 637.532741 208.067775 
+L 636.8125 208.542583 
+L 633.0925 211.420311 
+L 631.902651 212.502975 
+L 629.3725 214.422896 
+L 626.729605 216.938175 
+L 625.6525 217.75174 
+L 621.969913 221.373375 
+L 621.9325 221.400251 
+L 618.2125 224.797512 
+L 617.362773 225.808575 
+L 614.4925 228.322416 
+L 612.937106 230.243775 
+L 610.7725 231.890023 
+L 608.567782 234.678975 
+L 607.0525 236.00378 
+L 604.687368 239.114175 
+z
+M 605.09439 239.114175 
+L 607.0525 236.539057 
+L 609.180019 234.678975 
+L 610.7725 232.664498 
+L 613.955442 230.243775 
+L 614.4925 229.580354 
+L 618.2125 226.09441 
+L 618.675307 225.808575 
+L 621.9325 222.538112 
+L 623.553879 221.373375 
+L 625.6525 219.30949 
+L 628.791961 216.938175 
+L 629.3725 216.385668 
+L 633.0925 213.300286 
+L 634.297375 212.502975 
+L 636.8125 210.404348 
+L 640.356871 208.067775 
+L 640.5325 207.928714 
+L 644.2525 205.187461 
+L 646.953133 203.632575 
+L 647.9725 202.928011 
+L 651.6925 200.609822 
+L 654.598886 199.197375 
+L 655.4125 198.72235 
+L 659.1325 196.744309 
+L 662.8525 195.285913 
+L 664.682856 194.762175 
+L 666.5725 194.056232 
+L 670.2925 193.120884 
+L 674.0125 193.007464 
+L 677.7325 193.929105 
+L 679.891516 194.762175 
+L 681.4525 194.991152 
+L 685.1725 195.691009 
+L 688.8925 196.659938 
+L 692.6125 198.071033 
+L 694.402759 199.197375 
+L 692.6125 202.126137 
+L 689.415944 203.632575 
+L 688.8925 203.767488 
+L 685.1725 204.566494 
+L 681.4525 205.554661 
+L 677.7325 207.063232 
+L 676.017639 208.067775 
+L 674.0125 209.613606 
+L 670.2925 212.278514 
+L 669.93882 212.502975 
+L 666.5725 215.079189 
+L 663.442473 216.938175 
+L 662.8525 217.347414 
+L 659.1325 219.756584 
+L 655.941661 221.373375 
+L 655.4125 221.688972 
+L 651.6925 223.818031 
+L 647.9725 225.506044 
+L 647.246091 225.808575 
+L 644.2525 227.335402 
+L 640.5325 228.982755 
+L 636.925803 230.243775 
+L 636.8125 230.291614 
+L 633.0925 231.957761 
+L 629.3725 233.385922 
+L 625.6525 234.503871 
+L 625.023819 234.678975 
+L 621.9325 235.93481 
+L 618.2125 237.429966 
+L 614.4925 238.424265 
+L 612.024041 239.114175 
+L 610.7725 239.567156 
+L 607.0525 240.681241 
+z
+" clip-path="url(#p868edd328b)" style="fill: #960f27"/>
+   </g>
+   <g id="PathCollection_4">
+    <path d="M 607.0525 241.332718 
+L 610.7725 240.535398 
+L 614.4925 239.228647 
+L 614.955675 239.114175 
+L 618.2125 238.52127 
+L 621.9325 237.610805 
+L 625.6525 236.581909 
+L 629.3725 235.455222 
+L 631.8702 234.678975 
+L 633.0925 234.356452 
+L 636.8125 233.314619 
+L 640.5325 232.064732 
+L 644.2525 230.597744 
+L 645.120551 230.243775 
+L 647.9725 229.212668 
+L 651.6925 227.618451 
+L 655.217697 225.808575 
+L 655.4125 225.720626 
+L 659.1325 223.926274 
+L 662.8525 221.680958 
+L 663.329369 221.373375 
+L 666.5725 219.478014 
+L 670.07581 216.938175 
+L 670.2925 216.797654 
+L 674.0125 214.189162 
+L 676.17473 212.502975 
+L 677.7325 211.446362 
+L 681.4525 209.128103 
+L 683.37523 208.067775 
+L 685.1725 207.52822 
+L 688.8925 206.558643 
+L 692.6125 205.516993 
+L 696.3325 203.779205 
+L 696.440474 203.632575 
+L 697.040998 199.197375 
+L 696.3325 198.221064 
+L 692.6125 196.108323 
+L 688.8925 194.997213 
+L 687.797623 194.762175 
+L 685.1725 193.438182 
+L 681.4525 191.985184 
+L 677.7325 190.925417 
+L 674.0125 190.355747 
+L 672.796041 190.326975 
+L 670.2925 190.218888 
+L 669.512977 190.326975 
+L 666.5725 190.616702 
+L 662.8525 191.436421 
+L 659.1325 192.716608 
+L 655.4125 194.462332 
+L 654.847595 194.762175 
+L 651.6925 196.217182 
+L 647.9725 198.406985 
+L 646.790247 199.197375 
+L 644.2525 200.685858 
+L 640.5325 203.388439 
+L 640.226532 203.632575 
+L 636.8125 206.032777 
+L 634.442647 208.067775 
+L 633.0925 209.066699 
+L 629.3725 212.439032 
+L 629.309524 212.502975 
+L 625.6525 215.724306 
+L 624.526549 216.938175 
+L 621.9325 219.288436 
+L 620.098055 221.373375 
+L 618.2125 223.088505 
+L 615.926474 225.808575 
+L 614.4925 227.064478 
+L 611.918769 230.243775 
+L 610.7725 231.115547 
+L 607.955545 234.678975 
+L 607.0525 235.468504 
+L 604.280346 239.114175 
+z
+M 604.687368 239.114175 
+L 607.0525 236.00378 
+L 608.567782 234.678975 
+L 610.7725 231.890023 
+L 612.937106 230.243775 
+L 614.4925 228.322416 
+L 617.362773 225.808575 
+L 618.2125 224.797512 
+L 621.9325 221.400251 
+L 621.969913 221.373375 
+L 625.6525 217.75174 
+L 626.729605 216.938175 
+L 629.3725 214.422896 
+L 631.902651 212.502975 
+L 633.0925 211.420311 
+L 636.8125 208.542583 
+L 637.532741 208.067775 
+L 640.5325 205.692602 
+L 643.784226 203.632575 
+L 644.2525 203.28743 
+L 647.9725 200.775872 
+L 650.935116 199.197375 
+L 651.6925 198.726806 
+L 655.4125 196.633864 
+L 659.1325 195.051038 
+L 659.953489 194.762175 
+L 662.8525 193.511915 
+L 666.5725 192.336467 
+L 670.2925 191.692022 
+L 674.0125 191.681605 
+L 677.7325 192.427261 
+L 681.4525 193.721944 
+L 683.871441 194.762175 
+L 685.1725 194.988492 
+L 688.8925 195.828576 
+L 692.6125 197.089678 
+L 695.96257 199.197375 
+L 693.778714 203.632575 
+L 692.6125 204.180193 
+L 688.8925 205.163066 
+L 685.1725 206.047357 
+L 681.4525 207.115394 
+L 679.097709 208.067775 
+L 677.7325 208.950686 
+L 674.0125 211.659409 
+L 672.798715 212.502975 
+L 670.2925 214.477957 
+L 666.5725 216.900606 
+L 666.509243 216.938175 
+L 662.8525 219.474699 
+L 659.351928 221.373375 
+L 659.1325 221.508635 
+L 655.4125 223.704799 
+L 651.6925 225.462457 
+L 650.890627 225.808575 
+L 647.9725 227.285057 
+L 644.2525 228.918459 
+L 640.5325 230.2344 
+L 640.505686 230.243775 
+L 636.8125 231.803116 
+L 633.0925 233.157107 
+L 629.3725 234.277383 
+L 627.909821 234.678975 
+L 625.6525 235.459384 
+L 621.9325 236.772807 
+L 618.2125 237.975618 
+L 614.4925 238.798105 
+L 613.36162 239.114175 
+L 610.7725 240.051277 
+L 607.0525 241.006979 
+z
+" clip-path="url(#p868edd328b)" style="fill: #b3192c"/>
+   </g>
+   <g id="PathCollection_5">
+    <path d="M 607.0525 241.658456 
+L 610.7725 241.01952 
+L 614.4925 239.969407 
+L 617.952942 239.114175 
+L 618.2125 239.066923 
+L 621.9325 238.448802 
+L 625.6525 237.704433 
+L 629.3725 236.867831 
+L 633.0925 235.932549 
+L 636.8125 234.876885 
+L 637.505945 234.678975 
+L 640.5325 233.899431 
+L 644.2525 232.771832 
+L 647.9725 231.422634 
+L 650.807235 230.243775 
+L 651.6925 229.910825 
+L 655.4125 228.376623 
+L 659.1325 226.498413 
+L 660.373854 225.808575 
+L 662.8525 224.543113 
+L 666.5725 222.278141 
+L 667.906286 221.373375 
+L 670.2925 219.870432 
+L 674.0125 217.093315 
+L 674.213948 216.938175 
+L 677.7325 214.456733 
+L 680.357185 212.502975 
+L 681.4525 211.848387 
+L 685.1725 209.849287 
+L 688.470354 208.067775 
+L 688.8925 207.954221 
+L 692.6125 206.853794 
+L 696.3325 205.203497 
+L 697.489273 203.632575 
+L 697.969766 199.197375 
+L 696.3325 196.94122 
+L 692.6125 195.126968 
+L 691.342711 194.762175 
+L 688.8925 193.184271 
+L 685.1725 191.484949 
+L 681.716181 190.326975 
+L 681.4525 190.198576 
+L 677.7325 188.792429 
+L 674.0125 187.994373 
+L 670.2925 187.798734 
+L 666.5725 188.135617 
+L 662.8525 188.950014 
+L 659.1325 190.222911 
+L 658.882582 190.326975 
+L 655.4125 191.57382 
+L 651.6925 193.35589 
+L 649.285181 194.762175 
+L 647.9725 195.441665 
+L 644.2525 197.71394 
+L 642.211155 199.197375 
+L 640.5325 200.288162 
+L 636.8125 203.187571 
+L 636.304558 203.632575 
+L 633.0925 206.166779 
+L 631.087779 208.067775 
+L 629.3725 209.51017 
+L 626.424952 212.502975 
+L 625.6525 213.183398 
+L 622.169675 216.938175 
+L 621.9325 217.15306 
+L 618.219233 221.373375 
+L 618.2125 221.379499 
+L 614.4925 225.804519 
+L 614.489816 225.808575 
+L 610.900433 230.243775 
+L 610.7725 230.341072 
+L 607.343308 234.678975 
+L 607.0525 234.933227 
+L 603.873323 239.114175 
+z
+M 604.280346 239.114175 
+L 607.0525 235.468504 
+L 607.955545 234.678975 
+L 610.7725 231.115547 
+L 611.918769 230.243775 
+L 614.4925 227.064478 
+L 615.926474 225.808575 
+L 618.2125 223.088505 
+L 620.098055 221.373375 
+L 621.9325 219.288436 
+L 624.526549 216.938175 
+L 625.6525 215.724306 
+L 629.309524 212.502975 
+L 629.3725 212.439032 
+L 633.0925 209.066699 
+L 634.442647 208.067775 
+L 636.8125 206.032777 
+L 640.226532 203.632575 
+L 640.5325 203.388439 
+L 644.2525 200.685858 
+L 646.790247 199.197375 
+L 647.9725 198.406985 
+L 651.6925 196.217182 
+L 654.847595 194.762175 
+L 655.4125 194.462332 
+L 659.1325 192.716608 
+L 662.8525 191.436421 
+L 666.5725 190.616702 
+L 669.512977 190.326975 
+L 670.2925 190.218888 
+L 672.796041 190.326975 
+L 674.0125 190.355747 
+L 677.7325 190.925417 
+L 681.4525 191.985184 
+L 685.1725 193.438182 
+L 687.797623 194.762175 
+L 688.8925 194.997213 
+L 692.6125 196.108323 
+L 696.3325 198.221064 
+L 697.040998 199.197375 
+L 696.440474 203.632575 
+L 696.3325 203.779205 
+L 692.6125 205.516993 
+L 688.8925 206.558643 
+L 685.1725 207.52822 
+L 683.37523 208.067775 
+L 681.4525 209.128103 
+L 677.7325 211.446362 
+L 676.17473 212.502975 
+L 674.0125 214.189162 
+L 670.2925 216.797654 
+L 670.07581 216.938175 
+L 666.5725 219.478014 
+L 663.329369 221.373375 
+L 662.8525 221.680958 
+L 659.1325 223.926274 
+L 655.4125 225.720626 
+L 655.217697 225.808575 
+L 651.6925 227.618451 
+L 647.9725 229.212668 
+L 645.120551 230.243775 
+L 644.2525 230.597744 
+L 640.5325 232.064732 
+L 636.8125 233.314619 
+L 633.0925 234.356452 
+L 631.8702 234.678975 
+L 629.3725 235.455222 
+L 625.6525 236.581909 
+L 621.9325 237.610805 
+L 618.2125 238.52127 
+L 614.955675 239.114175 
+L 614.4925 239.228647 
+L 610.7725 240.535398 
+L 607.0525 241.332718 
+z
+" clip-path="url(#p868edd328b)" style="fill: #c2383a"/>
+   </g>
+   <g id="PathCollection_6">
+    <path d="M 607.0525 241.984194 
+L 610.7725 241.503641 
+L 614.4925 240.710168 
+L 618.2125 240.023557 
+L 621.9325 239.373582 
+L 623.591659 239.114175 
+L 625.6525 238.826957 
+L 629.3725 238.28044 
+L 633.0925 237.647226 
+L 636.8125 236.90984 
+L 640.5325 236.042449 
+L 644.2525 235.014364 
+L 645.373434 234.678975 
+L 647.9725 233.957349 
+L 651.6925 232.741663 
+L 655.4125 231.26251 
+L 657.648376 230.243775 
+L 659.1325 229.613783 
+L 662.8525 227.813217 
+L 666.265417 225.808575 
+L 666.5725 225.639836 
+L 670.2925 223.407779 
+L 673.148836 221.373375 
+L 674.0125 220.793306 
+L 677.7325 218.086003 
+L 679.203197 216.938175 
+L 681.4525 215.384769 
+L 685.1725 212.721577 
+L 685.463842 212.502975 
+L 688.8925 210.706218 
+L 692.6125 208.350399 
+L 692.922391 208.067775 
+L 696.3325 206.627789 
+L 698.538073 203.632575 
+L 698.898534 199.197375 
+L 696.3325 195.661376 
+L 694.368644 194.762175 
+L 692.6125 193.138042 
+L 688.8925 190.984445 
+L 687.31775 190.326975 
+L 685.1725 189.027462 
+L 681.4525 187.359666 
+L 677.7325 186.241352 
+L 675.734993 185.891775 
+L 674.0125 185.471494 
+L 670.2925 185.139114 
+L 666.5725 185.341004 
+L 663.541649 185.891775 
+L 662.8525 185.9917 
+L 659.1325 186.875534 
+L 655.4125 188.174168 
+L 651.6925 189.920925 
+L 650.951446 190.326975 
+L 647.9725 191.795185 
+L 644.2525 194.106759 
+L 643.33192 194.762175 
+L 640.5325 196.58446 
+L 637.25715 199.197375 
+L 636.8125 199.520086 
+L 633.0925 202.624594 
+L 632.059543 203.632575 
+L 629.3725 206.045069 
+L 627.476411 208.067775 
+L 625.6525 209.84199 
+L 623.359617 212.502975 
+L 621.9325 213.994583 
+L 619.598221 216.938175 
+L 618.2125 218.485538 
+L 616.111192 221.373375 
+L 614.4925 223.2976 
+L 612.831221 225.808575 
+L 610.7725 228.410734 
+L 609.69264 230.243775 
+L 607.0525 233.804497 
+L 606.616659 234.678975 
+L 603.466301 239.114175 
+z
+M 603.873323 239.114175 
+L 607.0525 234.933227 
+L 607.343308 234.678975 
+L 610.7725 230.341072 
+L 610.900433 230.243775 
+L 614.489816 225.808575 
+L 614.4925 225.804519 
+L 618.2125 221.379499 
+L 618.219233 221.373375 
+L 621.9325 217.15306 
+L 622.169675 216.938175 
+L 625.6525 213.183398 
+L 626.424952 212.502975 
+L 629.3725 209.51017 
+L 631.087779 208.067775 
+L 633.0925 206.166779 
+L 636.304558 203.632575 
+L 636.8125 203.187571 
+L 640.5325 200.288162 
+L 642.211155 199.197375 
+L 644.2525 197.71394 
+L 647.9725 195.441665 
+L 649.285181 194.762175 
+L 651.6925 193.35589 
+L 655.4125 191.57382 
+L 658.882582 190.326975 
+L 659.1325 190.222911 
+L 662.8525 188.950014 
+L 666.5725 188.135617 
+L 670.2925 187.798734 
+L 674.0125 187.994373 
+L 677.7325 188.792429 
+L 681.4525 190.198576 
+L 681.716181 190.326975 
+L 685.1725 191.484949 
+L 688.8925 193.184271 
+L 691.342711 194.762175 
+L 692.6125 195.126968 
+L 696.3325 196.94122 
+L 697.969766 199.197375 
+L 697.489273 203.632575 
+L 696.3325 205.203497 
+L 692.6125 206.853794 
+L 688.8925 207.954221 
+L 688.470354 208.067775 
+L 685.1725 209.849287 
+L 681.4525 211.848387 
+L 680.357185 212.502975 
+L 677.7325 214.456733 
+L 674.213948 216.938175 
+L 674.0125 217.093315 
+L 670.2925 219.870432 
+L 667.906286 221.373375 
+L 666.5725 222.278141 
+L 662.8525 224.543113 
+L 660.373854 225.808575 
+L 659.1325 226.498413 
+L 655.4125 228.376623 
+L 651.6925 229.910825 
+L 650.807235 230.243775 
+L 647.9725 231.422634 
+L 644.2525 232.771832 
+L 640.5325 233.899431 
+L 637.505945 234.678975 
+L 636.8125 234.876885 
+L 633.0925 235.932549 
+L 629.3725 236.867831 
+L 625.6525 237.704433 
+L 621.9325 238.448802 
+L 618.2125 239.066923 
+L 617.952942 239.114175 
+L 614.4925 239.969407 
+L 610.7725 241.01952 
+L 607.0525 241.658456 
+z
+" clip-path="url(#p868edd328b)" style="fill: #d05548"/>
+   </g>
+   <g id="PathCollection_7">
+    <path d="M 603.3325 239.653451 
+L 607.0525 242.309932 
+L 610.7725 241.987762 
+L 614.4925 241.450928 
+L 618.2125 241.019156 
+L 621.9325 240.632864 
+L 625.6525 240.258292 
+L 629.3725 239.865947 
+L 633.0925 239.425287 
+L 635.441727 239.114175 
+L 636.8125 238.942795 
+L 640.5325 238.413251 
+L 644.2525 237.745878 
+L 647.9725 236.909991 
+L 651.6925 235.871595 
+L 655.187612 234.678975 
+L 655.4125 234.606451 
+L 659.1325 233.281698 
+L 662.8525 231.643085 
+L 665.541099 230.243775 
+L 666.5725 229.731088 
+L 670.2925 227.645288 
+L 673.063927 225.808575 
+L 674.0125 225.204941 
+L 677.7325 222.589205 
+L 679.291236 221.373375 
+L 681.4525 219.803136 
+L 685.019437 216.938175 
+L 685.1725 216.833941 
+L 688.8925 214.172877 
+L 690.815406 212.502975 
+L 692.6125 211.426561 
+L 696.295333 208.067775 
+L 696.3325 208.05208 
+L 699.586873 203.632575 
+L 699.827302 199.197375 
+L 697.045128 194.762175 
+L 696.3325 193.723902 
+L 692.6125 190.552981 
+L 692.200061 190.326975 
+L 688.8925 187.766365 
+L 685.29555 185.891775 
+L 685.1725 185.811702 
+L 681.4525 183.920685 
+L 677.7325 182.66226 
+L 674.0125 181.914762 
+L 670.2925 181.589668 
+L 666.5725 181.633444 
+L 662.8525 182.035245 
+L 659.1325 182.808361 
+L 655.4125 183.977707 
+L 651.6925 185.580232 
+L 651.086419 185.891775 
+L 647.9725 187.340517 
+L 644.2525 189.549273 
+L 643.131929 190.326975 
+L 640.5325 191.997457 
+L 637.039228 194.762175 
+L 636.8125 194.92864 
+L 633.0925 198.059588 
+L 631.946097 199.197375 
+L 629.3725 201.605204 
+L 627.536162 203.632575 
+L 625.6525 205.591429 
+L 623.631458 208.067775 
+L 621.9325 210.025887 
+L 620.116455 212.502975 
+L 618.2125 214.944129 
+L 616.912346 216.938175 
+L 614.4925 220.436146 
+L 613.960414 221.373375 
+L 611.172626 225.808575 
+L 610.7725 226.314322 
+L 608.457625 230.243775 
+L 607.0525 232.138848 
+L 605.786498 234.678975 
+L 603.3325 238.293401 
+L 603.038778 239.114175 
+z
+M 603.466301 239.114175 
+L 606.616659 234.678975 
+L 607.0525 233.804497 
+L 609.69264 230.243775 
+L 610.7725 228.410734 
+L 612.831221 225.808575 
+L 614.4925 223.2976 
+L 616.111192 221.373375 
+L 618.2125 218.485538 
+L 619.598221 216.938175 
+L 621.9325 213.994583 
+L 623.359617 212.502975 
+L 625.6525 209.84199 
+L 627.476411 208.067775 
+L 629.3725 206.045069 
+L 632.059543 203.632575 
+L 633.0925 202.624594 
+L 636.8125 199.520086 
+L 637.25715 199.197375 
+L 640.5325 196.58446 
+L 643.33192 194.762175 
+L 644.2525 194.106759 
+L 647.9725 191.795185 
+L 650.951446 190.326975 
+L 651.6925 189.920925 
+L 655.4125 188.174168 
+L 659.1325 186.875534 
+L 662.8525 185.9917 
+L 663.541649 185.891775 
+L 666.5725 185.341004 
+L 670.2925 185.139114 
+L 674.0125 185.471494 
+L 675.734993 185.891775 
+L 677.7325 186.241352 
+L 681.4525 187.359666 
+L 685.1725 189.027462 
+L 687.31775 190.326975 
+L 688.8925 190.984445 
+L 692.6125 193.138042 
+L 694.368644 194.762175 
+L 696.3325 195.661376 
+L 698.898534 199.197375 
+L 698.538073 203.632575 
+L 696.3325 206.627789 
+L 692.922391 208.067775 
+L 692.6125 208.350399 
+L 688.8925 210.706218 
+L 685.463842 212.502975 
+L 685.1725 212.721577 
+L 681.4525 215.384769 
+L 679.203197 216.938175 
+L 677.7325 218.086003 
+L 674.0125 220.793306 
+L 673.148836 221.373375 
+L 670.2925 223.407779 
+L 666.5725 225.639836 
+L 666.265417 225.808575 
+L 662.8525 227.813217 
+L 659.1325 229.613783 
+L 657.648376 230.243775 
+L 655.4125 231.26251 
+L 651.6925 232.741663 
+L 647.9725 233.957349 
+L 645.373434 234.678975 
+L 644.2525 235.014364 
+L 640.5325 236.042449 
+L 636.8125 236.90984 
+L 633.0925 237.647226 
+L 629.3725 238.28044 
+L 625.6525 238.826957 
+L 623.591659 239.114175 
+L 621.9325 239.373582 
+L 618.2125 240.023557 
+L 614.4925 240.710168 
+L 610.7725 241.503641 
+L 607.0525 241.984194 
+z
+" clip-path="url(#p868edd328b)" style="fill: #de735c"/>
+   </g>
+   <g id="PathCollection_8">
+    <path d="M 603.3325 240.45682 
+L 607.0525 242.63567 
+L 610.7725 242.471883 
+L 614.4925 242.191689 
+L 618.2125 242.014755 
+L 621.9325 241.892146 
+L 625.6525 241.79581 
+L 629.3725 241.700473 
+L 633.0925 241.578682 
+L 636.8125 241.39992 
+L 640.5325 241.131693 
+L 644.2525 240.741007 
+L 647.9725 240.195033 
+L 651.6925 239.46054 
+L 653.136728 239.114175 
+L 655.4125 238.588061 
+L 659.1325 237.527503 
+L 662.8525 236.186144 
+L 666.243865 234.678975 
+L 666.5725 234.537454 
+L 670.2925 232.747111 
+L 674.0125 230.535135 
+L 674.459079 230.243775 
+L 677.7325 228.154521 
+L 680.843949 225.808575 
+L 681.4525 225.367571 
+L 685.1725 222.402021 
+L 686.306481 221.373375 
+L 688.8925 219.241884 
+L 691.221911 216.938175 
+L 692.6125 215.790906 
+L 695.561995 212.502975 
+L 696.3325 211.852998 
+L 698.890945 208.067775 
+L 700.0525 206.08634 
+L 700.75878 203.632575 
+L 701.095049 199.197375 
+L 700.0525 195.879538 
+L 699.441217 194.762175 
+L 696.439722 190.326975 
+L 696.3325 190.170671 
+L 692.6125 186.338312 
+L 691.967121 185.891775 
+L 688.8925 183.34505 
+L 685.584646 181.456575 
+L 685.1725 181.182186 
+L 681.4525 179.276443 
+L 677.7325 178.000821 
+L 674.0125 177.210515 
+L 672.254397 177.021375 
+L 670.2925 176.750166 
+L 666.5725 176.67943 
+L 662.880476 177.021375 
+L 662.8525 177.023496 
+L 659.1325 177.629846 
+L 655.4125 178.60019 
+L 651.6925 179.973153 
+L 648.624924 181.456575 
+L 647.9725 181.74273 
+L 644.2525 183.718862 
+L 641.030843 185.891775 
+L 640.5325 186.205146 
+L 636.8125 188.943066 
+L 635.240834 190.326975 
+L 633.0925 192.129352 
+L 630.458881 194.762175 
+L 629.3725 195.802947 
+L 626.363233 199.197375 
+L 625.6525 199.969621 
+L 622.773206 203.632575 
+L 621.9325 204.66914 
+L 619.577798 208.067775 
+L 618.2125 209.99632 
+L 616.704137 212.502975 
+L 614.4925 216.167075 
+L 614.101072 216.938175 
+L 611.671224 221.373375 
+L 610.7725 222.885717 
+L 609.38912 225.808575 
+L 607.22261 230.243775 
+L 607.0525 230.4732 
+L 604.956336 234.678975 
+L 603.3325 237.070679 
+L 602.601215 239.114175 
+z
+M 603.038778 239.114175 
+L 603.3325 238.293401 
+L 605.786498 234.678975 
+L 607.0525 232.138848 
+L 608.457625 230.243775 
+L 610.7725 226.314322 
+L 611.172626 225.808575 
+L 613.960414 221.373375 
+L 614.4925 220.436146 
+L 616.912346 216.938175 
+L 618.2125 214.944129 
+L 620.116455 212.502975 
+L 621.9325 210.025887 
+L 623.631458 208.067775 
+L 625.6525 205.591429 
+L 627.536162 203.632575 
+L 629.3725 201.605204 
+L 631.946097 199.197375 
+L 633.0925 198.059588 
+L 636.8125 194.92864 
+L 637.039228 194.762175 
+L 640.5325 191.997457 
+L 643.131929 190.326975 
+L 644.2525 189.549273 
+L 647.9725 187.340517 
+L 651.086419 185.891775 
+L 651.6925 185.580232 
+L 655.4125 183.977707 
+L 659.1325 182.808361 
+L 662.8525 182.035245 
+L 666.5725 181.633444 
+L 670.2925 181.589668 
+L 674.0125 181.914762 
+L 677.7325 182.66226 
+L 681.4525 183.920685 
+L 685.1725 185.811702 
+L 685.29555 185.891775 
+L 688.8925 187.766365 
+L 692.200061 190.326975 
+L 692.6125 190.552981 
+L 696.3325 193.723902 
+L 697.045128 194.762175 
+L 699.827302 199.197375 
+L 699.586873 203.632575 
+L 696.3325 208.05208 
+L 696.295333 208.067775 
+L 692.6125 211.426561 
+L 690.815406 212.502975 
+L 688.8925 214.172877 
+L 685.1725 216.833941 
+L 685.019437 216.938175 
+L 681.4525 219.803136 
+L 679.291236 221.373375 
+L 677.7325 222.589205 
+L 674.0125 225.204941 
+L 673.063927 225.808575 
+L 670.2925 227.645288 
+L 666.5725 229.731088 
+L 665.541099 230.243775 
+L 662.8525 231.643085 
+L 659.1325 233.281698 
+L 655.4125 234.606451 
+L 655.187612 234.678975 
+L 651.6925 235.871595 
+L 647.9725 236.909991 
+L 644.2525 237.745878 
+L 640.5325 238.413251 
+L 636.8125 238.942795 
+L 635.441727 239.114175 
+L 633.0925 239.425287 
+L 629.3725 239.865947 
+L 625.6525 240.258292 
+L 621.9325 240.632864 
+L 618.2125 241.019156 
+L 614.4925 241.450928 
+L 610.7725 241.987762 
+L 607.0525 242.309932 
+L 603.3325 239.653451 
+z
+" clip-path="url(#p868edd328b)" style="fill: #eb9172"/>
+   </g>
+   <g id="PathCollection_9">
+    <path d="M 633.0925 243.762481 
+L 636.8125 243.952229 
+L 640.5325 244.066748 
+L 644.2525 244.070486 
+L 647.9725 243.929954 
+L 651.6925 243.613961 
+L 652.199049 243.549375 
+L 655.4125 243.14862 
+L 659.1325 242.478162 
+L 662.8525 241.559681 
+L 666.5725 240.352515 
+L 669.618352 239.114175 
+L 670.2925 238.844184 
+L 674.0125 237.122924 
+L 677.7325 234.966235 
+L 678.17516 234.678975 
+L 681.4525 232.564353 
+L 684.43717 230.243775 
+L 685.1725 229.680945 
+L 688.8925 226.402003 
+L 689.473469 225.808575 
+L 692.6125 222.657662 
+L 693.665114 221.373375 
+L 696.3325 218.152786 
+L 697.117562 216.938175 
+L 699.769203 212.502975 
+L 700.0525 212.012978 
+L 701.541575 208.067775 
+L 702.028981 203.632575 
+L 702.471297 199.197375 
+L 702.075954 194.762175 
+L 700.445086 190.326975 
+L 700.0525 189.477592 
+L 697.83272 185.891775 
+L 696.3325 183.769824 
+L 694.101415 181.456575 
+L 692.6125 179.878257 
+L 688.921258 177.021375 
+L 688.8925 176.997504 
+L 685.1725 174.529563 
+L 681.4525 172.82342 
+L 680.734104 172.586175 
+L 677.7325 171.420921 
+L 674.0125 170.472073 
+L 670.2925 169.945764 
+L 666.5725 169.788984 
+L 662.8525 169.978179 
+L 659.1325 170.512918 
+L 655.4125 171.411355 
+L 652.023111 172.586175 
+L 651.6925 172.688259 
+L 647.9725 174.163922 
+L 644.2525 176.110171 
+L 642.818872 177.021375 
+L 640.5325 178.382582 
+L 636.8125 181.14197 
+L 636.446114 181.456575 
+L 633.0925 184.231507 
+L 631.42107 185.891775 
+L 629.3725 187.87774 
+L 627.231542 190.326975 
+L 625.6525 192.113485 
+L 623.645669 194.762175 
+L 621.9325 197.034078 
+L 620.524828 199.197375 
+L 618.2125 202.848726 
+L 617.783061 203.632575 
+L 615.332834 208.067775 
+L 614.4925 209.599527 
+L 613.131272 212.502975 
+L 611.146824 216.938175 
+L 610.7725 217.703686 
+L 609.289741 221.373375 
+L 607.565898 225.808575 
+L 607.0525 226.900416 
+L 605.860581 230.243775 
+L 604.126175 234.678975 
+L 603.3325 235.847957 
+L 602.163652 239.114175 
+L 603.3325 241.26019 
+L 607.0525 242.961408 
+L 610.7725 242.956005 
+L 614.4925 242.932449 
+L 618.2125 243.010354 
+L 621.9325 243.151428 
+L 625.6525 243.333328 
+L 629.3725 243.535 
+L 629.687014 243.549375 
+z
+M 602.601215 239.114175 
+L 603.3325 237.070679 
+L 604.956336 234.678975 
+L 607.0525 230.4732 
+L 607.22261 230.243775 
+L 609.38912 225.808575 
+L 610.7725 222.885717 
+L 611.671224 221.373375 
+L 614.101072 216.938175 
+L 614.4925 216.167075 
+L 616.704137 212.502975 
+L 618.2125 209.99632 
+L 619.577798 208.067775 
+L 621.9325 204.66914 
+L 622.773206 203.632575 
+L 625.6525 199.969621 
+L 626.363233 199.197375 
+L 629.3725 195.802947 
+L 630.458881 194.762175 
+L 633.0925 192.129352 
+L 635.240834 190.326975 
+L 636.8125 188.943066 
+L 640.5325 186.205146 
+L 641.030843 185.891775 
+L 644.2525 183.718862 
+L 647.9725 181.74273 
+L 648.624924 181.456575 
+L 651.6925 179.973153 
+L 655.4125 178.60019 
+L 659.1325 177.629846 
+L 662.8525 177.023496 
+L 662.880476 177.021375 
+L 666.5725 176.67943 
+L 670.2925 176.750166 
+L 672.254397 177.021375 
+L 674.0125 177.210515 
+L 677.7325 178.000821 
+L 681.4525 179.276443 
+L 685.1725 181.182186 
+L 685.584646 181.456575 
+L 688.8925 183.34505 
+L 691.967121 185.891775 
+L 692.6125 186.338312 
+L 696.3325 190.170671 
+L 696.439722 190.326975 
+L 699.441217 194.762175 
+L 700.0525 195.879538 
+L 701.095049 199.197375 
+L 700.75878 203.632575 
+L 700.0525 206.08634 
+L 698.890945 208.067775 
+L 696.3325 211.852998 
+L 695.561995 212.502975 
+L 692.6125 215.790906 
+L 691.221911 216.938175 
+L 688.8925 219.241884 
+L 686.306481 221.373375 
+L 685.1725 222.402021 
+L 681.4525 225.367571 
+L 680.843949 225.808575 
+L 677.7325 228.154521 
+L 674.459079 230.243775 
+L 674.0125 230.535135 
+L 670.2925 232.747111 
+L 666.5725 234.537454 
+L 666.243865 234.678975 
+L 662.8525 236.186144 
+L 659.1325 237.527503 
+L 655.4125 238.588061 
+L 653.136728 239.114175 
+L 651.6925 239.46054 
+L 647.9725 240.195033 
+L 644.2525 240.741007 
+L 640.5325 241.131693 
+L 636.8125 241.39992 
+L 633.0925 241.578682 
+L 629.3725 241.700473 
+L 625.6525 241.79581 
+L 621.9325 241.892146 
+L 618.2125 242.014755 
+L 614.4925 242.191689 
+L 610.7725 242.471883 
+L 607.0525 242.63567 
+L 603.3325 240.45682 
+z
+" clip-path="url(#p868edd328b)" style="fill: #f5aa89"/>
+   </g>
+   <g id="PathCollection_10">
+    <path d="M 647.9725 248.193403 
+L 651.6925 248.413007 
+L 655.4125 248.446607 
+L 659.1325 248.26937 
+L 661.768054 247.984575 
+L 662.8525 247.868557 
+L 666.5725 247.256281 
+L 670.2925 246.364128 
+L 674.0125 245.145498 
+L 677.713485 243.549375 
+L 677.7325 243.541159 
+L 681.4525 241.678054 
+L 685.1725 239.280991 
+L 685.399914 239.114175 
+L 688.8925 236.49301 
+L 690.881743 234.678975 
+L 692.6125 233.049292 
+L 695.107988 230.243775 
+L 696.3325 228.791177 
+L 698.439212 225.808575 
+L 700.0525 223.233299 
+L 701.025341 221.373375 
+L 702.914043 216.938175 
+L 703.7725 213.795849 
+L 704.069593 212.502975 
+L 704.402088 208.067775 
+L 703.7725 206.65322 
+L 703.299182 203.632575 
+L 703.7725 199.763547 
+L 703.939484 199.197375 
+L 705.208791 194.762175 
+L 704.908986 190.326975 
+L 703.7725 186.043437 
+L 703.725518 185.891775 
+L 701.873501 181.456575 
+L 700.0525 178.260386 
+L 699.170266 177.021375 
+L 696.3325 173.387411 
+L 695.526492 172.586175 
+L 692.6125 169.696066 
+L 690.552392 168.150975 
+L 688.8925 166.849446 
+L 685.1725 164.607629 
+L 683.176914 163.715775 
+L 681.4525 162.861692 
+L 677.7325 161.498119 
+L 674.0125 160.57956 
+L 670.2925 160.033019 
+L 666.5725 159.815475 
+L 662.8525 159.90722 
+L 659.1325 160.307524 
+L 655.4125 161.03194 
+L 651.6925 162.11128 
+L 647.9725 163.592601 
+L 647.721931 163.715775 
+L 644.2525 165.288979 
+L 640.5325 167.472591 
+L 639.568358 168.150975 
+L 636.8125 169.995528 
+L 633.692148 172.586175 
+L 633.0925 173.067342 
+L 629.3725 176.632559 
+L 629.025095 177.021375 
+L 625.6525 180.805224 
+L 625.156544 181.456575 
+L 621.9325 185.79996 
+L 621.873555 185.891775 
+L 619.043256 190.326975 
+L 618.2125 191.692077 
+L 616.584239 194.762175 
+L 614.4925 199.097358 
+L 614.450256 199.197375 
+L 612.551004 203.632575 
+L 610.898859 208.067775 
+L 610.7725 208.392467 
+L 609.396762 212.502975 
+L 608.056987 216.938175 
+L 607.0525 220.462197 
+L 606.835994 221.373375 
+L 605.64183 225.808575 
+L 604.478264 230.243775 
+L 603.3325 234.455642 
+L 603.290122 234.678975 
+L 601.726089 239.114175 
+L 603.3325 242.063559 
+L 607.0525 243.287146 
+L 610.7725 243.440126 
+L 612.909448 243.549375 
+L 614.4925 243.713304 
+L 618.2125 244.119872 
+L 621.9325 244.591239 
+L 625.6525 245.117601 
+L 629.3725 245.685722 
+L 633.0925 246.274222 
+L 636.8125 246.85253 
+L 640.5325 247.384444 
+L 644.2525 247.833955 
+L 646.032967 247.984575 
+z
+M 629.687014 243.549375 
+L 629.3725 243.535 
+L 625.6525 243.333328 
+L 621.9325 243.151428 
+L 618.2125 243.010354 
+L 614.4925 242.932449 
+L 610.7725 242.956005 
+L 607.0525 242.961408 
+L 603.3325 241.26019 
+L 602.163652 239.114175 
+L 603.3325 235.847957 
+L 604.126175 234.678975 
+L 605.860581 230.243775 
+L 607.0525 226.900416 
+L 607.565898 225.808575 
+L 609.289741 221.373375 
+L 610.7725 217.703686 
+L 611.146824 216.938175 
+L 613.131272 212.502975 
+L 614.4925 209.599527 
+L 615.332834 208.067775 
+L 617.783061 203.632575 
+L 618.2125 202.848726 
+L 620.524828 199.197375 
+L 621.9325 197.034078 
+L 623.645669 194.762175 
+L 625.6525 192.113485 
+L 627.231542 190.326975 
+L 629.3725 187.87774 
+L 631.42107 185.891775 
+L 633.0925 184.231507 
+L 636.446114 181.456575 
+L 636.8125 181.14197 
+L 640.5325 178.382582 
+L 642.818872 177.021375 
+L 644.2525 176.110171 
+L 647.9725 174.163922 
+L 651.6925 172.688259 
+L 652.023111 172.586175 
+L 655.4125 171.411355 
+L 659.1325 170.512918 
+L 662.8525 169.978179 
+L 666.5725 169.788984 
+L 670.2925 169.945764 
+L 674.0125 170.472073 
+L 677.7325 171.420921 
+L 680.734104 172.586175 
+L 681.4525 172.82342 
+L 685.1725 174.529563 
+L 688.8925 176.997504 
+L 688.921258 177.021375 
+L 692.6125 179.878257 
+L 694.101415 181.456575 
+L 696.3325 183.769824 
+L 697.83272 185.891775 
+L 700.0525 189.477592 
+L 700.445086 190.326975 
+L 702.075954 194.762175 
+L 702.471297 199.197375 
+L 702.028981 203.632575 
+L 701.541575 208.067775 
+L 700.0525 212.012978 
+L 699.769203 212.502975 
+L 697.117562 216.938175 
+L 696.3325 218.152786 
+L 693.665114 221.373375 
+L 692.6125 222.657662 
+L 689.473469 225.808575 
+L 688.8925 226.402003 
+L 685.1725 229.680945 
+L 684.43717 230.243775 
+L 681.4525 232.564353 
+L 678.17516 234.678975 
+L 677.7325 234.966235 
+L 674.0125 237.122924 
+L 670.2925 238.844184 
+L 669.618352 239.114175 
+L 666.5725 240.352515 
+L 662.8525 241.559681 
+L 659.1325 242.478162 
+L 655.4125 243.14862 
+L 652.199049 243.549375 
+L 651.6925 243.613961 
+L 647.9725 243.929954 
+L 644.2525 244.070486 
+L 640.5325 244.066748 
+L 636.8125 243.952229 
+L 633.0925 243.762481 
+z
+" clip-path="url(#p868edd328b)" style="fill: #f9c2a7"/>
+   </g>
+   <g id="PathCollection_11">
+    <path d="M 647.9725 253.048794 
+L 651.6925 253.932808 
+L 655.4125 254.652133 
+L 659.1325 255.191409 
+L 662.8525 255.535959 
+L 666.5725 255.667581 
+L 670.2925 255.562252 
+L 674.0125 255.188523 
+L 677.7325 254.505681 
+L 681.4525 253.460856 
+L 684.161471 252.419775 
+L 685.1725 252.023591 
+L 688.8925 250.193653 
+L 692.288121 247.984575 
+L 692.6125 247.764281 
+L 696.3325 244.756895 
+L 697.563795 243.549375 
+L 700.0525 240.873124 
+L 701.437709 239.114175 
+L 703.7725 235.678737 
+L 704.364659 234.678975 
+L 706.575846 230.243775 
+L 707.4925 227.784174 
+L 708.156193 225.808575 
+L 709.182245 221.373375 
+L 709.605589 216.938175 
+L 709.371456 212.502975 
+L 708.193709 208.067775 
+L 707.4925 207.435102 
+L 705.339407 203.632575 
+L 707.001785 199.197375 
+L 707.4925 197.935589 
+L 709.684036 194.762175 
+L 710.718428 190.326975 
+L 710.987515 185.891775 
+L 710.674918 181.456575 
+L 709.806314 177.021375 
+L 708.368145 172.586175 
+L 707.4925 170.50036 
+L 706.375523 168.150975 
+L 703.7725 163.752487 
+L 703.746923 163.715775 
+L 700.381484 159.280575 
+L 700.0525 158.879755 
+L 696.3325 155.10072 
+L 696.022974 154.845375 
+L 692.6125 152.008097 
+L 690.142754 150.410175 
+L 688.8925 149.570019 
+L 685.1725 147.55645 
+L 681.4525 146.050286 
+L 681.208955 145.974975 
+L 677.7325 144.792774 
+L 674.0125 143.911574 
+L 670.2925 143.369997 
+L 666.5725 143.138383 
+L 662.8525 143.202516 
+L 659.1325 143.561805 
+L 655.4125 144.228483 
+L 651.6925 145.227828 
+L 649.627313 145.974975 
+L 647.9725 146.52132 
+L 644.2525 148.103908 
+L 640.5325 150.145455 
+L 640.127728 150.410175 
+L 636.8125 152.469514 
+L 633.748123 154.845375 
+L 633.0925 155.335745 
+L 629.3725 158.668556 
+L 628.792467 159.280575 
+L 625.6525 162.595803 
+L 624.751748 163.715775 
+L 621.9325 167.30977 
+L 621.363886 168.150975 
+L 618.488852 172.586175 
+L 618.2125 173.02682 
+L 616.024889 177.021375 
+L 614.4925 180.124709 
+L 613.912239 181.456575 
+L 612.091028 185.891775 
+L 610.7725 189.585548 
+L 610.537357 190.326975 
+L 609.187576 194.762175 
+L 608.044092 199.197375 
+L 607.076649 203.632575 
+L 607.0525 203.742634 
+L 606.219738 208.067775 
+L 605.481491 212.502975 
+L 604.833329 216.938175 
+L 604.243885 221.373375 
+L 603.678233 225.808575 
+L 603.3325 228.057745 
+L 603.072166 230.243775 
+L 602.325903 234.678975 
+L 601.288525 239.114175 
+L 603.3325 242.866928 
+L 606.358081 243.549375 
+L 607.0525 243.639311 
+L 610.7725 244.111141 
+L 614.4925 244.693903 
+L 618.2125 245.363878 
+L 621.9325 246.114457 
+L 625.6525 246.942216 
+L 629.3725 247.838942 
+L 630.023155 247.984575 
+L 633.0925 248.870225 
+L 636.8125 249.960302 
+L 640.5325 251.042475 
+L 644.2525 252.06373 
+L 645.799787 252.419775 
+z
+M 646.032967 247.984575 
+L 644.2525 247.833955 
+L 640.5325 247.384444 
+L 636.8125 246.85253 
+L 633.0925 246.274222 
+L 629.3725 245.685722 
+L 625.6525 245.117601 
+L 621.9325 244.591239 
+L 618.2125 244.119872 
+L 614.4925 243.713304 
+L 612.909448 243.549375 
+L 610.7725 243.440126 
+L 607.0525 243.287146 
+L 603.3325 242.063559 
+L 601.726089 239.114175 
+L 603.290122 234.678975 
+L 603.3325 234.455642 
+L 604.478264 230.243775 
+L 605.64183 225.808575 
+L 606.835994 221.373375 
+L 607.0525 220.462197 
+L 608.056987 216.938175 
+L 609.396762 212.502975 
+L 610.7725 208.392467 
+L 610.898859 208.067775 
+L 612.551004 203.632575 
+L 614.450256 199.197375 
+L 614.4925 199.097358 
+L 616.584239 194.762175 
+L 618.2125 191.692077 
+L 619.043256 190.326975 
+L 621.873555 185.891775 
+L 621.9325 185.79996 
+L 625.156544 181.456575 
+L 625.6525 180.805224 
+L 629.025095 177.021375 
+L 629.3725 176.632559 
+L 633.0925 173.067342 
+L 633.692148 172.586175 
+L 636.8125 169.995528 
+L 639.568358 168.150975 
+L 640.5325 167.472591 
+L 644.2525 165.288979 
+L 647.721931 163.715775 
+L 647.9725 163.592601 
+L 651.6925 162.11128 
+L 655.4125 161.03194 
+L 659.1325 160.307524 
+L 662.8525 159.90722 
+L 666.5725 159.815475 
+L 670.2925 160.033019 
+L 674.0125 160.57956 
+L 677.7325 161.498119 
+L 681.4525 162.861692 
+L 683.176914 163.715775 
+L 685.1725 164.607629 
+L 688.8925 166.849446 
+L 690.552392 168.150975 
+L 692.6125 169.696066 
+L 695.526492 172.586175 
+L 696.3325 173.387411 
+L 699.170266 177.021375 
+L 700.0525 178.260386 
+L 701.873501 181.456575 
+L 703.725518 185.891775 
+L 703.7725 186.043437 
+L 704.908986 190.326975 
+L 705.208791 194.762175 
+L 703.939484 199.197375 
+L 703.7725 199.763547 
+L 703.299182 203.632575 
+L 703.7725 206.65322 
+L 704.402088 208.067775 
+L 704.069593 212.502975 
+L 703.7725 213.795849 
+L 702.914043 216.938175 
+L 701.025341 221.373375 
+L 700.0525 223.233299 
+L 698.439212 225.808575 
+L 696.3325 228.791177 
+L 695.107988 230.243775 
+L 692.6125 233.049292 
+L 690.881743 234.678975 
+L 688.8925 236.49301 
+L 685.399914 239.114175 
+L 685.1725 239.280991 
+L 681.4525 241.678054 
+L 677.7325 243.541159 
+L 677.713485 243.549375 
+L 674.0125 245.145498 
+L 670.2925 246.364128 
+L 666.5725 247.256281 
+L 662.8525 247.868557 
+L 661.768054 247.984575 
+L 659.1325 248.26937 
+L 655.4125 248.446607 
+L 651.6925 248.413007 
+L 647.9725 248.193403 
+z
+" clip-path="url(#p868edd328b)" style="fill: #fdd9c4"/>
+   </g>
+   <g id="PathCollection_12">
+    <path d="M 666.5725 266.040661 
+L 670.2925 267.219645 
+L 674.0125 268.202122 
+L 677.7325 268.958066 
+L 681.4525 269.455507 
+L 685.1725 269.660551 
+L 688.8925 269.534977 
+L 692.6125 269.031989 
+L 696.3325 268.09044 
+L 700.0525 266.627298 
+L 701.770898 265.725375 
+L 703.7725 264.609865 
+L 707.4925 261.876728 
+L 708.153555 261.290175 
+L 711.2125 258.242374 
+L 712.371153 256.854975 
+L 714.9325 253.211857 
+L 715.41882 252.419775 
+L 717.675511 247.984575 
+L 718.6525 245.389592 
+L 719.290111 243.549375 
+L 720.391953 239.114175 
+L 720.996005 234.678975 
+L 721.144228 230.243775 
+L 720.844372 225.808575 
+L 720.057413 221.373375 
+L 718.660069 216.938175 
+L 718.6525 216.925285 
+L 716.708901 212.502975 
+L 714.9325 210.336853 
+L 713.628611 208.067775 
+L 711.2125 206.762614 
+L 707.978741 203.632575 
+L 711.2125 199.680002 
+L 712.046431 199.197375 
+L 714.9325 196.344066 
+L 716.998594 194.762175 
+L 718.6525 192.02706 
+L 719.996817 190.326975 
+L 722.066709 185.891775 
+L 722.3725 184.835149 
+L 723.626245 181.456575 
+L 724.675275 177.021375 
+L 725.301199 172.586175 
+L 725.566538 168.150975 
+L 725.500963 163.715775 
+L 725.101905 159.280575 
+L 724.360094 154.845375 
+L 723.255318 150.410175 
+L 722.3725 147.668467 
+L 721.789062 145.974975 
+L 719.943647 141.539775 
+L 718.6525 138.934709 
+L 717.65506 137.104575 
+L 714.9325 132.751139 
+L 714.875143 132.669375 
+L 711.522259 128.234175 
+L 711.2125 127.852016 
+L 707.4925 123.841859 
+L 707.446623 123.798975 
+L 703.7725 120.436714 
+L 702.379022 119.363775 
+L 700.0525 117.571752 
+L 696.3325 115.190515 
+L 695.850613 114.928575 
+L 692.6125 113.114203 
+L 688.8925 111.429674 
+L 686.308405 110.493375 
+L 685.1725 110.059216 
+L 681.4525 108.927086 
+L 677.7325 108.092989 
+L 674.0125 107.530797 
+L 670.2925 107.222855 
+L 666.5725 107.159171 
+L 662.8525 107.336989 
+L 659.1325 107.760745 
+L 655.4125 108.442459 
+L 651.6925 109.402654 
+L 648.482569 110.493375 
+L 647.9725 110.65405 
+L 644.2525 112.114357 
+L 640.5325 113.947872 
+L 638.881548 114.928575 
+L 636.8125 116.098777 
+L 633.0925 118.64945 
+L 632.204931 119.363775 
+L 629.3725 121.584557 
+L 627.007106 123.798975 
+L 625.6525 125.052722 
+L 622.734126 128.234175 
+L 621.9325 129.113857 
+L 619.14651 132.669375 
+L 618.2125 133.896758 
+L 616.088121 137.104575 
+L 614.4925 139.660006 
+L 613.459222 141.539775 
+L 611.199086 145.974975 
+L 610.7725 146.861857 
+L 609.252697 150.410175 
+L 607.589612 154.845375 
+L 607.0525 156.414661 
+L 606.169094 159.280575 
+L 604.971324 163.715775 
+L 603.98238 168.150975 
+L 603.3325 171.659917 
+L 603.176306 172.586175 
+L 602.520246 177.021375 
+L 602.016493 181.456575 
+L 601.647857 185.891775 
+L 601.397652 190.326975 
+L 601.249457 194.762175 
+L 601.186832 199.197375 
+L 601.193019 203.632575 
+L 601.250599 208.067775 
+L 601.340996 212.502975 
+L 601.443756 216.938175 
+L 601.53508 221.373375 
+L 601.584964 225.808575 
+L 601.550886 230.243775 
+L 601.361684 234.678975 
+L 600.850962 239.114175 
+L 603.244966 243.549375 
+L 603.3325 243.602762 
+L 607.0525 244.100593 
+L 610.7725 244.836622 
+L 614.4925 245.674501 
+L 618.2125 246.607884 
+L 621.9325 247.637674 
+L 623.223049 247.984575 
+L 625.6525 248.822906 
+L 629.3725 250.172083 
+L 633.0925 251.646065 
+L 635.087363 252.419775 
+L 636.8125 253.266065 
+L 640.5325 255.017372 
+L 644.2525 256.75023 
+L 644.518259 256.854975 
+L 647.9725 258.558302 
+L 651.6925 260.248695 
+L 654.283282 261.290175 
+L 655.4125 261.844225 
+L 659.1325 263.385777 
+L 662.8525 264.776594 
+L 665.773489 265.725375 
+z
+M 645.799787 252.419775 
+L 644.2525 252.06373 
+L 640.5325 251.042475 
+L 636.8125 249.960302 
+L 633.0925 248.870225 
+L 630.023155 247.984575 
+L 629.3725 247.838942 
+L 625.6525 246.942216 
+L 621.9325 246.114457 
+L 618.2125 245.363878 
+L 614.4925 244.693903 
+L 610.7725 244.111141 
+L 607.0525 243.639311 
+L 606.358081 243.549375 
+L 603.3325 242.866928 
+L 601.288525 239.114175 
+L 602.325903 234.678975 
+L 603.072166 230.243775 
+L 603.3325 228.057745 
+L 603.678233 225.808575 
+L 604.243885 221.373375 
+L 604.833329 216.938175 
+L 605.481491 212.502975 
+L 606.219738 208.067775 
+L 607.0525 203.742634 
+L 607.076649 203.632575 
+L 608.044092 199.197375 
+L 609.187576 194.762175 
+L 610.537357 190.326975 
+L 610.7725 189.585548 
+L 612.091028 185.891775 
+L 613.912239 181.456575 
+L 614.4925 180.124709 
+L 616.024889 177.021375 
+L 618.2125 173.02682 
+L 618.488852 172.586175 
+L 621.363886 168.150975 
+L 621.9325 167.30977 
+L 624.751748 163.715775 
+L 625.6525 162.595803 
+L 628.792467 159.280575 
+L 629.3725 158.668556 
+L 633.0925 155.335745 
+L 633.748123 154.845375 
+L 636.8125 152.469514 
+L 640.127728 150.410175 
+L 640.5325 150.145455 
+L 644.2525 148.103908 
+L 647.9725 146.52132 
+L 649.627313 145.974975 
+L 651.6925 145.227828 
+L 655.4125 144.228483 
+L 659.1325 143.561805 
+L 662.8525 143.202516 
+L 666.5725 143.138383 
+L 670.2925 143.369997 
+L 674.0125 143.911574 
+L 677.7325 144.792774 
+L 681.208955 145.974975 
+L 681.4525 146.050286 
+L 685.1725 147.55645 
+L 688.8925 149.570019 
+L 690.142754 150.410175 
+L 692.6125 152.008097 
+L 696.022974 154.845375 
+L 696.3325 155.10072 
+L 700.0525 158.879755 
+L 700.381484 159.280575 
+L 703.746923 163.715775 
+L 703.7725 163.752487 
+L 706.375523 168.150975 
+L 707.4925 170.50036 
+L 708.368145 172.586175 
+L 709.806314 177.021375 
+L 710.674918 181.456575 
+L 710.987515 185.891775 
+L 710.718428 190.326975 
+L 709.684036 194.762175 
+L 707.4925 197.935589 
+L 707.001785 199.197375 
+L 705.339407 203.632575 
+L 707.4925 207.435102 
+L 708.193709 208.067775 
+L 709.371456 212.502975 
+L 709.605589 216.938175 
+L 709.182245 221.373375 
+L 708.156193 225.808575 
+L 707.4925 227.784174 
+L 706.575846 230.243775 
+L 704.364659 234.678975 
+L 703.7725 235.678737 
+L 701.437709 239.114175 
+L 700.0525 240.873124 
+L 697.563795 243.549375 
+L 696.3325 244.756895 
+L 692.6125 247.764281 
+L 692.288121 247.984575 
+L 688.8925 250.193653 
+L 685.1725 252.023591 
+L 684.161471 252.419775 
+L 681.4525 253.460856 
+L 677.7325 254.505681 
+L 674.0125 255.188523 
+L 670.2925 255.562252 
+L 666.5725 255.667581 
+L 662.8525 255.535959 
+L 659.1325 255.191409 
+L 655.4125 254.652133 
+L 651.6925 253.932808 
+L 647.9725 253.048794 
+z
+" clip-path="url(#p868edd328b)" style="fill: #fbe5d8"/>
+   </g>
+   <g id="PathCollection_13">
+    <path d="M 711.2125 354.429375 
+L 714.9325 354.429375 
+L 718.6525 354.429375 
+L 722.3725 354.429375 
+L 726.0925 354.429375 
+L 729.8125 354.429375 
+L 733.5325 354.429375 
+L 737.2525 354.429375 
+L 740.9725 354.429375 
+L 744.6925 354.429375 
+L 748.4125 354.429375 
+L 752.1325 354.429375 
+L 755.8525 354.429375 
+L 759.5725 354.429375 
+L 763.2925 354.429375 
+L 767.0125 354.429375 
+L 770.7325 354.429375 
+L 774.4525 354.429375 
+L 778.1725 354.429375 
+L 781.8925 354.429375 
+L 785.6125 354.429375 
+L 789.3325 354.429375 
+L 793.0525 354.429375 
+L 796.7725 354.429375 
+L 800.4925 354.429375 
+L 804.2125 354.429375 
+L 807.9325 354.429375 
+L 811.6525 354.429375 
+L 815.3725 354.429375 
+L 819.0925 354.429375 
+L 822.8125 354.429375 
+L 826.5325 354.429375 
+L 830.2525 354.429375 
+L 833.9725 354.429375 
+L 837.6925 354.429375 
+L 841.4125 354.429375 
+L 845.1325 354.429375 
+L 848.8525 354.429375 
+L 852.5725 354.429375 
+L 856.2925 354.429375 
+L 860.0125 354.429375 
+L 863.7325 354.429375 
+L 867.4525 354.429375 
+L 871.1725 354.429375 
+L 874.8925 354.429375 
+L 878.6125 354.429375 
+L 882.3325 354.429375 
+L 886.0525 354.429375 
+L 889.7725 354.429375 
+L 893.4925 354.429375 
+L 897.2125 354.429375 
+L 900.9325 354.429375 
+L 904.6525 354.429375 
+L 908.3725 354.429375 
+L 912.0925 354.429375 
+L 915.8125 354.429375 
+L 919.5325 354.429375 
+L 923.2525 354.429375 
+L 926.9725 354.429375 
+L 930.6925 354.429375 
+L 934.4125 354.429375 
+L 934.4125 349.994175 
+L 934.4125 345.558975 
+L 934.4125 341.123775 
+L 934.4125 336.688575 
+L 934.4125 332.253375 
+L 934.4125 327.818175 
+L 934.4125 323.382975 
+L 934.4125 318.947775 
+L 934.4125 314.512575 
+L 934.4125 310.077375 
+L 934.4125 305.642175 
+L 934.4125 301.206975 
+L 934.4125 296.771775 
+L 934.4125 292.336575 
+L 934.4125 287.901375 
+L 934.4125 283.466175 
+L 934.4125 279.030975 
+L 934.4125 274.595775 
+L 934.4125 270.160575 
+L 934.4125 265.725375 
+L 934.4125 261.290175 
+L 934.4125 256.854975 
+L 934.4125 252.419775 
+L 934.4125 247.984575 
+L 934.4125 243.549375 
+L 934.4125 239.114175 
+L 934.4125 234.678975 
+L 934.4125 230.243775 
+L 934.4125 225.808575 
+L 934.4125 221.373375 
+L 934.4125 216.938175 
+L 934.4125 212.502975 
+L 934.4125 208.067775 
+L 934.4125 203.632575 
+L 934.4125 199.197375 
+L 934.4125 194.762175 
+L 934.4125 190.326975 
+L 934.4125 185.891775 
+L 934.4125 181.456575 
+L 934.4125 177.021375 
+L 934.4125 172.586175 
+L 934.4125 168.150975 
+L 934.4125 163.715775 
+L 934.4125 159.280575 
+L 934.4125 154.845375 
+L 934.4125 150.410175 
+L 934.4125 145.974975 
+L 934.4125 141.539775 
+L 934.4125 137.104575 
+L 934.4125 132.669375 
+L 934.4125 128.234175 
+L 934.4125 123.798975 
+L 934.4125 119.363775 
+L 934.4125 114.928575 
+L 934.4125 110.493375 
+L 934.4125 106.058175 
+L 934.4125 101.622975 
+L 934.4125 97.187775 
+L 934.4125 92.752575 
+L 934.4125 88.317375 
+L 934.4125 83.882175 
+L 934.4125 79.446975 
+L 934.4125 75.011775 
+L 934.4125 70.576575 
+L 934.4125 66.141375 
+L 934.4125 61.706175 
+L 934.4125 57.270975 
+L 934.4125 52.835775 
+L 934.4125 48.400575 
+L 934.4125 43.965375 
+L 934.4125 39.530175 
+L 934.4125 35.094975 
+L 934.4125 30.659775 
+L 934.4125 26.224575 
+L 934.4125 21.789375 
+L 930.6925 21.789375 
+L 926.9725 21.789375 
+L 923.2525 21.789375 
+L 919.5325 21.789375 
+L 915.8125 21.789375 
+L 912.0925 21.789375 
+L 908.3725 21.789375 
+L 904.6525 21.789375 
+L 900.9325 21.789375 
+L 897.2125 21.789375 
+L 893.4925 21.789375 
+L 889.7725 21.789375 
+L 886.0525 21.789375 
+L 882.3325 21.789375 
+L 878.6125 21.789375 
+L 874.8925 21.789375 
+L 871.1725 21.789375 
+L 867.4525 21.789375 
+L 863.7325 21.789375 
+L 860.0125 21.789375 
+L 856.2925 21.789375 
+L 852.5725 21.789375 
+L 848.8525 21.789375 
+L 845.1325 21.789375 
+L 841.4125 21.789375 
+L 837.6925 21.789375 
+L 833.9725 21.789375 
+L 830.2525 21.789375 
+L 826.5325 21.789375 
+L 822.8125 21.789375 
+L 819.0925 21.789375 
+L 815.3725 21.789375 
+L 811.6525 21.789375 
+L 807.9325 21.789375 
+L 804.2125 21.789375 
+L 800.4925 21.789375 
+L 796.7725 21.789375 
+L 793.0525 21.789375 
+L 789.3325 21.789375 
+L 785.6125 21.789375 
+L 781.8925 21.789375 
+L 778.1725 21.789375 
+L 774.4525 21.789375 
+L 770.7325 21.789375 
+L 767.0125 21.789375 
+L 763.2925 21.789375 
+L 759.5725 21.789375 
+L 755.8525 21.789375 
+L 752.1325 21.789375 
+L 748.4125 21.789375 
+L 744.6925 21.789375 
+L 740.9725 21.789375 
+L 737.2525 21.789375 
+L 733.5325 21.789375 
+L 729.8125 21.789375 
+L 726.0925 21.789375 
+L 722.3725 21.789375 
+L 718.6525 21.789375 
+L 714.9325 21.789375 
+L 711.2125 21.789375 
+L 707.4925 21.789375 
+L 703.7725 21.789375 
+L 700.0525 21.789375 
+L 696.3325 21.789375 
+L 692.6125 21.789375 
+L 688.8925 21.789375 
+L 685.1725 21.789375 
+L 681.4525 21.789375 
+L 677.7325 21.789375 
+L 674.0125 21.789375 
+L 670.2925 21.789375 
+L 666.5725 21.789375 
+L 662.8525 21.789375 
+L 659.1325 21.789375 
+L 655.4125 21.789375 
+L 651.6925 21.789375 
+L 647.9725 21.789375 
+L 644.2525 21.789375 
+L 640.5325 21.789375 
+L 636.8125 21.789375 
+L 633.0925 21.789375 
+L 629.3725 21.789375 
+L 625.6525 21.789375 
+L 621.9325 21.789375 
+L 618.2125 21.789375 
+L 614.4925 21.789375 
+L 610.7725 21.789375 
+L 607.0525 21.789375 
+L 603.3325 21.789375 
+L 599.6125 21.789375 
+L 595.8925 21.789375 
+L 592.1725 21.789375 
+L 588.4525 21.789375 
+L 584.7325 21.789375 
+L 581.0125 21.789375 
+L 577.2925 21.789375 
+L 573.5725 21.789375 
+L 569.8525 21.789375 
+L 566.1325 21.789375 
+L 562.4125 21.789375 
+L 558.6925 21.789375 
+L 554.9725 21.789375 
+L 551.2525 21.789375 
+L 547.5325 21.789375 
+L 543.8125 21.789375 
+L 540.0925 21.789375 
+L 536.3725 21.789375 
+L 532.6525 21.789375 
+L 528.9325 21.789375 
+L 525.2125 21.789375 
+L 521.4925 21.789375 
+L 517.7725 21.789375 
+L 514.0525 21.789375 
+L 510.3325 21.789375 
+L 508.789329 21.789375 
+L 510.3325 24.257016 
+L 511.45225 26.224575 
+L 514.0525 30.561651 
+L 514.105942 30.659775 
+L 516.682689 35.094975 
+L 517.7725 36.872049 
+L 519.247423 39.530175 
+L 521.4925 43.374683 
+L 521.80405 43.965375 
+L 524.294023 48.400575 
+L 525.2125 49.946736 
+L 526.756067 52.835775 
+L 528.9325 56.715938 
+L 529.212034 57.270975 
+L 531.592911 61.706175 
+L 532.6525 63.577497 
+L 533.950433 66.141375 
+L 536.299568 70.576575 
+L 536.3725 70.70481 
+L 538.553194 75.011775 
+L 540.0925 77.926672 
+L 540.806228 79.446975 
+L 543.003349 83.882175 
+L 543.8125 85.42952 
+L 545.149863 88.317375 
+L 547.279874 92.752575 
+L 547.5325 93.246455 
+L 549.312328 97.187775 
+L 551.2525 101.392897 
+L 551.34614 101.622975 
+L 553.257603 106.058175 
+L 554.9725 110.007434 
+L 555.158017 110.493375 
+L 556.907053 114.928575 
+L 558.588249 119.363775 
+L 558.6925 119.675295 
+L 559.730227 123.798975 
+L 562.09235 128.234175 
+L 562.4125 128.432448 
+L 566.1325 132.088223 
+L 566.532041 132.669375 
+L 569.485197 137.104575 
+L 569.8525 137.641782 
+L 571.981638 141.539775 
+L 573.5725 144.425626 
+L 574.274329 145.974975 
+L 576.36273 150.410175 
+L 577.2925 152.31437 
+L 578.319202 154.845375 
+L 580.170372 159.280575 
+L 581.0125 161.205721 
+L 581.9256 163.715775 
+L 583.598821 168.150975 
+L 584.7325 171.067579 
+L 585.221489 172.586175 
+L 586.746095 177.021375 
+L 588.259026 181.456575 
+L 588.4525 181.969413 
+L 589.661218 185.891775 
+L 591.029342 190.326975 
+L 592.1725 194.012791 
+L 592.360604 194.762175 
+L 593.57966 199.197375 
+L 594.760869 203.632575 
+L 595.8925 208.044847 
+L 595.897137 208.067775 
+L 596.899849 212.502975 
+L 597.835689 216.938175 
+L 598.691518 221.373375 
+L 599.449348 225.808575 
+L 599.6125 226.710846 
+L 600.029606 230.243775 
+L 600.397466 234.678975 
+L 600.413399 239.114175 
+L 602.66342 243.549375 
+L 603.3325 243.957453 
+L 607.0525 244.561874 
+L 610.7725 245.562104 
+L 614.4925 246.6551 
+L 618.2125 247.851891 
+L 618.663932 247.984575 
+L 621.9325 249.219553 
+L 625.6525 250.778319 
+L 629.19531 252.419775 
+L 629.3725 252.519404 
+L 633.0925 254.527386 
+L 636.8125 256.777015 
+L 636.955962 256.854975 
+L 640.5325 259.335558 
+L 643.418553 261.290175 
+L 644.2525 262.00709 
+L 647.9725 264.773631 
+L 649.414014 265.725375 
+L 651.6925 267.539213 
+L 655.278048 270.160575 
+L 655.4125 270.276093 
+L 659.1325 273.114575 
+L 661.16904 274.595775 
+L 662.8525 276.058084 
+L 666.393146 279.030975 
+L 666.5725 279.216625 
+L 670.2925 282.777469 
+L 671.075559 283.466175 
+L 674.0125 286.85857 
+L 675.04665 287.901375 
+L 677.7325 291.569541 
+L 678.419427 292.336575 
+L 681.372496 296.771775 
+L 681.4525 296.933394 
+L 684.254446 301.206975 
+L 685.1725 302.993809 
+L 686.958023 305.642175 
+L 688.8925 309.137288 
+L 689.559123 310.077375 
+L 692.193049 314.512575 
+L 692.6125 315.335381 
+L 694.853915 318.947775 
+L 696.3325 321.88922 
+L 697.252708 323.382975 
+L 699.342693 327.818175 
+L 700.0525 330.031621 
+L 701.08175 332.253375 
+L 702.705856 336.688575 
+L 703.7725 339.834054 
+L 704.36217 341.123775 
+L 706.198834 345.558975 
+L 707.4925 348.771622 
+L 708.110239 349.994175 
+L 710.184194 354.429375 
+z
+M 802.76096 279.030975 
+L 800.4925 278.308606 
+L 796.7725 276.759634 
+L 793.0525 274.789467 
+L 792.764804 274.595775 
+L 789.3325 272.726437 
+L 785.6125 270.173913 
+L 785.596878 270.160575 
+L 781.8925 267.570818 
+L 779.789027 265.725375 
+L 778.1725 264.557631 
+L 774.569472 261.290175 
+L 774.4525 261.202369 
+L 770.7325 257.746259 
+L 769.957724 256.854975 
+L 767.0125 254.018906 
+L 765.667458 252.419775 
+L 763.2925 250.05274 
+L 761.603539 247.984575 
+L 759.5725 245.903077 
+L 757.693838 243.549375 
+L 755.8525 241.629525 
+L 753.870376 239.114175 
+L 752.1325 237.29832 
+L 750.066292 234.678975 
+L 748.4125 232.981639 
+L 746.210771 230.243775 
+L 744.6925 228.752801 
+L 742.220584 225.808575 
+L 740.9725 224.676347 
+L 737.983806 221.373375 
+L 737.2525 220.790635 
+L 733.5325 217.159077 
+L 733.347397 216.938175 
+L 729.8125 214.171274 
+L 728.127547 212.502975 
+L 726.0925 211.407435 
+L 722.3725 208.777539 
+L 721.597737 208.067775 
+L 718.6525 207.350291 
+L 714.9325 205.911256 
+L 711.546373 203.632575 
+L 714.9325 201.069286 
+L 718.6525 199.771255 
+L 721.854207 199.197375 
+L 722.3725 198.885268 
+L 726.0925 197.022304 
+L 729.8125 195.3696 
+L 731.364058 194.762175 
+L 733.5325 193.251262 
+L 737.2525 191.028281 
+L 738.606131 190.326975 
+L 740.9725 188.523104 
+L 744.6925 186.092877 
+L 745.049358 185.891775 
+L 748.4125 183.336488 
+L 751.303653 181.456575 
+L 752.1325 180.760612 
+L 755.8525 178.094969 
+L 757.607409 177.021375 
+L 759.5725 175.515765 
+L 763.2925 173.095686 
+L 764.216292 172.586175 
+L 767.0125 170.685886 
+L 770.7325 168.552884 
+L 771.57032 168.150975 
+L 774.4525 166.457932 
+L 778.1725 164.632757 
+L 780.434887 163.715775 
+L 781.8925 162.992146 
+L 785.6125 161.494049 
+L 789.3325 160.279446 
+L 793.0525 159.316783 
+L 793.24689 159.280575 
+L 796.7725 158.466015 
+L 800.4925 157.868238 
+L 804.2125 157.518021 
+L 807.9325 157.411394 
+L 811.6525 157.551551 
+L 815.3725 157.948134 
+L 819.0925 158.616284 
+L 821.75608 159.280575 
+L 822.8125 159.549727 
+L 826.5325 160.72694 
+L 830.2525 162.243363 
+L 833.237683 163.715775 
+L 833.9725 164.108452 
+L 837.6925 166.303075 
+L 840.399922 168.150975 
+L 841.4125 168.929588 
+L 845.1325 172.012043 
+L 845.79737 172.586175 
+L 848.8525 175.650792 
+L 850.176632 177.021375 
+L 852.5725 179.969221 
+L 853.791548 181.456575 
+L 856.2925 185.156678 
+L 856.809894 185.891775 
+L 859.402253 190.326975 
+L 860.0125 191.621338 
+L 861.627525 194.762175 
+L 863.438285 199.197375 
+L 863.7325 200.087479 
+L 865.055345 203.632575 
+L 866.388848 208.067775 
+L 867.4525 212.188076 
+L 867.546215 212.502975 
+L 869.462959 216.938175 
+L 868.560835 221.373375 
+L 868.235462 225.808575 
+L 867.785058 230.243775 
+L 867.4525 232.443071 
+L 867.14369 234.678975 
+L 866.283269 239.114175 
+L 865.103763 243.549375 
+L 863.7325 247.477097 
+L 863.561176 247.984575 
+L 861.748934 252.419775 
+L 860.0125 255.779259 
+L 859.44947 256.854975 
+L 856.667473 261.290175 
+L 856.2925 261.809824 
+L 853.269552 265.725375 
+L 852.5725 266.514754 
+L 848.97924 270.160575 
+L 848.8525 270.276851 
+L 845.1325 273.373351 
+L 843.361725 274.595775 
+L 841.4125 275.86777 
+L 837.6925 277.864507 
+L 834.870132 279.030975 
+L 833.9725 279.397615 
+L 830.2525 280.608821 
+L 826.5325 281.425687 
+L 822.8125 281.892716 
+L 819.0925 282.04104 
+L 815.3725 281.888986 
+L 811.6525 281.44185 
+L 807.9325 280.690793 
+L 804.2125 279.610572 
+z
+M 665.773489 265.725375 
+L 662.8525 264.776594 
+L 659.1325 263.385777 
+L 655.4125 261.844225 
+L 654.283282 261.290175 
+L 651.6925 260.248695 
+L 647.9725 258.558302 
+L 644.518259 256.854975 
+L 644.2525 256.75023 
+L 640.5325 255.017372 
+L 636.8125 253.266065 
+L 635.087363 252.419775 
+L 633.0925 251.646065 
+L 629.3725 250.172083 
+L 625.6525 248.822906 
+L 623.223049 247.984575 
+L 621.9325 247.637674 
+L 618.2125 246.607884 
+L 614.4925 245.674501 
+L 610.7725 244.836622 
+L 607.0525 244.100593 
+L 603.3325 243.602762 
+L 603.244966 243.549375 
+L 600.850962 239.114175 
+L 601.361684 234.678975 
+L 601.550886 230.243775 
+L 601.584964 225.808575 
+L 601.53508 221.373375 
+L 601.443756 216.938175 
+L 601.340996 212.502975 
+L 601.250599 208.067775 
+L 601.193019 203.632575 
+L 601.186832 199.197375 
+L 601.249457 194.762175 
+L 601.397652 190.326975 
+L 601.647857 185.891775 
+L 602.016493 181.456575 
+L 602.520246 177.021375 
+L 603.176306 172.586175 
+L 603.3325 171.659917 
+L 603.98238 168.150975 
+L 604.971324 163.715775 
+L 606.169094 159.280575 
+L 607.0525 156.414661 
+L 607.589612 154.845375 
+L 609.252697 150.410175 
+L 610.7725 146.861857 
+L 611.199086 145.974975 
+L 613.459222 141.539775 
+L 614.4925 139.660006 
+L 616.088121 137.104575 
+L 618.2125 133.896758 
+L 619.14651 132.669375 
+L 621.9325 129.113857 
+L 622.734126 128.234175 
+L 625.6525 125.052722 
+L 627.007106 123.798975 
+L 629.3725 121.584557 
+L 632.204931 119.363775 
+L 633.0925 118.64945 
+L 636.8125 116.098777 
+L 638.881548 114.928575 
+L 640.5325 113.947872 
+L 644.2525 112.114357 
+L 647.9725 110.65405 
+L 648.482569 110.493375 
+L 651.6925 109.402654 
+L 655.4125 108.442459 
+L 659.1325 107.760745 
+L 662.8525 107.336989 
+L 666.5725 107.159171 
+L 670.2925 107.222855 
+L 674.0125 107.530797 
+L 677.7325 108.092989 
+L 681.4525 108.927086 
+L 685.1725 110.059216 
+L 686.308405 110.493375 
+L 688.8925 111.429674 
+L 692.6125 113.114203 
+L 695.850613 114.928575 
+L 696.3325 115.190515 
+L 700.0525 117.571752 
+L 702.379022 119.363775 
+L 703.7725 120.436714 
+L 707.446623 123.798975 
+L 707.4925 123.841859 
+L 711.2125 127.852016 
+L 711.522259 128.234175 
+L 714.875143 132.669375 
+L 714.9325 132.751139 
+L 717.65506 137.104575 
+L 718.6525 138.934709 
+L 719.943647 141.539775 
+L 721.789062 145.974975 
+L 722.3725 147.668467 
+L 723.255318 150.410175 
+L 724.360094 154.845375 
+L 725.101905 159.280575 
+L 725.500963 163.715775 
+L 725.566538 168.150975 
+L 725.301199 172.586175 
+L 724.675275 177.021375 
+L 723.626245 181.456575 
+L 722.3725 184.835149 
+L 722.066709 185.891775 
+L 719.996817 190.326975 
+L 718.6525 192.02706 
+L 716.998594 194.762175 
+L 714.9325 196.344066 
+L 712.046431 199.197375 
+L 711.2125 199.680002 
+L 707.978741 203.632575 
+L 711.2125 206.762614 
+L 713.628611 208.067775 
+L 714.9325 210.336853 
+L 716.708901 212.502975 
+L 718.6525 216.925285 
+L 718.660069 216.938175 
+L 720.057413 221.373375 
+L 720.844372 225.808575 
+L 721.144228 230.243775 
+L 720.996005 234.678975 
+L 720.391953 239.114175 
+L 719.290111 243.549375 
+L 718.6525 245.389592 
+L 717.675511 247.984575 
+L 715.41882 252.419775 
+L 714.9325 253.211857 
+L 712.371153 256.854975 
+L 711.2125 258.242374 
+L 708.153555 261.290175 
+L 707.4925 261.876728 
+L 703.7725 264.609865 
+L 701.770898 265.725375 
+L 700.0525 266.627298 
+L 696.3325 268.09044 
+L 692.6125 269.031989 
+L 688.8925 269.534977 
+L 685.1725 269.660551 
+L 681.4525 269.455507 
+L 677.7325 268.958066 
+L 674.0125 268.202122 
+L 670.2925 267.219645 
+L 666.5725 266.040661 
+z
+" clip-path="url(#p868edd328b)" style="fill: #f8f1ed"/>
+    <path d="M 402.4525 181.974122 
+L 406.1725 182.534089 
+L 409.8925 182.93869 
+L 413.6125 183.148085 
+L 417.3325 182.783362 
+L 421.0525 182.283647 
+L 424.7725 181.596483 
+L 425.367532 181.456575 
+L 424.7725 181.284765 
+L 421.0525 180.127957 
+L 417.3325 178.520052 
+L 415.097188 177.021375 
+L 413.6125 176.403469 
+L 409.8925 175.09851 
+L 406.1725 174.23023 
+L 402.4525 173.882708 
+L 398.7325 173.793922 
+L 395.0125 174.866684 
+L 391.365201 177.021375 
+L 395.0125 179.21772 
+L 398.7325 181.02552 
+L 400.310436 181.456575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #f8f1ed"/>
+    <path d="M 324.3325 179.431422 
+L 328.0525 180.057907 
+L 331.7725 180.245735 
+L 335.4925 180.240766 
+L 339.2125 180.121617 
+L 342.9325 179.924531 
+L 346.6525 179.669605 
+L 350.3725 179.369574 
+L 354.0925 179.033561 
+L 357.8125 178.66901 
+L 361.5325 178.28293 
+L 365.2525 177.882947 
+L 368.9725 177.478517 
+L 372.6925 177.082731 
+L 373.311479 177.021375 
+L 372.6925 176.948651 
+L 368.9725 176.483445 
+L 365.2525 176.014791 
+L 361.5325 175.557758 
+L 357.8125 175.122671 
+L 354.0925 174.717445 
+L 350.3725 174.34957 
+L 346.6525 174.02619 
+L 342.9325 173.75631 
+L 339.2125 173.55295 
+L 335.4925 173.43706 
+L 331.7725 173.446867 
+L 328.0525 173.665584 
+L 324.3325 174.352628 
+L 321.523917 177.021375 
+z
+" clip-path="url(#p868edd328b)" style="fill: #f8f1ed"/>
+   </g>
+   <g id="PathCollection_14">
+    <path d="M 45.3325 354.429375 
+L 49.0525 354.429375 
+L 52.7725 354.429375 
+L 56.4925 354.429375 
+L 60.2125 354.429375 
+L 63.9325 354.429375 
+L 67.6525 354.429375 
+L 71.3725 354.429375 
+L 75.0925 354.429375 
+L 78.8125 354.429375 
+L 82.5325 354.429375 
+L 86.2525 354.429375 
+L 89.9725 354.429375 
+L 93.6925 354.429375 
+L 97.4125 354.429375 
+L 101.1325 354.429375 
+L 104.8525 354.429375 
+L 108.5725 354.429375 
+L 112.2925 354.429375 
+L 116.0125 354.429375 
+L 119.7325 354.429375 
+L 123.4525 354.429375 
+L 127.1725 354.429375 
+L 130.8925 354.429375 
+L 134.6125 354.429375 
+L 138.3325 354.429375 
+L 142.0525 354.429375 
+L 145.7725 354.429375 
+L 149.4925 354.429375 
+L 153.2125 354.429375 
+L 156.9325 354.429375 
+L 160.6525 354.429375 
+L 164.3725 354.429375 
+L 168.0925 354.429375 
+L 171.8125 354.429375 
+L 175.5325 354.429375 
+L 179.2525 354.429375 
+L 182.9725 354.429375 
+L 186.6925 354.429375 
+L 190.4125 354.429375 
+L 194.1325 354.429375 
+L 197.8525 354.429375 
+L 201.5725 354.429375 
+L 205.2925 354.429375 
+L 209.0125 354.429375 
+L 212.7325 354.429375 
+L 216.4525 354.429375 
+L 220.1725 354.429375 
+L 223.8925 354.429375 
+L 227.6125 354.429375 
+L 231.3325 354.429375 
+L 235.0525 354.429375 
+L 238.7725 354.429375 
+L 242.4925 354.429375 
+L 246.2125 354.429375 
+L 249.9325 354.429375 
+L 253.6525 354.429375 
+L 257.3725 354.429375 
+L 261.0925 354.429375 
+L 264.8125 354.429375 
+L 268.5325 354.429375 
+L 272.2525 354.429375 
+L 275.9725 354.429375 
+L 279.6925 354.429375 
+L 283.4125 354.429375 
+L 287.1325 354.429375 
+L 290.8525 354.429375 
+L 294.5725 354.429375 
+L 298.2925 354.429375 
+L 302.0125 354.429375 
+L 305.7325 354.429375 
+L 309.4525 354.429375 
+L 313.1725 354.429375 
+L 316.8925 354.429375 
+L 320.6125 354.429375 
+L 324.3325 354.429375 
+L 328.0525 354.429375 
+L 331.7725 354.429375 
+L 335.4925 354.429375 
+L 339.2125 354.429375 
+L 342.9325 354.429375 
+L 346.6525 354.429375 
+L 350.3725 354.429375 
+L 354.0925 354.429375 
+L 357.8125 354.429375 
+L 361.5325 354.429375 
+L 365.2525 354.429375 
+L 368.9725 354.429375 
+L 372.6925 354.429375 
+L 376.4125 354.429375 
+L 380.1325 354.429375 
+L 383.8525 354.429375 
+L 387.5725 354.429375 
+L 391.2925 354.429375 
+L 395.0125 354.429375 
+L 398.7325 354.429375 
+L 402.4525 354.429375 
+L 406.1725 354.429375 
+L 409.8925 354.429375 
+L 413.6125 354.429375 
+L 417.3325 354.429375 
+L 421.0525 354.429375 
+L 424.7725 354.429375 
+L 428.4925 354.429375 
+L 432.2125 354.429375 
+L 435.9325 354.429375 
+L 439.6525 354.429375 
+L 443.3725 354.429375 
+L 447.0925 354.429375 
+L 450.8125 354.429375 
+L 454.5325 354.429375 
+L 458.2525 354.429375 
+L 461.9725 354.429375 
+L 465.6925 354.429375 
+L 469.4125 354.429375 
+L 473.1325 354.429375 
+L 476.8525 354.429375 
+L 480.5725 354.429375 
+L 484.2925 354.429375 
+L 488.0125 354.429375 
+L 491.7325 354.429375 
+L 495.4525 354.429375 
+L 499.1725 354.429375 
+L 502.8925 354.429375 
+L 506.6125 354.429375 
+L 510.3325 354.429375 
+L 514.0525 354.429375 
+L 517.7725 354.429375 
+L 521.4925 354.429375 
+L 525.2125 354.429375 
+L 528.9325 354.429375 
+L 532.6525 354.429375 
+L 536.3725 354.429375 
+L 540.0925 354.429375 
+L 543.8125 354.429375 
+L 547.5325 354.429375 
+L 551.2525 354.429375 
+L 554.9725 354.429375 
+L 558.6925 354.429375 
+L 562.4125 354.429375 
+L 566.1325 354.429375 
+L 569.8525 354.429375 
+L 573.5725 354.429375 
+L 577.2925 354.429375 
+L 581.0125 354.429375 
+L 584.7325 354.429375 
+L 588.4525 354.429375 
+L 592.1725 354.429375 
+L 595.8925 354.429375 
+L 599.6125 354.429375 
+L 603.3325 354.429375 
+L 607.0525 354.429375 
+L 610.7725 354.429375 
+L 614.4925 354.429375 
+L 618.2125 354.429375 
+L 621.9325 354.429375 
+L 625.6525 354.429375 
+L 629.3725 354.429375 
+L 633.0925 354.429375 
+L 636.8125 354.429375 
+L 640.5325 354.429375 
+L 644.2525 354.429375 
+L 647.9725 354.429375 
+L 651.6925 354.429375 
+L 655.4125 354.429375 
+L 659.1325 354.429375 
+L 662.8525 354.429375 
+L 666.5725 354.429375 
+L 670.2925 354.429375 
+L 674.0125 354.429375 
+L 677.7325 354.429375 
+L 681.4525 354.429375 
+L 685.1725 354.429375 
+L 688.8925 354.429375 
+L 692.6125 354.429375 
+L 696.3325 354.429375 
+L 700.0525 354.429375 
+L 703.7725 354.429375 
+L 707.4925 354.429375 
+L 710.184194 354.429375 
+L 708.110239 349.994175 
+L 707.4925 348.771622 
+L 706.198834 345.558975 
+L 704.36217 341.123775 
+L 703.7725 339.834054 
+L 702.705856 336.688575 
+L 701.08175 332.253375 
+L 700.0525 330.031621 
+L 699.342693 327.818175 
+L 697.252708 323.382975 
+L 696.3325 321.88922 
+L 694.853915 318.947775 
+L 692.6125 315.335381 
+L 692.193049 314.512575 
+L 689.559123 310.077375 
+L 688.8925 309.137288 
+L 686.958023 305.642175 
+L 685.1725 302.993809 
+L 684.254446 301.206975 
+L 681.4525 296.933394 
+L 681.372496 296.771775 
+L 678.419427 292.336575 
+L 677.7325 291.569541 
+L 675.04665 287.901375 
+L 674.0125 286.85857 
+L 671.075559 283.466175 
+L 670.2925 282.777469 
+L 666.5725 279.216625 
+L 666.393146 279.030975 
+L 662.8525 276.058084 
+L 661.16904 274.595775 
+L 659.1325 273.114575 
+L 655.4125 270.276093 
+L 655.278048 270.160575 
+L 651.6925 267.539213 
+L 649.414014 265.725375 
+L 647.9725 264.773631 
+L 644.2525 262.00709 
+L 643.418553 261.290175 
+L 640.5325 259.335558 
+L 636.955962 256.854975 
+L 636.8125 256.777015 
+L 633.0925 254.527386 
+L 629.3725 252.519404 
+L 629.19531 252.419775 
+L 625.6525 250.778319 
+L 621.9325 249.219553 
+L 618.663932 247.984575 
+L 618.2125 247.851891 
+L 614.4925 246.6551 
+L 610.7725 245.562104 
+L 607.0525 244.561874 
+L 603.3325 243.957453 
+L 602.66342 243.549375 
+L 600.413399 239.114175 
+L 600.397466 234.678975 
+L 600.029606 230.243775 
+L 599.6125 226.710846 
+L 599.449348 225.808575 
+L 598.691518 221.373375 
+L 597.835689 216.938175 
+L 596.899849 212.502975 
+L 595.897137 208.067775 
+L 595.8925 208.044847 
+L 594.760869 203.632575 
+L 593.57966 199.197375 
+L 592.360604 194.762175 
+L 592.1725 194.012791 
+L 591.029342 190.326975 
+L 589.661218 185.891775 
+L 588.4525 181.969413 
+L 588.259026 181.456575 
+L 586.746095 177.021375 
+L 585.221489 172.586175 
+L 584.7325 171.067579 
+L 583.598821 168.150975 
+L 581.9256 163.715775 
+L 581.0125 161.205721 
+L 580.170372 159.280575 
+L 578.319202 154.845375 
+L 577.2925 152.31437 
+L 576.36273 150.410175 
+L 574.274329 145.974975 
+L 573.5725 144.425626 
+L 571.981638 141.539775 
+L 569.8525 137.641782 
+L 569.485197 137.104575 
+L 566.532041 132.669375 
+L 566.1325 132.088223 
+L 562.4125 128.432448 
+L 562.09235 128.234175 
+L 559.730227 123.798975 
+L 558.6925 119.675295 
+L 558.588249 119.363775 
+L 556.907053 114.928575 
+L 555.158017 110.493375 
+L 554.9725 110.007434 
+L 553.257603 106.058175 
+L 551.34614 101.622975 
+L 551.2525 101.392897 
+L 549.312328 97.187775 
+L 547.5325 93.246455 
+L 547.279874 92.752575 
+L 545.149863 88.317375 
+L 543.8125 85.42952 
+L 543.003349 83.882175 
+L 540.806228 79.446975 
+L 540.0925 77.926672 
+L 538.553194 75.011775 
+L 536.3725 70.70481 
+L 536.299568 70.576575 
+L 533.950433 66.141375 
+L 532.6525 63.577497 
+L 531.592911 61.706175 
+L 529.212034 57.270975 
+L 528.9325 56.715938 
+L 526.756067 52.835775 
+L 525.2125 49.946736 
+L 524.294023 48.400575 
+L 521.80405 43.965375 
+L 521.4925 43.374683 
+L 519.247423 39.530175 
+L 517.7725 36.872049 
+L 516.682689 35.094975 
+L 514.105942 30.659775 
+L 514.0525 30.561651 
+L 511.45225 26.224575 
+L 510.3325 24.257016 
+L 508.789329 21.789375 
+L 506.6125 21.789375 
+L 502.8925 21.789375 
+L 499.1725 21.789375 
+L 495.4525 21.789375 
+L 491.7325 21.789375 
+L 488.0125 21.789375 
+L 484.2925 21.789375 
+L 480.5725 21.789375 
+L 476.8525 21.789375 
+L 473.1325 21.789375 
+L 469.4125 21.789375 
+L 465.6925 21.789375 
+L 461.9725 21.789375 
+L 458.2525 21.789375 
+L 454.5325 21.789375 
+L 450.8125 21.789375 
+L 447.0925 21.789375 
+L 443.3725 21.789375 
+L 439.6525 21.789375 
+L 435.9325 21.789375 
+L 432.2125 21.789375 
+L 428.4925 21.789375 
+L 424.7725 21.789375 
+L 421.0525 21.789375 
+L 417.3325 21.789375 
+L 413.6125 21.789375 
+L 409.8925 21.789375 
+L 406.1725 21.789375 
+L 402.4525 21.789375 
+L 398.7325 21.789375 
+L 395.0125 21.789375 
+L 391.2925 21.789375 
+L 387.5725 21.789375 
+L 383.8525 21.789375 
+L 380.1325 21.789375 
+L 376.4125 21.789375 
+L 372.6925 21.789375 
+L 368.9725 21.789375 
+L 365.2525 21.789375 
+L 361.5325 21.789375 
+L 357.8125 21.789375 
+L 354.0925 21.789375 
+L 350.3725 21.789375 
+L 346.6525 21.789375 
+L 342.9325 21.789375 
+L 339.2125 21.789375 
+L 335.4925 21.789375 
+L 331.7725 21.789375 
+L 328.0525 21.789375 
+L 324.3325 21.789375 
+L 320.6125 21.789375 
+L 316.8925 21.789375 
+L 313.1725 21.789375 
+L 309.4525 21.789375 
+L 305.7325 21.789375 
+L 302.0125 21.789375 
+L 298.2925 21.789375 
+L 294.5725 21.789375 
+L 290.8525 21.789375 
+L 287.1325 21.789375 
+L 283.4125 21.789375 
+L 279.6925 21.789375 
+L 275.9725 21.789375 
+L 272.2525 21.789375 
+L 268.5325 21.789375 
+L 264.8125 21.789375 
+L 261.0925 21.789375 
+L 257.3725 21.789375 
+L 253.6525 21.789375 
+L 249.9325 21.789375 
+L 246.2125 21.789375 
+L 242.4925 21.789375 
+L 238.7725 21.789375 
+L 235.0525 21.789375 
+L 231.3325 21.789375 
+L 227.6125 21.789375 
+L 223.8925 21.789375 
+L 220.1725 21.789375 
+L 216.4525 21.789375 
+L 212.7325 21.789375 
+L 209.0125 21.789375 
+L 205.2925 21.789375 
+L 201.5725 21.789375 
+L 197.8525 21.789375 
+L 194.1325 21.789375 
+L 190.4125 21.789375 
+L 186.6925 21.789375 
+L 182.9725 21.789375 
+L 179.2525 21.789375 
+L 175.5325 21.789375 
+L 171.8125 21.789375 
+L 168.0925 21.789375 
+L 164.3725 21.789375 
+L 160.6525 21.789375 
+L 156.9325 21.789375 
+L 153.2125 21.789375 
+L 149.4925 21.789375 
+L 145.7725 21.789375 
+L 142.0525 21.789375 
+L 138.3325 21.789375 
+L 134.6125 21.789375 
+L 130.8925 21.789375 
+L 127.1725 21.789375 
+L 123.4525 21.789375 
+L 119.7325 21.789375 
+L 116.0125 21.789375 
+L 112.2925 21.789375 
+L 108.5725 21.789375 
+L 104.8525 21.789375 
+L 101.1325 21.789375 
+L 97.4125 21.789375 
+L 93.6925 21.789375 
+L 89.9725 21.789375 
+L 86.2525 21.789375 
+L 82.5325 21.789375 
+L 78.8125 21.789375 
+L 75.0925 21.789375 
+L 71.3725 21.789375 
+L 67.6525 21.789375 
+L 63.9325 21.789375 
+L 60.2125 21.789375 
+L 56.4925 21.789375 
+L 52.7725 21.789375 
+L 49.0525 21.789375 
+L 45.3325 21.789375 
+L 41.6125 21.789375 
+L 41.6125 26.224575 
+L 41.6125 30.659775 
+L 41.6125 35.094975 
+L 41.6125 39.530175 
+L 41.6125 43.965375 
+L 41.6125 48.400575 
+L 41.6125 52.835775 
+L 41.6125 57.270975 
+L 41.6125 61.706175 
+L 41.6125 66.141375 
+L 41.6125 70.576575 
+L 41.6125 75.011775 
+L 41.6125 79.446975 
+L 41.6125 83.882175 
+L 41.6125 88.317375 
+L 41.6125 92.752575 
+L 41.6125 97.187775 
+L 41.6125 101.622975 
+L 41.6125 106.058175 
+L 41.6125 110.493375 
+L 41.6125 114.928575 
+L 41.6125 119.363775 
+L 41.6125 123.798975 
+L 41.6125 128.234175 
+L 41.6125 132.669375 
+L 41.6125 137.104575 
+L 41.6125 141.539775 
+L 41.6125 145.974975 
+L 41.6125 150.410175 
+L 41.6125 154.845375 
+L 41.6125 159.280575 
+L 41.6125 163.715775 
+L 41.6125 168.150975 
+L 41.6125 172.586175 
+L 41.6125 177.021375 
+L 41.6125 181.456575 
+L 41.6125 185.891775 
+L 41.6125 190.326975 
+L 41.6125 194.762175 
+L 41.6125 199.197375 
+L 41.6125 203.632575 
+L 41.6125 208.067775 
+L 41.6125 212.502975 
+L 41.6125 216.938175 
+L 41.6125 221.373375 
+L 41.6125 225.808575 
+L 41.6125 230.243775 
+L 41.6125 234.678975 
+L 41.6125 239.114175 
+L 41.6125 243.549375 
+L 41.6125 247.984575 
+L 41.6125 252.419775 
+L 41.6125 256.854975 
+L 41.6125 261.290175 
+L 41.6125 265.725375 
+L 41.6125 270.160575 
+L 41.6125 274.595775 
+L 41.6125 279.030975 
+L 41.6125 283.466175 
+L 41.6125 287.901375 
+L 41.6125 292.336575 
+L 41.6125 296.771775 
+L 41.6125 301.206975 
+L 41.6125 305.642175 
+L 41.6125 310.077375 
+L 41.6125 314.512575 
+L 41.6125 318.947775 
+L 41.6125 323.382975 
+L 41.6125 327.818175 
+L 41.6125 332.253375 
+L 41.6125 336.688575 
+L 41.6125 341.123775 
+L 41.6125 345.558975 
+L 41.6125 349.994175 
+L 41.6125 354.429375 
+z
+M 583.964077 318.947775 
+L 581.0125 318.59923 
+L 577.2925 318.091561 
+L 573.5725 317.501272 
+L 569.8525 316.814487 
+L 566.1325 316.015468 
+L 562.4125 315.086863 
+L 560.397578 314.512575 
+L 558.6925 314.055576 
+L 554.9725 312.920204 
+L 551.2525 311.605925 
+L 547.5325 310.089164 
+L 547.506133 310.077375 
+L 543.8125 308.491494 
+L 540.0925 306.65003 
+L 538.268014 305.642175 
+L 536.3725 304.622575 
+L 532.6525 302.380254 
+L 530.898474 301.206975 
+L 528.9325 299.906263 
+L 525.2125 297.153744 
+L 524.733517 296.771775 
+L 521.4925 294.172985 
+L 519.416785 292.336575 
+L 517.7725 290.857762 
+L 514.76058 287.901375 
+L 514.0525 287.187862 
+L 510.625464 283.466175 
+L 510.3325 283.135637 
+L 506.918188 279.030975 
+L 506.6125 278.644527 
+L 503.574319 274.595775 
+L 502.8925 273.627625 
+L 500.552375 270.160575 
+L 499.1725 267.949556 
+L 497.828852 265.725375 
+L 495.4525 261.396486 
+L 495.395444 261.290175 
+L 493.151489 256.854975 
+L 491.7325 253.671464 
+L 491.178758 252.419775 
+L 489.388437 247.984575 
+L 488.0125 244.013417 
+L 487.850082 243.549375 
+L 486.438949 239.114175 
+L 485.253787 234.678975 
+L 484.2925 230.34441 
+L 484.269302 230.243775 
+L 483.366029 225.808575 
+L 482.613549 221.373375 
+L 481.965783 216.938175 
+L 481.353714 212.502975 
+L 480.669292 208.067775 
+L 480.5725 207.646352 
+L 479.658301 203.632575 
+L 478.100878 199.197375 
+L 476.8525 197.346765 
+L 475.561972 194.762175 
+L 473.1325 192.094969 
+L 472.283495 190.326975 
+L 473.1325 189.410734 
+L 476.8525 188.16165 
+L 480.5725 188.021687 
+L 484.2925 187.466443 
+L 488.0125 186.399949 
+L 489.362183 185.891775 
+L 491.7325 184.745704 
+L 495.4525 182.735194 
+L 497.731538 181.456575 
+L 499.1725 180.616132 
+L 502.8925 178.491494 
+L 505.717239 177.021375 
+L 506.6125 176.550639 
+L 510.3325 174.775342 
+L 514.0525 173.280715 
+L 516.177593 172.586175 
+L 517.7725 172.036626 
+L 521.4925 171.011399 
+L 525.2125 170.257864 
+L 528.9325 169.766675 
+L 532.6525 169.529946 
+L 536.3725 169.543564 
+L 540.0925 169.810946 
+L 543.8125 170.344023 
+L 547.5325 171.165167 
+L 551.2525 172.310493 
+L 551.934607 172.586175 
+L 554.9725 173.664016 
+L 558.6925 175.362694 
+L 561.544541 177.021375 
+L 562.4125 177.462717 
+L 566.1325 179.830305 
+L 568.153982 181.456575 
+L 569.8525 182.658984 
+L 573.427434 185.891775 
+L 573.5725 186.007519 
+L 577.2925 189.766432 
+L 577.730661 190.326975 
+L 581.0125 194.166665 
+L 581.412673 194.762175 
+L 584.612379 199.197375 
+L 584.7325 199.348838 
+L 587.369513 203.632575 
+L 588.4525 205.314939 
+L 589.826367 208.067775 
+L 592.03745 212.502975 
+L 592.1725 212.74636 
+L 593.930808 216.938175 
+L 595.665938 221.373375 
+L 595.8925 221.884906 
+L 597.119369 225.808575 
+L 598.370936 230.243775 
+L 599.401016 234.678975 
+L 599.6125 235.490302 
+L 599.975836 239.114175 
+L 602.081873 243.549375 
+L 603.3325 244.312143 
+L 607.0525 245.023156 
+L 610.7725 246.287585 
+L 614.4925 247.635698 
+L 615.552046 247.984575 
+L 618.2125 249.113127 
+L 621.9325 250.818731 
+L 625.138373 252.419775 
+L 625.6525 252.721367 
+L 629.3725 254.892434 
+L 632.358047 256.854975 
+L 633.0925 257.448732 
+L 636.8125 260.484295 
+L 637.846755 261.290175 
+L 640.5325 264.021447 
+L 642.407022 265.725375 
+L 644.2525 267.831829 
+L 646.639537 270.160575 
+L 647.9725 271.670542 
+L 650.88164 274.595775 
+L 651.6925 275.495506 
+L 655.069641 279.030975 
+L 655.4125 279.421584 
+L 658.982857 283.466175 
+L 659.1325 283.655579 
+L 662.400362 287.901375 
+L 662.8525 288.635943 
+L 665.131752 292.336575 
+L 666.5725 296.426754 
+L 666.719815 296.771775 
+L 667.63356 301.206975 
+L 667.440094 305.642175 
+L 666.5725 307.830027 
+L 664.909779 310.077375 
+L 662.8525 312.093893 
+L 659.1325 314.228889 
+L 658.201383 314.512575 
+L 655.4125 315.861184 
+L 651.6925 316.942462 
+L 647.9725 317.677765 
+L 644.2525 318.238489 
+L 640.5325 318.704574 
+L 638.261083 318.947775 
+L 636.8125 319.148208 
+L 633.0925 319.580896 
+L 629.3725 319.952456 
+L 625.6525 320.259622 
+L 621.9325 320.496203 
+L 618.2125 320.657407 
+L 614.4925 320.74152 
+L 610.7725 320.750004 
+L 607.0525 320.686779 
+L 603.3325 320.557145 
+L 599.6125 320.366554 
+L 595.8925 320.119381 
+L 592.1725 319.817833 
+L 588.4525 319.461171 
+L 584.7325 319.045315 
+z
+M 400.310436 181.456575 
+L 398.7325 181.02552 
+L 395.0125 179.21772 
+L 391.365201 177.021375 
+L 395.0125 174.866684 
+L 398.7325 173.793922 
+L 402.4525 173.882708 
+L 406.1725 174.23023 
+L 409.8925 175.09851 
+L 413.6125 176.403469 
+L 415.097188 177.021375 
+L 417.3325 178.520052 
+L 421.0525 180.127957 
+L 424.7725 181.284765 
+L 425.367532 181.456575 
+L 424.7725 181.596483 
+L 421.0525 182.283647 
+L 417.3325 182.783362 
+L 413.6125 183.148085 
+L 409.8925 182.93869 
+L 406.1725 182.534089 
+L 402.4525 181.974122 
+z
+M 321.523917 177.021375 
+L 324.3325 174.352628 
+L 328.0525 173.665584 
+L 331.7725 173.446867 
+L 335.4925 173.43706 
+L 339.2125 173.55295 
+L 342.9325 173.75631 
+L 346.6525 174.02619 
+L 350.3725 174.34957 
+L 354.0925 174.717445 
+L 357.8125 175.122671 
+L 361.5325 175.557758 
+L 365.2525 176.014791 
+L 368.9725 176.483445 
+L 372.6925 176.948651 
+L 373.311479 177.021375 
+L 372.6925 177.082731 
+L 368.9725 177.478517 
+L 365.2525 177.882947 
+L 361.5325 178.28293 
+L 357.8125 178.66901 
+L 354.0925 179.033561 
+L 350.3725 179.369574 
+L 346.6525 179.669605 
+L 342.9325 179.924531 
+L 339.2125 180.121617 
+L 335.4925 180.240766 
+L 331.7725 180.245735 
+L 328.0525 180.057907 
+L 324.3325 179.431422 
+z
+" clip-path="url(#p868edd328b)" style="fill: #eff3f5"/>
+    <path d="M 804.2125 279.610572 
+L 807.9325 280.690793 
+L 811.6525 281.44185 
+L 815.3725 281.888986 
+L 819.0925 282.04104 
+L 822.8125 281.892716 
+L 826.5325 281.425687 
+L 830.2525 280.608821 
+L 833.9725 279.397615 
+L 834.870132 279.030975 
+L 837.6925 277.864507 
+L 841.4125 275.86777 
+L 843.361725 274.595775 
+L 845.1325 273.373351 
+L 848.8525 270.276851 
+L 848.97924 270.160575 
+L 852.5725 266.514754 
+L 853.269552 265.725375 
+L 856.2925 261.809824 
+L 856.667473 261.290175 
+L 859.44947 256.854975 
+L 860.0125 255.779259 
+L 861.748934 252.419775 
+L 863.561176 247.984575 
+L 863.7325 247.477097 
+L 865.103763 243.549375 
+L 866.283269 239.114175 
+L 867.14369 234.678975 
+L 867.4525 232.443071 
+L 867.785058 230.243775 
+L 868.235462 225.808575 
+L 868.560835 221.373375 
+L 869.462959 216.938175 
+L 867.546215 212.502975 
+L 867.4525 212.188076 
+L 866.388848 208.067775 
+L 865.055345 203.632575 
+L 863.7325 200.087479 
+L 863.438285 199.197375 
+L 861.627525 194.762175 
+L 860.0125 191.621338 
+L 859.402253 190.326975 
+L 856.809894 185.891775 
+L 856.2925 185.156678 
+L 853.791548 181.456575 
+L 852.5725 179.969221 
+L 850.176632 177.021375 
+L 848.8525 175.650792 
+L 845.79737 172.586175 
+L 845.1325 172.012043 
+L 841.4125 168.929588 
+L 840.399922 168.150975 
+L 837.6925 166.303075 
+L 833.9725 164.108452 
+L 833.237683 163.715775 
+L 830.2525 162.243363 
+L 826.5325 160.72694 
+L 822.8125 159.549727 
+L 821.75608 159.280575 
+L 819.0925 158.616284 
+L 815.3725 157.948134 
+L 811.6525 157.551551 
+L 807.9325 157.411394 
+L 804.2125 157.518021 
+L 800.4925 157.868238 
+L 796.7725 158.466015 
+L 793.24689 159.280575 
+L 793.0525 159.316783 
+L 789.3325 160.279446 
+L 785.6125 161.494049 
+L 781.8925 162.992146 
+L 780.434887 163.715775 
+L 778.1725 164.632757 
+L 774.4525 166.457932 
+L 771.57032 168.150975 
+L 770.7325 168.552884 
+L 767.0125 170.685886 
+L 764.216292 172.586175 
+L 763.2925 173.095686 
+L 759.5725 175.515765 
+L 757.607409 177.021375 
+L 755.8525 178.094969 
+L 752.1325 180.760612 
+L 751.303653 181.456575 
+L 748.4125 183.336488 
+L 745.049358 185.891775 
+L 744.6925 186.092877 
+L 740.9725 188.523104 
+L 738.606131 190.326975 
+L 737.2525 191.028281 
+L 733.5325 193.251262 
+L 731.364058 194.762175 
+L 729.8125 195.3696 
+L 726.0925 197.022304 
+L 722.3725 198.885268 
+L 721.854207 199.197375 
+L 718.6525 199.771255 
+L 714.9325 201.069286 
+L 711.546373 203.632575 
+L 714.9325 205.911256 
+L 718.6525 207.350291 
+L 721.597737 208.067775 
+L 722.3725 208.777539 
+L 726.0925 211.407435 
+L 728.127547 212.502975 
+L 729.8125 214.171274 
+L 733.347397 216.938175 
+L 733.5325 217.159077 
+L 737.2525 220.790635 
+L 737.983806 221.373375 
+L 740.9725 224.676347 
+L 742.220584 225.808575 
+L 744.6925 228.752801 
+L 746.210771 230.243775 
+L 748.4125 232.981639 
+L 750.066292 234.678975 
+L 752.1325 237.29832 
+L 753.870376 239.114175 
+L 755.8525 241.629525 
+L 757.693838 243.549375 
+L 759.5725 245.903077 
+L 761.603539 247.984575 
+L 763.2925 250.05274 
+L 765.667458 252.419775 
+L 767.0125 254.018906 
+L 769.957724 256.854975 
+L 770.7325 257.746259 
+L 774.4525 261.202369 
+L 774.569472 261.290175 
+L 778.1725 264.557631 
+L 779.789027 265.725375 
+L 781.8925 267.570818 
+L 785.596878 270.160575 
+L 785.6125 270.173913 
+L 789.3325 272.726437 
+L 792.764804 274.595775 
+L 793.0525 274.789467 
+L 796.7725 276.759634 
+L 800.4925 278.308606 
+L 802.76096 279.030975 
+z
+M 762.44669 216.938175 
+L 759.5725 216.341569 
+L 755.8525 215.406053 
+L 752.1325 214.270672 
+L 748.4125 212.899539 
+L 747.485488 212.502975 
+L 744.6925 211.929973 
+L 740.9725 210.96089 
+L 737.2525 209.724819 
+L 733.5325 208.160152 
+L 733.345545 208.067775 
+L 729.8125 207.24209 
+L 726.0925 206.698764 
+L 722.3725 205.937809 
+L 718.6525 205.085538 
+L 715.680504 203.632575 
+L 718.6525 202.123489 
+L 722.3725 201.379102 
+L 726.0925 200.818205 
+L 729.8125 200.637915 
+L 733.5325 200.470845 
+L 737.2525 200.233215 
+L 740.9725 199.960188 
+L 744.6925 199.672299 
+L 748.4125 199.383452 
+L 750.959601 199.197375 
+L 752.1325 199.008062 
+L 755.8525 198.506068 
+L 759.5725 198.086591 
+L 763.2925 197.751276 
+L 767.0125 197.503999 
+L 770.7325 197.351188 
+L 774.4525 197.30247 
+L 778.1725 197.371816 
+L 781.8925 197.579595 
+L 785.6125 197.956372 
+L 789.3325 198.550498 
+L 792.069481 199.197375 
+L 793.0525 199.350356 
+L 796.7725 200.181841 
+L 800.4925 201.485971 
+L 803.962953 203.632575 
+L 804.2125 203.717958 
+L 807.9325 206.700559 
+L 808.829586 208.067775 
+L 810.172769 212.502975 
+L 807.9325 215.899668 
+L 805.940717 216.938175 
+L 804.2125 218.397961 
+L 800.4925 219.840471 
+L 796.7725 220.550774 
+L 793.0525 220.912242 
+L 789.3325 221.039979 
+L 785.6125 220.981735 
+L 781.8925 220.759325 
+L 778.1725 220.38123 
+L 774.4525 219.847511 
+L 770.7325 219.151843 
+L 767.0125 218.282173 
+L 763.2925 217.220475 
+z
+" clip-path="url(#p868edd328b)" style="fill: #eff3f5"/>
+   </g>
+   <g id="PathCollection_15">
+    <path d="M 584.7325 319.045315 
+L 588.4525 319.461171 
+L 592.1725 319.817833 
+L 595.8925 320.119381 
+L 599.6125 320.366554 
+L 603.3325 320.557145 
+L 607.0525 320.686779 
+L 610.7725 320.750004 
+L 614.4925 320.74152 
+L 618.2125 320.657407 
+L 621.9325 320.496203 
+L 625.6525 320.259622 
+L 629.3725 319.952456 
+L 633.0925 319.580896 
+L 636.8125 319.148208 
+L 638.261083 318.947775 
+L 640.5325 318.704574 
+L 644.2525 318.238489 
+L 647.9725 317.677765 
+L 651.6925 316.942462 
+L 655.4125 315.861184 
+L 658.201383 314.512575 
+L 659.1325 314.228889 
+L 662.8525 312.093893 
+L 664.909779 310.077375 
+L 666.5725 307.830027 
+L 667.440094 305.642175 
+L 667.63356 301.206975 
+L 666.719815 296.771775 
+L 666.5725 296.426754 
+L 665.131752 292.336575 
+L 662.8525 288.635943 
+L 662.400362 287.901375 
+L 659.1325 283.655579 
+L 658.982857 283.466175 
+L 655.4125 279.421584 
+L 655.069641 279.030975 
+L 651.6925 275.495506 
+L 650.88164 274.595775 
+L 647.9725 271.670542 
+L 646.639537 270.160575 
+L 644.2525 267.831829 
+L 642.407022 265.725375 
+L 640.5325 264.021447 
+L 637.846755 261.290175 
+L 636.8125 260.484295 
+L 633.0925 257.448732 
+L 632.358047 256.854975 
+L 629.3725 254.892434 
+L 625.6525 252.721367 
+L 625.138373 252.419775 
+L 621.9325 250.818731 
+L 618.2125 249.113127 
+L 615.552046 247.984575 
+L 614.4925 247.635698 
+L 610.7725 246.287585 
+L 607.0525 245.023156 
+L 603.3325 244.312143 
+L 602.081873 243.549375 
+L 599.975836 239.114175 
+L 599.6125 235.490302 
+L 599.401016 234.678975 
+L 598.370936 230.243775 
+L 597.119369 225.808575 
+L 595.8925 221.884906 
+L 595.665938 221.373375 
+L 593.930808 216.938175 
+L 592.1725 212.74636 
+L 592.03745 212.502975 
+L 589.826367 208.067775 
+L 588.4525 205.314939 
+L 587.369513 203.632575 
+L 584.7325 199.348838 
+L 584.612379 199.197375 
+L 581.412673 194.762175 
+L 581.0125 194.166665 
+L 577.730661 190.326975 
+L 577.2925 189.766432 
+L 573.5725 186.007519 
+L 573.427434 185.891775 
+L 569.8525 182.658984 
+L 568.153982 181.456575 
+L 566.1325 179.830305 
+L 562.4125 177.462717 
+L 561.544541 177.021375 
+L 558.6925 175.362694 
+L 554.9725 173.664016 
+L 551.934607 172.586175 
+L 551.2525 172.310493 
+L 547.5325 171.165167 
+L 543.8125 170.344023 
+L 540.0925 169.810946 
+L 536.3725 169.543564 
+L 532.6525 169.529946 
+L 528.9325 169.766675 
+L 525.2125 170.257864 
+L 521.4925 171.011399 
+L 517.7725 172.036626 
+L 516.177593 172.586175 
+L 514.0525 173.280715 
+L 510.3325 174.775342 
+L 506.6125 176.550639 
+L 505.717239 177.021375 
+L 502.8925 178.491494 
+L 499.1725 180.616132 
+L 497.731538 181.456575 
+L 495.4525 182.735194 
+L 491.7325 184.745704 
+L 489.362183 185.891775 
+L 488.0125 186.399949 
+L 484.2925 187.466443 
+L 480.5725 188.021687 
+L 476.8525 188.16165 
+L 473.1325 189.410734 
+L 472.283495 190.326975 
+L 473.1325 192.094969 
+L 475.561972 194.762175 
+L 476.8525 197.346765 
+L 478.100878 199.197375 
+L 479.658301 203.632575 
+L 480.5725 207.646352 
+L 480.669292 208.067775 
+L 481.353714 212.502975 
+L 481.965783 216.938175 
+L 482.613549 221.373375 
+L 483.366029 225.808575 
+L 484.269302 230.243775 
+L 484.2925 230.34441 
+L 485.253787 234.678975 
+L 486.438949 239.114175 
+L 487.850082 243.549375 
+L 488.0125 244.013417 
+L 489.388437 247.984575 
+L 491.178758 252.419775 
+L 491.7325 253.671464 
+L 493.151489 256.854975 
+L 495.395444 261.290175 
+L 495.4525 261.396486 
+L 497.828852 265.725375 
+L 499.1725 267.949556 
+L 500.552375 270.160575 
+L 502.8925 273.627625 
+L 503.574319 274.595775 
+L 506.6125 278.644527 
+L 506.918188 279.030975 
+L 510.3325 283.135637 
+L 510.625464 283.466175 
+L 514.0525 287.187862 
+L 514.76058 287.901375 
+L 517.7725 290.857762 
+L 519.416785 292.336575 
+L 521.4925 294.172985 
+L 524.733517 296.771775 
+L 525.2125 297.153744 
+L 528.9325 299.906263 
+L 530.898474 301.206975 
+L 532.6525 302.380254 
+L 536.3725 304.622575 
+L 538.268014 305.642175 
+L 540.0925 306.65003 
+L 543.8125 308.491494 
+L 547.506133 310.077375 
+L 547.5325 310.089164 
+L 551.2525 311.605925 
+L 554.9725 312.920204 
+L 558.6925 314.055576 
+L 560.397578 314.512575 
+L 562.4125 315.086863 
+L 566.1325 316.015468 
+L 569.8525 316.814487 
+L 573.5725 317.501272 
+L 577.2925 318.091561 
+L 581.0125 318.59923 
+L 583.964077 318.947775 
+z
+M 644.225477 301.206975 
+L 640.5325 300.014567 
+L 636.8125 298.909027 
+L 633.0925 298.002127 
+L 629.3725 297.249121 
+L 626.891064 296.771775 
+L 625.6525 296.576465 
+L 621.9325 295.915201 
+L 618.2125 295.059794 
+L 614.4925 293.952918 
+L 610.7725 292.579099 
+L 610.15549 292.336575 
+L 607.0525 291.182937 
+L 603.3325 289.628597 
+L 599.6125 287.980745 
+L 599.414242 287.901375 
+L 595.8925 286.544815 
+L 592.1725 285.224774 
+L 588.4525 284.066365 
+L 586.215789 283.466175 
+L 584.7325 283.108265 
+L 581.0125 282.309034 
+L 577.2925 281.521273 
+L 573.5725 280.672371 
+L 569.8525 279.697171 
+L 567.678976 279.030975 
+L 566.1325 278.608066 
+L 562.4125 277.400613 
+L 558.6925 275.924096 
+L 555.896346 274.595775 
+L 554.9725 274.187076 
+L 551.2525 272.274911 
+L 547.853995 270.160575 
+L 547.5325 269.967406 
+L 543.8125 267.460445 
+L 541.593844 265.725375 
+L 540.0925 264.552215 
+L 536.417412 261.290175 
+L 536.3725 261.249654 
+L 532.6525 257.642733 
+L 531.904001 256.854975 
+L 528.9325 253.629893 
+L 527.886228 252.419775 
+L 525.2125 249.226137 
+L 524.225281 247.984575 
+L 521.4925 244.445312 
+L 520.833361 243.549375 
+L 517.7725 239.271161 
+L 517.665902 239.114175 
+L 514.668966 234.678975 
+L 514.0525 233.750755 
+L 511.891586 230.243775 
+L 510.3325 227.539347 
+L 509.404284 225.808575 
+L 507.243336 221.373375 
+L 506.6125 219.855077 
+L 505.415081 216.938175 
+L 503.979474 212.502975 
+L 502.8925 208.172761 
+L 502.860161 208.067775 
+L 500.347392 203.632575 
+L 502.8925 199.873777 
+L 504.231586 199.197375 
+L 506.6125 198.03366 
+L 510.3325 195.773882 
+L 512.502434 194.762175 
+L 514.0525 193.908386 
+L 517.7725 192.443351 
+L 521.4925 191.504916 
+L 525.2125 190.894092 
+L 528.9325 190.506564 
+L 532.035132 190.326975 
+L 532.6525 190.282737 
+L 536.3725 190.198388 
+L 540.0925 190.274005 
+L 540.936338 190.326975 
+L 543.8125 190.478735 
+L 547.5325 190.816488 
+L 551.2525 191.318884 
+L 554.9725 192.020939 
+L 558.6925 192.976816 
+L 562.4125 194.265321 
+L 563.496275 194.762175 
+L 566.1325 195.761953 
+L 569.8525 197.646465 
+L 572.158954 199.197375 
+L 573.5725 199.99997 
+L 577.2925 202.816035 
+L 578.123436 203.632575 
+L 581.0125 206.129843 
+L 582.701825 208.067775 
+L 584.7325 210.155679 
+L 586.458352 212.502975 
+L 588.4525 214.990469 
+L 589.627173 216.938175 
+L 592.1725 220.959638 
+L 592.365582 221.373375 
+L 594.66336 225.808575 
+L 595.8925 228.085192 
+L 596.660367 230.243775 
+L 598.263425 234.678975 
+L 599.511164 239.114175 
+L 599.6125 239.334434 
+L 601.500327 243.549375 
+L 603.3325 244.666833 
+L 607.0525 245.484438 
+L 610.7725 247.013067 
+L 613.284186 247.984575 
+L 614.4925 248.580825 
+L 618.2125 250.37642 
+L 621.9325 252.417909 
+L 621.936236 252.419775 
+L 625.6525 254.599772 
+L 628.904022 256.854975 
+L 629.3725 257.231007 
+L 633.0925 260.367192 
+L 634.16286 261.290175 
+L 636.8125 264.319732 
+L 638.148383 265.725375 
+L 640.5325 269.075569 
+L 641.476753 270.160575 
+L 644.2525 273.903217 
+L 644.859367 274.595775 
+L 647.9725 278.382917 
+L 648.549215 279.030975 
+L 651.6925 282.670234 
+L 652.384232 283.466175 
+L 655.4125 287.059075 
+L 656.088784 287.901375 
+L 659.1325 292.004219 
+L 659.359603 292.336575 
+L 662.141564 296.771775 
+L 662.8525 299.126365 
+L 663.619382 301.206975 
+L 662.8525 302.884092 
+L 659.1325 305.591402 
+L 655.4125 305.256952 
+L 651.6925 304.263573 
+L 647.9725 302.835767 
+L 644.2525 301.216589 
+z
+" clip-path="url(#p868edd328b)" style="fill: #e0ecf3"/>
+    <path d="M 763.2925 217.220475 
+L 767.0125 218.282173 
+L 770.7325 219.151843 
+L 774.4525 219.847511 
+L 778.1725 220.38123 
+L 781.8925 220.759325 
+L 785.6125 220.981735 
+L 789.3325 221.039979 
+L 793.0525 220.912242 
+L 796.7725 220.550774 
+L 800.4925 219.840471 
+L 804.2125 218.397961 
+L 805.940717 216.938175 
+L 807.9325 215.899668 
+L 810.172769 212.502975 
+L 808.829586 208.067775 
+L 807.9325 206.700559 
+L 804.2125 203.717958 
+L 803.962953 203.632575 
+L 800.4925 201.485971 
+L 796.7725 200.181841 
+L 793.0525 199.350356 
+L 792.069481 199.197375 
+L 789.3325 198.550498 
+L 785.6125 197.956372 
+L 781.8925 197.579595 
+L 778.1725 197.371816 
+L 774.4525 197.30247 
+L 770.7325 197.351188 
+L 767.0125 197.503999 
+L 763.2925 197.751276 
+L 759.5725 198.086591 
+L 755.8525 198.506068 
+L 752.1325 199.008062 
+L 750.959601 199.197375 
+L 748.4125 199.383452 
+L 744.6925 199.672299 
+L 740.9725 199.960188 
+L 737.2525 200.233215 
+L 733.5325 200.470845 
+L 729.8125 200.637915 
+L 726.0925 200.818205 
+L 722.3725 201.379102 
+L 718.6525 202.123489 
+L 715.680504 203.632575 
+L 718.6525 205.085538 
+L 722.3725 205.937809 
+L 726.0925 206.698764 
+L 729.8125 207.24209 
+L 733.345545 208.067775 
+L 733.5325 208.160152 
+L 737.2525 209.724819 
+L 740.9725 210.96089 
+L 744.6925 211.929973 
+L 747.485488 212.502975 
+L 748.4125 212.899539 
+L 752.1325 214.270672 
+L 755.8525 215.406053 
+L 759.5725 216.341569 
+L 762.44669 216.938175 
+z
+M 781.634965 212.502975 
+L 778.1725 212.256943 
+L 774.4525 212.100987 
+L 770.7325 211.898819 
+L 767.0125 211.697159 
+L 763.2925 211.27769 
+L 759.5725 210.673477 
+L 755.8525 209.946044 
+L 752.1325 209.076949 
+L 748.488848 208.067775 
+L 752.1325 205.417074 
+L 755.8525 204.790799 
+L 759.5725 204.498541 
+L 763.2925 204.311441 
+L 767.0125 204.21296 
+L 770.7325 204.25856 
+L 774.4525 204.313549 
+L 778.1725 204.537895 
+L 781.8925 204.869375 
+L 785.6125 205.267704 
+L 789.3325 205.761783 
+L 793.0525 206.394556 
+L 796.7725 207.245206 
+L 799.303659 208.067775 
+L 800.4925 208.941257 
+L 804.2125 210.893852 
+L 805.270003 212.502975 
+L 804.2125 213.403806 
+L 800.4925 213.79767 
+L 796.7725 213.821441 
+L 793.0525 213.672398 
+L 789.3325 213.399935 
+L 785.6125 213.0211 
+L 781.8925 212.54087 
+z
+M 722.475239 203.632575 
+L 726.0925 203.019623 
+L 729.8125 203.230834 
+L 733.5325 203.590866 
+L 734.228394 203.632575 
+L 733.5325 203.691901 
+L 729.8125 204.116801 
+L 726.0925 204.300371 
+z
+" clip-path="url(#p868edd328b)" style="fill: #e0ecf3"/>
+   </g>
+   <g id="PathCollection_16">
+    <path d="M 644.2525 301.216589 
+L 647.9725 302.835767 
+L 651.6925 304.263573 
+L 655.4125 305.256952 
+L 659.1325 305.591402 
+L 662.8525 302.884092 
+L 663.619382 301.206975 
+L 662.8525 299.126365 
+L 662.141564 296.771775 
+L 659.359603 292.336575 
+L 659.1325 292.004219 
+L 656.088784 287.901375 
+L 655.4125 287.059075 
+L 652.384232 283.466175 
+L 651.6925 282.670234 
+L 648.549215 279.030975 
+L 647.9725 278.382917 
+L 644.859367 274.595775 
+L 644.2525 273.903217 
+L 641.476753 270.160575 
+L 640.5325 269.075569 
+L 638.148383 265.725375 
+L 636.8125 264.319732 
+L 634.16286 261.290175 
+L 633.0925 260.367192 
+L 629.3725 257.231007 
+L 628.904022 256.854975 
+L 625.6525 254.599772 
+L 621.936236 252.419775 
+L 621.9325 252.417909 
+L 618.2125 250.37642 
+L 614.4925 248.580825 
+L 613.284186 247.984575 
+L 610.7725 247.013067 
+L 607.0525 245.484438 
+L 603.3325 244.666833 
+L 601.500327 243.549375 
+L 599.6125 239.334434 
+L 599.511164 239.114175 
+L 598.263425 234.678975 
+L 596.660367 230.243775 
+L 595.8925 228.085192 
+L 594.66336 225.808575 
+L 592.365582 221.373375 
+L 592.1725 220.959638 
+L 589.627173 216.938175 
+L 588.4525 214.990469 
+L 586.458352 212.502975 
+L 584.7325 210.155679 
+L 582.701825 208.067775 
+L 581.0125 206.129843 
+L 578.123436 203.632575 
+L 577.2925 202.816035 
+L 573.5725 199.99997 
+L 572.158954 199.197375 
+L 569.8525 197.646465 
+L 566.1325 195.761953 
+L 563.496275 194.762175 
+L 562.4125 194.265321 
+L 558.6925 192.976816 
+L 554.9725 192.020939 
+L 551.2525 191.318884 
+L 547.5325 190.816488 
+L 543.8125 190.478735 
+L 540.936338 190.326975 
+L 540.0925 190.274005 
+L 536.3725 190.198388 
+L 532.6525 190.282737 
+L 532.035132 190.326975 
+L 528.9325 190.506564 
+L 525.2125 190.894092 
+L 521.4925 191.504916 
+L 517.7725 192.443351 
+L 514.0525 193.908386 
+L 512.502434 194.762175 
+L 510.3325 195.773882 
+L 506.6125 198.03366 
+L 504.231586 199.197375 
+L 502.8925 199.873777 
+L 500.347392 203.632575 
+L 502.860161 208.067775 
+L 502.8925 208.172761 
+L 503.979474 212.502975 
+L 505.415081 216.938175 
+L 506.6125 219.855077 
+L 507.243336 221.373375 
+L 509.404284 225.808575 
+L 510.3325 227.539347 
+L 511.891586 230.243775 
+L 514.0525 233.750755 
+L 514.668966 234.678975 
+L 517.665902 239.114175 
+L 517.7725 239.271161 
+L 520.833361 243.549375 
+L 521.4925 244.445312 
+L 524.225281 247.984575 
+L 525.2125 249.226137 
+L 527.886228 252.419775 
+L 528.9325 253.629893 
+L 531.904001 256.854975 
+L 532.6525 257.642733 
+L 536.3725 261.249654 
+L 536.417412 261.290175 
+L 540.0925 264.552215 
+L 541.593844 265.725375 
+L 543.8125 267.460445 
+L 547.5325 269.967406 
+L 547.853995 270.160575 
+L 551.2525 272.274911 
+L 554.9725 274.187076 
+L 555.896346 274.595775 
+L 558.6925 275.924096 
+L 562.4125 277.400613 
+L 566.1325 278.608066 
+L 567.678976 279.030975 
+L 569.8525 279.697171 
+L 573.5725 280.672371 
+L 577.2925 281.521273 
+L 581.0125 282.309034 
+L 584.7325 283.108265 
+L 586.215789 283.466175 
+L 588.4525 284.066365 
+L 592.1725 285.224774 
+L 595.8925 286.544815 
+L 599.414242 287.901375 
+L 599.6125 287.980745 
+L 603.3325 289.628597 
+L 607.0525 291.182937 
+L 610.15549 292.336575 
+L 610.7725 292.579099 
+L 614.4925 293.952918 
+L 618.2125 295.059794 
+L 621.9325 295.915201 
+L 625.6525 296.576465 
+L 626.891064 296.771775 
+L 629.3725 297.249121 
+L 633.0925 298.002127 
+L 636.8125 298.909027 
+L 640.5325 300.014567 
+L 644.225477 301.206975 
+z
+M 655.450708 301.206975 
+L 655.4125 301.174743 
+L 651.6925 299.261715 
+L 648.440786 296.771775 
+L 647.9725 296.469087 
+L 644.2525 294.10287 
+L 641.607728 292.336575 
+L 640.5325 291.712541 
+L 636.8125 289.908645 
+L 633.0925 288.477098 
+L 630.951373 287.901375 
+L 629.3725 287.594155 
+L 625.6525 286.881543 
+L 621.9325 285.844653 
+L 618.2125 284.290816 
+L 616.629834 283.466175 
+L 614.4925 282.442419 
+L 610.7725 280.151875 
+L 609.154204 279.030975 
+L 607.0525 277.548984 
+L 603.3325 274.630453 
+L 603.283312 274.595775 
+L 599.6125 271.939274 
+L 596.822735 270.160575 
+L 595.8925 269.5851 
+L 592.1725 268.059261 
+L 588.4525 267.106991 
+L 584.7325 266.463516 
+L 581.0125 265.88648 
+L 580.106533 265.725375 
+L 577.2925 265.321282 
+L 573.5725 264.623694 
+L 569.8525 263.691355 
+L 566.1325 262.453139 
+L 563.387023 261.290175 
+L 562.4125 260.923427 
+L 558.6925 259.200777 
+L 554.9725 256.959955 
+L 554.818045 256.854975 
+L 551.2525 254.510825 
+L 548.657091 252.419775 
+L 547.5325 251.511564 
+L 543.8125 248.037381 
+L 543.759312 247.984575 
+L 540.0925 244.215696 
+L 539.482302 243.549375 
+L 536.3725 240.073457 
+L 535.537763 239.114175 
+L 532.6525 235.856595 
+L 531.634642 234.678975 
+L 528.9325 231.771999 
+L 527.584433 230.243775 
+L 525.2125 227.869899 
+L 523.359085 225.808575 
+L 521.4925 224.052825 
+L 519.112078 221.373375 
+L 517.7725 220.139045 
+L 515.144968 216.938175 
+L 514.0525 215.829802 
+L 511.824449 212.502975 
+L 510.3325 209.113285 
+L 509.86484 208.067775 
+L 510.3325 206.009333 
+L 511.053328 203.632575 
+L 514.0525 201.552938 
+L 517.7725 200.768678 
+L 521.4925 200.572656 
+L 525.2125 200.606077 
+L 528.9325 200.767688 
+L 532.6525 200.996091 
+L 536.3725 201.244806 
+L 540.0925 201.479395 
+L 543.8125 201.68279 
+L 547.5325 201.864863 
+L 551.2525 202.070303 
+L 554.9725 202.377605 
+L 558.6925 202.888313 
+L 562.048608 203.632575 
+L 562.4125 203.69443 
+L 566.1325 204.666476 
+L 569.8525 206.095724 
+L 573.449561 208.067775 
+L 573.5725 208.12275 
+L 577.2925 210.344246 
+L 579.903098 212.502975 
+L 581.0125 213.283196 
+L 584.7325 216.844233 
+L 584.808401 216.938175 
+L 588.4525 220.944672 
+L 588.740213 221.373375 
+L 592.055387 225.808575 
+L 592.1725 225.937532 
+L 594.816746 230.243775 
+L 595.8925 231.738489 
+L 597.125834 234.678975 
+L 598.913794 239.114175 
+L 599.6125 240.63285 
+L 600.91878 243.549375 
+L 603.3325 245.021523 
+L 607.0525 245.945719 
+L 610.7725 247.738548 
+L 611.408565 247.984575 
+L 614.4925 249.506363 
+L 618.2125 251.639713 
+L 619.633655 252.419775 
+L 621.9325 253.844722 
+L 625.6525 256.478177 
+L 626.195763 256.854975 
+L 629.3725 259.404843 
+L 631.452604 261.290175 
+L 633.0925 263.164397 
+L 635.304744 265.725375 
+L 636.8125 268.298139 
+L 638.183197 270.160575 
+L 640.5325 274.112606 
+L 640.898259 274.595775 
+L 644.224219 279.030975 
+L 644.2525 279.0616 
+L 647.9725 283.404273 
+L 648.025539 283.466175 
+L 651.6925 287.506432 
+L 652.024837 287.901375 
+L 655.4125 291.694636 
+L 655.912907 292.336575 
+L 659.1325 296.409833 
+L 659.367939 296.771775 
+L 661.663731 301.206975 
+L 659.1325 303.935035 
+z
+" clip-path="url(#p868edd328b)" style="fill: #cfe4ef"/>
+    <path d="M 781.8925 212.54087 
+L 785.6125 213.0211 
+L 789.3325 213.399935 
+L 793.0525 213.672398 
+L 796.7725 213.821441 
+L 800.4925 213.79767 
+L 804.2125 213.403806 
+L 805.270003 212.502975 
+L 804.2125 210.893852 
+L 800.4925 208.941257 
+L 799.303659 208.067775 
+L 796.7725 207.245206 
+L 793.0525 206.394556 
+L 789.3325 205.761783 
+L 785.6125 205.267704 
+L 781.8925 204.869375 
+L 778.1725 204.537895 
+L 774.4525 204.313549 
+L 770.7325 204.25856 
+L 767.0125 204.21296 
+L 763.2925 204.311441 
+L 759.5725 204.498541 
+L 755.8525 204.790799 
+L 752.1325 205.417074 
+L 748.488848 208.067775 
+L 752.1325 209.076949 
+L 755.8525 209.946044 
+L 759.5725 210.673477 
+L 763.2925 211.27769 
+L 767.0125 211.697159 
+L 770.7325 211.898819 
+L 774.4525 212.100987 
+L 778.1725 212.256943 
+L 781.634965 212.502975 
+z
+M 761.192293 208.067775 
+L 763.2925 207.373999 
+L 767.0125 206.568597 
+L 770.7325 206.533769 
+L 774.4525 206.519298 
+L 778.1725 207.138461 
+L 781.8925 208.003853 
+L 782.195846 208.067775 
+L 781.8925 208.156933 
+L 778.1725 209.170661 
+L 774.4525 209.731323 
+L 770.7325 209.610572 
+L 767.0125 209.479281 
+L 763.2925 208.66063 
+z
+" clip-path="url(#p868edd328b)" style="fill: #cfe4ef"/>
+    <path d="M 726.0925 204.300371 
+L 729.8125 204.116801 
+L 733.5325 203.691901 
+L 734.228394 203.632575 
+L 733.5325 203.590866 
+L 729.8125 203.230834 
+L 726.0925 203.019623 
+L 722.475239 203.632575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #cfe4ef"/>
+   </g>
+   <g id="PathCollection_17">
+    <path d="M 659.1325 303.935035 
+L 661.663731 301.206975 
+L 659.367939 296.771775 
+L 659.1325 296.409833 
+L 655.912907 292.336575 
+L 655.4125 291.694636 
+L 652.024837 287.901375 
+L 651.6925 287.506432 
+L 648.025539 283.466175 
+L 647.9725 283.404273 
+L 644.2525 279.0616 
+L 644.224219 279.030975 
+L 640.898259 274.595775 
+L 640.5325 274.112606 
+L 638.183197 270.160575 
+L 636.8125 268.298139 
+L 635.304744 265.725375 
+L 633.0925 263.164397 
+L 631.452604 261.290175 
+L 629.3725 259.404843 
+L 626.195763 256.854975 
+L 625.6525 256.478177 
+L 621.9325 253.844722 
+L 619.633655 252.419775 
+L 618.2125 251.639713 
+L 614.4925 249.506363 
+L 611.408565 247.984575 
+L 610.7725 247.738548 
+L 607.0525 245.945719 
+L 603.3325 245.021523 
+L 600.91878 243.549375 
+L 599.6125 240.63285 
+L 598.913794 239.114175 
+L 597.125834 234.678975 
+L 595.8925 231.738489 
+L 594.816746 230.243775 
+L 592.1725 225.937532 
+L 592.055387 225.808575 
+L 588.740213 221.373375 
+L 588.4525 220.944672 
+L 584.808401 216.938175 
+L 584.7325 216.844233 
+L 581.0125 213.283196 
+L 579.903098 212.502975 
+L 577.2925 210.344246 
+L 573.5725 208.12275 
+L 573.449561 208.067775 
+L 569.8525 206.095724 
+L 566.1325 204.666476 
+L 562.4125 203.69443 
+L 562.048608 203.632575 
+L 558.6925 202.888313 
+L 554.9725 202.377605 
+L 551.2525 202.070303 
+L 547.5325 201.864863 
+L 543.8125 201.68279 
+L 540.0925 201.479395 
+L 536.3725 201.244806 
+L 532.6525 200.996091 
+L 528.9325 200.767688 
+L 525.2125 200.606077 
+L 521.4925 200.572656 
+L 517.7725 200.768678 
+L 514.0525 201.552938 
+L 511.053328 203.632575 
+L 510.3325 206.009333 
+L 509.86484 208.067775 
+L 510.3325 209.113285 
+L 511.824449 212.502975 
+L 514.0525 215.829802 
+L 515.144968 216.938175 
+L 517.7725 220.139045 
+L 519.112078 221.373375 
+L 521.4925 224.052825 
+L 523.359085 225.808575 
+L 525.2125 227.869899 
+L 527.584433 230.243775 
+L 528.9325 231.771999 
+L 531.634642 234.678975 
+L 532.6525 235.856595 
+L 535.537763 239.114175 
+L 536.3725 240.073457 
+L 539.482302 243.549375 
+L 540.0925 244.215696 
+L 543.759312 247.984575 
+L 543.8125 248.037381 
+L 547.5325 251.511564 
+L 548.657091 252.419775 
+L 551.2525 254.510825 
+L 554.818045 256.854975 
+L 554.9725 256.959955 
+L 558.6925 259.200777 
+L 562.4125 260.923427 
+L 563.387023 261.290175 
+L 566.1325 262.453139 
+L 569.8525 263.691355 
+L 573.5725 264.623694 
+L 577.2925 265.321282 
+L 580.106533 265.725375 
+L 581.0125 265.88648 
+L 584.7325 266.463516 
+L 588.4525 267.106991 
+L 592.1725 268.059261 
+L 595.8925 269.5851 
+L 596.822735 270.160575 
+L 599.6125 271.939274 
+L 603.283312 274.595775 
+L 603.3325 274.630453 
+L 607.0525 277.548984 
+L 609.154204 279.030975 
+L 610.7725 280.151875 
+L 614.4925 282.442419 
+L 616.629834 283.466175 
+L 618.2125 284.290816 
+L 621.9325 285.844653 
+L 625.6525 286.881543 
+L 629.3725 287.594155 
+L 630.951373 287.901375 
+L 633.0925 288.477098 
+L 636.8125 289.908645 
+L 640.5325 291.712541 
+L 641.607728 292.336575 
+L 644.2525 294.10287 
+L 647.9725 296.469087 
+L 648.440786 296.771775 
+L 651.6925 299.261715 
+L 655.4125 301.174743 
+L 655.450708 301.206975 
+z
+M 657.686142 301.206975 
+L 655.4125 299.288946 
+L 652.380265 296.771775 
+L 651.6925 296.077269 
+L 647.9725 293.454601 
+L 646.65924 292.336575 
+L 644.2525 290.727478 
+L 641.077058 287.901375 
+L 640.5325 287.543813 
+L 636.8125 285.177391 
+L 633.522166 283.466175 
+L 633.0925 283.308124 
+L 629.3725 282.619805 
+L 625.6525 281.795616 
+L 621.9325 280.31685 
+L 619.66451 279.030975 
+L 618.2125 278.300925 
+L 614.4925 275.778419 
+L 613.02266 274.595775 
+L 610.7725 272.749806 
+L 608.036634 270.160575 
+L 607.0525 269.167525 
+L 603.749242 265.725375 
+L 603.3325 265.246672 
+L 599.6125 261.475682 
+L 599.352009 261.290175 
+L 595.8925 259.060962 
+L 592.1725 258.065562 
+L 588.4525 257.730245 
+L 584.7325 257.47231 
+L 581.0125 257.066097 
+L 579.764179 256.854975 
+L 577.2925 256.532989 
+L 573.5725 255.799371 
+L 569.8525 254.755211 
+L 566.1325 253.320049 
+L 564.288969 252.419775 
+L 562.4125 251.616479 
+L 558.6925 249.552462 
+L 556.46944 247.984575 
+L 554.9725 246.983812 
+L 551.2525 243.833702 
+L 550.950915 243.549375 
+L 547.5325 240.19358 
+L 546.532784 239.114175 
+L 543.8125 236.026827 
+L 542.63355 234.678975 
+L 540.0925 231.86782 
+L 538.597834 230.243775 
+L 536.3725 228.198715 
+L 533.878862 225.808575 
+L 532.6525 224.936702 
+L 528.9325 221.90653 
+L 528.338036 221.373375 
+L 525.2125 219.427881 
+L 522.281419 216.938175 
+L 521.4925 216.566961 
+L 517.7725 213.901434 
+L 516.48549 212.502975 
+L 514.0525 211.026915 
+L 511.980045 208.067775 
+L 514.0525 205.114348 
+L 517.7725 204.442101 
+L 521.4925 204.802566 
+L 525.2125 205.53152 
+L 528.9325 206.359837 
+L 532.6525 207.214618 
+L 536.3725 208.015311 
+L 536.691643 208.067775 
+L 540.0925 208.475966 
+L 543.8125 208.829903 
+L 547.5325 209.020017 
+L 551.2525 209.051019 
+L 554.9725 209.040074 
+L 558.6925 209.166403 
+L 562.4125 209.585698 
+L 566.1325 210.411196 
+L 569.8525 211.746093 
+L 571.35237 212.502975 
+L 573.5725 213.398221 
+L 577.2925 215.508618 
+L 579.168413 216.938175 
+L 581.0125 218.10097 
+L 584.7325 221.348254 
+L 584.755016 221.373375 
+L 588.4525 224.86773 
+L 589.168454 225.808575 
+L 592.1725 229.116423 
+L 592.86475 230.243775 
+L 595.8925 234.450706 
+L 595.988244 234.678975 
+L 598.316424 239.114175 
+L 599.6125 241.931266 
+L 600.337234 243.549375 
+L 603.3325 245.376213 
+L 607.0525 246.407001 
+L 610.170062 247.984575 
+L 610.7725 248.335477 
+L 614.4925 250.431901 
+L 617.650135 252.419775 
+L 618.2125 252.794084 
+L 621.9325 255.271333 
+L 624.095117 256.854975 
+L 625.6525 258.079067 
+L 629.151085 261.290175 
+L 629.3725 261.51307 
+L 632.997515 265.725375 
+L 633.0925 265.88547 
+L 635.938358 270.160575 
+L 636.8125 272.165033 
+L 638.374195 274.595775 
+L 640.5325 277.664349 
+L 641.591685 279.030975 
+L 644.2525 281.912362 
+L 645.575721 283.466175 
+L 647.9725 285.717421 
+L 649.87605 287.901375 
+L 651.6925 289.494328 
+L 654.136353 292.336575 
+L 655.4125 294.063981 
+L 657.619456 296.771775 
+L 659.1325 299.369971 
+L 660.126871 301.206975 
+L 659.1325 302.278668 
+z
+" clip-path="url(#p868edd328b)" style="fill: #b3d6e8"/>
+    <path d="M 763.2925 208.66063 
+L 767.0125 209.479281 
+L 770.7325 209.610572 
+L 774.4525 209.731323 
+L 778.1725 209.170661 
+L 781.8925 208.156933 
+L 782.195846 208.067775 
+L 781.8925 208.003853 
+L 778.1725 207.138461 
+L 774.4525 206.519298 
+L 770.7325 206.533769 
+L 767.0125 206.568597 
+L 763.2925 207.373999 
+L 761.192293 208.067775 
+z
+" clip-path="url(#p868edd328b)" style="fill: #b3d6e8"/>
+   </g>
+   <g id="PathCollection_18">
+    <path d="M 659.1325 302.278668 
+L 660.126871 301.206975 
+L 659.1325 299.369971 
+L 657.619456 296.771775 
+L 655.4125 294.063981 
+L 654.136353 292.336575 
+L 651.6925 289.494328 
+L 649.87605 287.901375 
+L 647.9725 285.717421 
+L 645.575721 283.466175 
+L 644.2525 281.912362 
+L 641.591685 279.030975 
+L 640.5325 277.664349 
+L 638.374195 274.595775 
+L 636.8125 272.165033 
+L 635.938358 270.160575 
+L 633.0925 265.88547 
+L 632.997515 265.725375 
+L 629.3725 261.51307 
+L 629.151085 261.290175 
+L 625.6525 258.079067 
+L 624.095117 256.854975 
+L 621.9325 255.271333 
+L 618.2125 252.794084 
+L 617.650135 252.419775 
+L 614.4925 250.431901 
+L 610.7725 248.335477 
+L 610.170062 247.984575 
+L 607.0525 246.407001 
+L 603.3325 245.376213 
+L 600.337234 243.549375 
+L 599.6125 241.931266 
+L 598.316424 239.114175 
+L 595.988244 234.678975 
+L 595.8925 234.450706 
+L 592.86475 230.243775 
+L 592.1725 229.116423 
+L 589.168454 225.808575 
+L 588.4525 224.86773 
+L 584.755016 221.373375 
+L 584.7325 221.348254 
+L 581.0125 218.10097 
+L 579.168413 216.938175 
+L 577.2925 215.508618 
+L 573.5725 213.398221 
+L 571.35237 212.502975 
+L 569.8525 211.746093 
+L 566.1325 210.411196 
+L 562.4125 209.585698 
+L 558.6925 209.166403 
+L 554.9725 209.040074 
+L 551.2525 209.051019 
+L 547.5325 209.020017 
+L 543.8125 208.829903 
+L 540.0925 208.475966 
+L 536.691643 208.067775 
+L 536.3725 208.015311 
+L 532.6525 207.214618 
+L 528.9325 206.359837 
+L 525.2125 205.53152 
+L 521.4925 204.802566 
+L 517.7725 204.442101 
+L 514.0525 205.114348 
+L 511.980045 208.067775 
+L 514.0525 211.026915 
+L 516.48549 212.502975 
+L 517.7725 213.901434 
+L 521.4925 216.566961 
+L 522.281419 216.938175 
+L 525.2125 219.427881 
+L 528.338036 221.373375 
+L 528.9325 221.90653 
+L 532.6525 224.936702 
+L 533.878862 225.808575 
+L 536.3725 228.198715 
+L 538.597834 230.243775 
+L 540.0925 231.86782 
+L 542.63355 234.678975 
+L 543.8125 236.026827 
+L 546.532784 239.114175 
+L 547.5325 240.19358 
+L 550.950915 243.549375 
+L 551.2525 243.833702 
+L 554.9725 246.983812 
+L 556.46944 247.984575 
+L 558.6925 249.552462 
+L 562.4125 251.616479 
+L 564.288969 252.419775 
+L 566.1325 253.320049 
+L 569.8525 254.755211 
+L 573.5725 255.799371 
+L 577.2925 256.532989 
+L 579.764179 256.854975 
+L 581.0125 257.066097 
+L 584.7325 257.47231 
+L 588.4525 257.730245 
+L 592.1725 258.065562 
+L 595.8925 259.060962 
+L 599.352009 261.290175 
+L 599.6125 261.475682 
+L 603.3325 265.246672 
+L 603.749242 265.725375 
+L 607.0525 269.167525 
+L 608.036634 270.160575 
+L 610.7725 272.749806 
+L 613.02266 274.595775 
+L 614.4925 275.778419 
+L 618.2125 278.300925 
+L 619.66451 279.030975 
+L 621.9325 280.31685 
+L 625.6525 281.795616 
+L 629.3725 282.619805 
+L 633.0925 283.308124 
+L 633.522166 283.466175 
+L 636.8125 285.177391 
+L 640.5325 287.543813 
+L 641.077058 287.901375 
+L 644.2525 290.727478 
+L 646.65924 292.336575 
+L 647.9725 293.454601 
+L 651.6925 296.077269 
+L 652.380265 296.771775 
+L 655.4125 299.288946 
+L 657.686142 301.206975 
+z
+M 654.651933 296.771775 
+L 655.4125 296.092586 
+L 655.966065 296.771775 
+L 655.4125 297.40315 
+z
+M 649.830175 292.336575 
+L 651.6925 291.2373 
+L 652.637692 292.336575 
+L 651.6925 293.783336 
+z
+M 643.737055 287.901375 
+L 644.2525 286.576563 
+L 647.306648 287.901375 
+L 644.2525 288.360115 
+z
+M 637.914499 283.466175 
+L 636.8125 282.416995 
+L 633.0925 280.546107 
+L 629.3725 279.410273 
+L 628.218297 279.030975 
+L 625.6525 278.526064 
+L 621.9325 276.898502 
+L 618.694828 274.595775 
+L 618.2125 274.277366 
+L 614.4925 271.32408 
+L 613.245336 270.160575 
+L 610.7725 267.7923 
+L 608.839441 265.725375 
+L 607.0525 263.692021 
+L 604.989075 261.290175 
+L 603.3325 259.136037 
+L 601.326581 256.854975 
+L 599.6125 254.676923 
+L 595.949609 252.419775 
+L 595.8925 252.398453 
+L 592.1725 252.276997 
+L 588.4525 252.27127 
+L 584.7325 252.12537 
+L 581.0125 251.75881 
+L 577.2925 251.142458 
+L 573.5725 250.225921 
+L 569.8525 248.94212 
+L 567.705777 247.984575 
+L 566.1325 247.404524 
+L 562.4125 245.609379 
+L 559.306746 243.549375 
+L 558.6925 243.189363 
+L 554.9725 240.383829 
+L 553.626597 239.114175 
+L 551.2525 236.790685 
+L 549.369048 234.678975 
+L 547.5325 232.459309 
+L 545.638142 230.243775 
+L 543.8125 228.383746 
+L 541.225326 225.808575 
+L 540.0925 225.090635 
+L 536.3725 222.33752 
+L 535.186296 221.373375 
+L 532.6525 220.283487 
+L 528.9325 217.76311 
+L 527.865368 216.938175 
+L 525.2125 215.818063 
+L 521.4925 213.643686 
+L 520.157863 212.502975 
+L 517.7725 210.526387 
+L 514.0525 208.44636 
+L 513.787355 208.067775 
+L 514.0525 207.68992 
+L 517.7725 206.383556 
+L 521.4925 207.371984 
+L 523.274618 208.067775 
+L 525.2125 208.770783 
+L 528.9325 209.23224 
+L 532.6525 210.381894 
+L 536.3725 211.721329 
+L 538.91302 212.502975 
+L 540.0925 212.685656 
+L 543.8125 213.261531 
+L 547.5325 213.68593 
+L 551.2525 213.757515 
+L 554.9725 213.56452 
+L 558.6925 213.46734 
+L 562.4125 213.728811 
+L 566.1325 214.44545 
+L 569.8525 215.680671 
+L 572.471716 216.938175 
+L 573.5725 217.348041 
+L 577.2925 219.228379 
+L 580.334623 221.373375 
+L 581.0125 221.750205 
+L 584.7325 224.468541 
+L 586.08683 225.808575 
+L 588.4525 227.641773 
+L 590.770797 230.243775 
+L 592.1725 231.389613 
+L 594.661894 234.678975 
+L 595.8925 235.701228 
+L 597.719054 239.114175 
+L 599.6125 243.229682 
+L 599.755687 243.549375 
+L 603.3325 245.730904 
+L 607.0525 246.868283 
+L 609.258489 247.984575 
+L 610.7725 248.866442 
+L 614.4925 251.357439 
+L 616.179966 252.419775 
+L 618.2125 253.772625 
+L 621.9325 256.697945 
+L 622.14694 256.854975 
+L 625.6525 259.61032 
+L 627.482745 261.290175 
+L 629.3725 263.192556 
+L 631.552187 265.725375 
+L 633.0925 268.321538 
+L 634.316713 270.160575 
+L 636.444563 274.595775 
+L 636.8125 275.307078 
+L 639.610256 279.030975 
+L 640.5325 280.402775 
+L 643.306804 283.466175 
+L 640.5325 285.797232 
+z
+" clip-path="url(#p868edd328b)" style="fill: #98c8e0"/>
+   </g>
+   <g id="PathCollection_19">
+    <path d="M 655.4125 297.40315 
+L 655.966065 296.771775 
+L 655.4125 296.092586 
+L 654.651933 296.771775 
+z
+" clip-path="url(#p868edd328b)" style="fill: #7bb6d6"/>
+    <path d="M 651.6925 293.783336 
+L 652.637692 292.336575 
+L 651.6925 291.2373 
+L 649.830175 292.336575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #7bb6d6"/>
+    <path d="M 644.2525 288.360115 
+L 647.306648 287.901375 
+L 644.2525 286.576563 
+L 643.737055 287.901375 
+z
+" clip-path="url(#p868edd328b)" style="fill: #7bb6d6"/>
+    <path d="M 640.5325 285.797232 
+L 643.306804 283.466175 
+L 640.5325 280.402775 
+L 639.610256 279.030975 
+L 636.8125 275.307078 
+L 636.444563 274.595775 
+L 634.316713 270.160575 
+L 633.0925 268.321538 
+L 631.552187 265.725375 
+L 629.3725 263.192556 
+L 627.482745 261.290175 
+L 625.6525 259.61032 
+L 622.14694 256.854975 
+L 621.9325 256.697945 
+L 618.2125 253.772625 
+L 616.179966 252.419775 
+L 614.4925 251.357439 
+L 610.7725 248.866442 
+L 609.258489 247.984575 
+L 607.0525 246.868283 
+L 603.3325 245.730904 
+L 599.755687 243.549375 
+L 599.6125 243.229682 
+L 597.719054 239.114175 
+L 595.8925 235.701228 
+L 594.661894 234.678975 
+L 592.1725 231.389613 
+L 590.770797 230.243775 
+L 588.4525 227.641773 
+L 586.08683 225.808575 
+L 584.7325 224.468541 
+L 581.0125 221.750205 
+L 580.334623 221.373375 
+L 577.2925 219.228379 
+L 573.5725 217.348041 
+L 572.471716 216.938175 
+L 569.8525 215.680671 
+L 566.1325 214.44545 
+L 562.4125 213.728811 
+L 558.6925 213.46734 
+L 554.9725 213.56452 
+L 551.2525 213.757515 
+L 547.5325 213.68593 
+L 543.8125 213.261531 
+L 540.0925 212.685656 
+L 538.91302 212.502975 
+L 536.3725 211.721329 
+L 532.6525 210.381894 
+L 528.9325 209.23224 
+L 525.2125 208.770783 
+L 523.274618 208.067775 
+L 521.4925 207.371984 
+L 517.7725 206.383556 
+L 514.0525 207.68992 
+L 513.787355 208.067775 
+L 514.0525 208.44636 
+L 517.7725 210.526387 
+L 520.157863 212.502975 
+L 521.4925 213.643686 
+L 525.2125 215.818063 
+L 527.865368 216.938175 
+L 528.9325 217.76311 
+L 532.6525 220.283487 
+L 535.186296 221.373375 
+L 536.3725 222.33752 
+L 540.0925 225.090635 
+L 541.225326 225.808575 
+L 543.8125 228.383746 
+L 545.638142 230.243775 
+L 547.5325 232.459309 
+L 549.369048 234.678975 
+L 551.2525 236.790685 
+L 553.626597 239.114175 
+L 554.9725 240.383829 
+L 558.6925 243.189363 
+L 559.306746 243.549375 
+L 562.4125 245.609379 
+L 566.1325 247.404524 
+L 567.705777 247.984575 
+L 569.8525 248.94212 
+L 573.5725 250.225921 
+L 577.2925 251.142458 
+L 581.0125 251.75881 
+L 584.7325 252.12537 
+L 588.4525 252.27127 
+L 592.1725 252.276997 
+L 595.8925 252.398453 
+L 595.949609 252.419775 
+L 599.6125 254.676923 
+L 601.326581 256.854975 
+L 603.3325 259.136037 
+L 604.989075 261.290175 
+L 607.0525 263.692021 
+L 608.839441 265.725375 
+L 610.7725 267.7923 
+L 613.245336 270.160575 
+L 614.4925 271.32408 
+L 618.2125 274.277366 
+L 618.694828 274.595775 
+L 621.9325 276.898502 
+L 625.6525 278.526064 
+L 628.218297 279.030975 
+L 629.3725 279.410273 
+L 633.0925 280.546107 
+L 636.8125 282.416995 
+L 637.914499 283.466175 
+z
+M 639.876078 283.466175 
+L 640.5325 282.698076 
+L 641.228113 283.466175 
+L 640.5325 284.050651 
+z
+M 634.420567 279.030975 
+L 633.0925 278.262816 
+L 629.3725 277.973258 
+L 625.6525 276.604136 
+L 622.563749 274.595775 
+L 621.9325 274.249612 
+L 618.2125 271.559601 
+L 616.65798 270.160575 
+L 614.4925 268.257971 
+L 612.068639 265.725375 
+L 610.7725 264.382845 
+L 608.107403 261.290175 
+L 607.0525 260.046247 
+L 604.499115 256.854975 
+L 603.3325 255.266103 
+L 601.024012 252.419775 
+L 599.6125 250.331566 
+L 595.8925 249.000288 
+L 592.1725 249.186833 
+L 588.4525 249.071038 
+L 584.7325 248.669439 
+L 581.07309 247.984575 
+L 581.0125 247.976848 
+L 577.2925 247.30748 
+L 573.5725 246.32563 
+L 569.8525 244.959901 
+L 566.946324 243.549375 
+L 566.1325 243.238275 
+L 562.4125 241.416282 
+L 559.172479 239.114175 
+L 558.6925 238.828615 
+L 554.9725 235.78879 
+L 553.907352 234.678975 
+L 551.2525 231.660811 
+L 550.075468 230.243775 
+L 547.5325 227.350897 
+L 546.075067 225.808575 
+L 543.8125 224.532136 
+L 540.0925 221.478146 
+L 539.962665 221.373375 
+L 536.3725 219.596882 
+L 532.6525 217.706915 
+L 531.630391 216.938175 
+L 528.9325 214.668515 
+L 525.2125 213.697477 
+L 523.426221 212.502975 
+L 525.2125 211.158181 
+L 528.9325 211.099741 
+L 531.784911 212.502975 
+L 532.6525 214.426751 
+L 536.3725 214.260641 
+L 540.0925 214.54078 
+L 543.8125 216.064004 
+L 546.998003 216.938175 
+L 547.5325 217.042137 
+L 551.2525 217.163211 
+L 554.9725 216.968564 
+L 555.545758 216.938175 
+L 558.6925 216.658869 
+L 562.4125 216.930944 
+L 562.443565 216.938175 
+L 566.1325 217.51932 
+L 569.8525 218.599693 
+L 573.5725 220.235811 
+L 575.534005 221.373375 
+L 577.2925 222.14918 
+L 581.0125 224.364601 
+L 582.844035 225.808575 
+L 584.7325 226.919928 
+L 588.4525 230.079529 
+L 588.598838 230.243775 
+L 592.1725 233.165106 
+L 593.318198 234.678975 
+L 595.8925 236.817425 
+L 597.121684 239.114175 
+L 599.14182 243.549375 
+L 599.6125 245.894828 
+L 603.3325 246.085594 
+L 607.0525 247.329564 
+L 608.346915 247.984575 
+L 610.7725 249.397406 
+L 614.4925 252.282976 
+L 614.709797 252.419775 
+L 618.2125 254.751165 
+L 620.843464 256.854975 
+L 621.9325 257.697296 
+L 625.6525 261.141573 
+L 625.814405 261.290175 
+L 629.3725 264.872042 
+L 630.106859 265.725375 
+L 632.94783 270.160575 
+L 633.0925 270.613452 
+L 635.382132 274.595775 
+L 636.8125 277.360994 
+L 638.067153 279.030975 
+L 636.8125 280.549435 
+z
+" clip-path="url(#p868edd328b)" style="fill: #7bb6d6"/>
+   </g>
+   <g id="PathCollection_20">
+    <path d="M 640.5325 284.050651 
+L 641.228113 283.466175 
+L 640.5325 282.698076 
+L 639.876078 283.466175 
+z
+" clip-path="url(#p868edd328b)" style="fill: #59a1ca"/>
+    <path d="M 636.8125 280.549435 
+L 638.067153 279.030975 
+L 636.8125 277.360994 
+L 635.382132 274.595775 
+L 633.0925 270.613452 
+L 632.94783 270.160575 
+L 630.106859 265.725375 
+L 629.3725 264.872042 
+L 625.814405 261.290175 
+L 625.6525 261.141573 
+L 621.9325 257.697296 
+L 620.843464 256.854975 
+L 618.2125 254.751165 
+L 614.709797 252.419775 
+L 614.4925 252.282976 
+L 610.7725 249.397406 
+L 608.346915 247.984575 
+L 607.0525 247.329564 
+L 603.3325 246.085594 
+L 599.6125 245.894828 
+L 599.14182 243.549375 
+L 597.121684 239.114175 
+L 595.8925 236.817425 
+L 593.318198 234.678975 
+L 592.1725 233.165106 
+L 588.598838 230.243775 
+L 588.4525 230.079529 
+L 584.7325 226.919928 
+L 582.844035 225.808575 
+L 581.0125 224.364601 
+L 577.2925 222.14918 
+L 575.534005 221.373375 
+L 573.5725 220.235811 
+L 569.8525 218.599693 
+L 566.1325 217.51932 
+L 562.443565 216.938175 
+L 562.4125 216.930944 
+L 558.6925 216.658869 
+L 555.545758 216.938175 
+L 554.9725 216.968564 
+L 551.2525 217.163211 
+L 547.5325 217.042137 
+L 546.998003 216.938175 
+L 543.8125 216.064004 
+L 540.0925 214.54078 
+L 536.3725 214.260641 
+L 532.6525 214.426751 
+L 531.784911 212.502975 
+L 528.9325 211.099741 
+L 525.2125 211.158181 
+L 523.426221 212.502975 
+L 525.2125 213.697477 
+L 528.9325 214.668515 
+L 531.630391 216.938175 
+L 532.6525 217.706915 
+L 536.3725 219.596882 
+L 539.962665 221.373375 
+L 540.0925 221.478146 
+L 543.8125 224.532136 
+L 546.075067 225.808575 
+L 547.5325 227.350897 
+L 550.075468 230.243775 
+L 551.2525 231.660811 
+L 553.907352 234.678975 
+L 554.9725 235.78879 
+L 558.6925 238.828615 
+L 559.172479 239.114175 
+L 562.4125 241.416282 
+L 566.1325 243.238275 
+L 566.946324 243.549375 
+L 569.8525 244.959901 
+L 573.5725 246.32563 
+L 577.2925 247.30748 
+L 581.0125 247.976848 
+L 581.07309 247.984575 
+L 584.7325 248.669439 
+L 588.4525 249.071038 
+L 592.1725 249.186833 
+L 595.8925 249.000288 
+L 599.6125 250.331566 
+L 601.024012 252.419775 
+L 603.3325 255.266103 
+L 604.499115 256.854975 
+L 607.0525 260.046247 
+L 608.107403 261.290175 
+L 610.7725 264.382845 
+L 612.068639 265.725375 
+L 614.4925 268.257971 
+L 616.65798 270.160575 
+L 618.2125 271.559601 
+L 621.9325 274.249612 
+L 622.563749 274.595775 
+L 625.6525 276.604136 
+L 629.3725 277.973258 
+L 633.0925 278.262816 
+L 634.420567 279.030975 
+z
+M 625.519569 274.595775 
+L 621.9325 272.628709 
+L 619.111467 270.160575 
+L 618.2125 269.444205 
+L 614.558461 265.725375 
+L 614.4925 265.665453 
+L 610.7725 261.752634 
+L 610.373978 261.290175 
+L 607.0525 257.37353 
+L 606.637596 256.854975 
+L 603.349595 252.419775 
+L 603.3325 252.396749 
+L 599.873405 247.984575 
+L 603.3325 246.440284 
+L 607.0525 247.790846 
+L 607.435342 247.984575 
+L 610.7725 249.92837 
+L 613.920724 252.419775 
+L 614.4925 252.871846 
+L 618.2125 255.729706 
+L 619.619729 256.854975 
+L 621.9325 258.6438 
+L 624.744395 261.290175 
+L 625.6525 262.072508 
+L 628.98382 265.725375 
+L 629.3725 266.118567 
+L 632.357531 270.160575 
+L 633.0925 272.461323 
+L 634.319701 274.595775 
+L 633.0925 276.561241 
+L 629.3725 276.77379 
+L 625.6525 274.682209 
+z
+M 574.564719 243.549375 
+L 573.5725 243.290255 
+L 569.8525 242.062331 
+L 566.1325 240.320944 
+L 564.135527 239.114175 
+L 562.4125 238.322473 
+L 558.6925 235.831166 
+L 557.41965 234.678975 
+L 554.9725 232.628099 
+L 552.915483 230.243775 
+L 551.2525 228.146453 
+L 549.227687 225.808575 
+L 547.5325 224.23646 
+L 543.8125 222.194835 
+L 542.823869 221.373375 
+L 543.8125 219.873867 
+L 547.5325 219.028474 
+L 551.2525 218.96498 
+L 554.9725 218.874672 
+L 558.6925 218.497663 
+L 562.4125 218.807469 
+L 566.1325 219.686355 
+L 569.8525 221.108452 
+L 570.404478 221.373375 
+L 573.5725 222.476966 
+L 577.2925 224.345965 
+L 579.516843 225.808575 
+L 581.0125 226.504233 
+L 584.7325 228.871437 
+L 586.33166 230.243775 
+L 588.4525 231.453448 
+L 591.964405 234.678975 
+L 592.1725 234.77014 
+L 595.8925 237.933621 
+L 596.524313 239.114175 
+L 598.517396 243.549375 
+L 595.8925 247.350601 
+L 592.1725 247.21682 
+L 588.4525 246.920351 
+L 584.7325 246.400199 
+L 581.0125 245.622022 
+L 577.2925 244.55021 
+z
+M 535.546586 216.938175 
+L 536.3725 216.491483 
+L 540.0925 216.395903 
+L 541.201654 216.938175 
+L 540.0925 217.964413 
+L 536.3725 217.381726 
+z
+" clip-path="url(#p868edd328b)" style="fill: #59a1ca"/>
+   </g>
+   <g id="PathCollection_21">
+    <path d="M 625.6525 274.682209 
+L 629.3725 276.77379 
+L 633.0925 276.561241 
+L 634.319701 274.595775 
+L 633.0925 272.461323 
+L 632.357531 270.160575 
+L 629.3725 266.118567 
+L 628.98382 265.725375 
+L 625.6525 262.072508 
+L 624.744395 261.290175 
+L 621.9325 258.6438 
+L 619.619729 256.854975 
+L 618.2125 255.729706 
+L 614.4925 252.871846 
+L 613.920724 252.419775 
+L 610.7725 249.92837 
+L 607.435342 247.984575 
+L 607.0525 247.790846 
+L 603.3325 246.440284 
+L 599.873405 247.984575 
+L 603.3325 252.396749 
+L 603.349595 252.419775 
+L 606.637596 256.854975 
+L 607.0525 257.37353 
+L 610.373978 261.290175 
+L 610.7725 261.752634 
+L 614.4925 265.665453 
+L 614.558461 265.725375 
+L 618.2125 269.444205 
+L 619.111467 270.160575 
+L 621.9325 272.628709 
+L 625.519569 274.595775 
+z
+M 627.658718 274.595775 
+L 625.6525 273.913235 
+L 621.9325 271.007806 
+L 620.96413 270.160575 
+L 618.2125 267.967852 
+L 616.009092 265.725375 
+L 614.4925 264.347644 
+L 611.747579 261.290175 
+L 610.7725 260.352754 
+L 607.825006 256.854975 
+L 607.0525 256.09888 
+L 604.101935 252.419775 
+L 603.3325 251.383368 
+L 600.667884 247.984575 
+L 603.3325 246.794974 
+L 606.504023 247.984575 
+L 607.0525 248.556005 
+L 610.7725 250.459334 
+L 613.24978 252.419775 
+L 614.4925 253.402324 
+L 618.2125 256.708247 
+L 618.395994 256.854975 
+L 621.9325 259.590305 
+L 623.73869 261.290175 
+L 625.6525 262.938922 
+L 628.193672 265.725375 
+L 629.3725 266.917886 
+L 631.767232 270.160575 
+L 633.0925 274.309194 
+L 633.257269 274.595775 
+L 633.0925 274.859667 
+L 629.3725 275.574323 
+z
+" clip-path="url(#p868edd328b)" style="fill: #3f8ec0"/>
+    <path d="M 577.2925 244.55021 
+L 581.0125 245.622022 
+L 584.7325 246.400199 
+L 588.4525 246.920351 
+L 592.1725 247.21682 
+L 595.8925 247.350601 
+L 598.517396 243.549375 
+L 596.524313 239.114175 
+L 595.8925 237.933621 
+L 592.1725 234.77014 
+L 591.964405 234.678975 
+L 588.4525 231.453448 
+L 586.33166 230.243775 
+L 584.7325 228.871437 
+L 581.0125 226.504233 
+L 579.516843 225.808575 
+L 577.2925 224.345965 
+L 573.5725 222.476966 
+L 570.404478 221.373375 
+L 569.8525 221.108452 
+L 566.1325 219.686355 
+L 562.4125 218.807469 
+L 558.6925 218.497663 
+L 554.9725 218.874672 
+L 551.2525 218.96498 
+L 547.5325 219.028474 
+L 543.8125 219.873867 
+L 542.823869 221.373375 
+L 543.8125 222.194835 
+L 547.5325 224.23646 
+L 549.227687 225.808575 
+L 551.2525 228.146453 
+L 552.915483 230.243775 
+L 554.9725 232.628099 
+L 557.41965 234.678975 
+L 558.6925 235.831166 
+L 562.4125 238.322473 
+L 564.135527 239.114175 
+L 566.1325 240.320944 
+L 569.8525 242.062331 
+L 573.5725 243.290255 
+L 574.564719 243.549375 
+z
+M 581.804848 243.549375 
+L 581.0125 243.408139 
+L 577.2925 242.554233 
+L 573.5725 241.327711 
+L 569.8525 239.660741 
+L 568.812342 239.114175 
+L 566.1325 238.125058 
+L 562.4125 236.10426 
+L 560.51269 234.678975 
+L 558.6925 233.705464 
+L 555.197348 230.243775 
+L 554.9725 230.050928 
+L 551.505155 225.808575 
+L 551.2525 224.028436 
+L 547.5325 221.811176 
+L 546.722525 221.373375 
+L 547.5325 221.014811 
+L 551.2525 220.766748 
+L 554.9725 220.780779 
+L 558.6925 220.206718 
+L 562.4125 220.680993 
+L 564.738398 221.373375 
+L 566.1325 221.620255 
+L 569.8525 222.682901 
+L 573.5725 224.297848 
+L 576.224307 225.808575 
+L 577.2925 226.206431 
+L 581.0125 228.058139 
+L 584.08434 230.243775 
+L 584.7325 230.514942 
+L 588.4525 232.750511 
+L 590.552182 234.678975 
+L 592.1725 235.388823 
+L 595.8925 239.049817 
+L 595.926943 239.114175 
+L 597.892971 243.549375 
+L 595.8925 246.446345 
+L 592.1725 245.960143 
+L 588.4525 245.309123 
+L 584.7325 244.424248 
+z
+" clip-path="url(#p868edd328b)" style="fill: #3f8ec0"/>
+    <path d="M 536.3725 217.381726 
+L 540.0925 217.964413 
+L 541.201654 216.938175 
+L 540.0925 216.395903 
+L 536.3725 216.491483 
+L 535.546586 216.938175 
+z
+" clip-path="url(#p868edd328b)" style="fill: #3f8ec0"/>
+   </g>
+   <g id="PathCollection_22">
+    <path d="M 629.3725 275.574323 
+L 633.0925 274.859667 
+L 633.257269 274.595775 
+L 633.0925 274.309194 
+L 631.767232 270.160575 
+L 629.3725 266.917886 
+L 628.193672 265.725375 
+L 625.6525 262.938922 
+L 623.73869 261.290175 
+L 621.9325 259.590305 
+L 618.395994 256.854975 
+L 618.2125 256.708247 
+L 614.4925 253.402324 
+L 613.24978 252.419775 
+L 610.7725 250.459334 
+L 607.0525 248.556005 
+L 606.504023 247.984575 
+L 603.3325 246.794974 
+L 600.667884 247.984575 
+L 603.3325 251.383368 
+L 604.101935 252.419775 
+L 607.0525 256.09888 
+L 607.825006 256.854975 
+L 610.7725 260.352754 
+L 611.747579 261.290175 
+L 614.4925 264.347644 
+L 616.009092 265.725375 
+L 618.2125 267.967852 
+L 620.96413 270.160575 
+L 621.9325 271.007806 
+L 625.6525 273.913235 
+L 627.658718 274.595775 
+z
+M 622.308038 270.160575 
+L 621.9325 269.849587 
+L 618.2125 266.4915 
+L 617.459723 265.725375 
+L 614.4925 263.029834 
+L 612.930677 261.290175 
+L 610.7725 259.215347 
+L 608.783471 256.854975 
+L 607.0525 255.160776 
+L 604.854275 252.419775 
+L 603.3325 250.369987 
+L 601.462363 247.984575 
+L 603.3325 247.149664 
+L 605.558405 247.984575 
+L 607.0525 249.541195 
+L 610.7725 250.990298 
+L 612.578835 252.419775 
+L 614.4925 253.932801 
+L 617.715191 256.854975 
+L 618.2125 257.39408 
+L 621.9325 260.536809 
+L 622.732986 261.290175 
+L 625.6525 263.805337 
+L 627.403525 265.725375 
+L 629.3725 267.717205 
+L 631.176934 270.160575 
+L 629.3725 274.343728 
+L 625.6525 273.198553 
+z
+" clip-path="url(#p868edd328b)" style="fill: #307ab6"/>
+    <path d="M 584.7325 244.424248 
+L 588.4525 245.309123 
+L 592.1725 245.960143 
+L 595.8925 246.446345 
+L 597.892971 243.549375 
+L 595.926943 239.114175 
+L 595.8925 239.049817 
+L 592.1725 235.388823 
+L 590.552182 234.678975 
+L 588.4525 232.750511 
+L 584.7325 230.514942 
+L 584.08434 230.243775 
+L 581.0125 228.058139 
+L 577.2925 226.206431 
+L 576.224307 225.808575 
+L 573.5725 224.297848 
+L 569.8525 222.682901 
+L 566.1325 221.620255 
+L 564.738398 221.373375 
+L 562.4125 220.680993 
+L 558.6925 220.206718 
+L 554.9725 220.780779 
+L 551.2525 220.766748 
+L 547.5325 221.014811 
+L 546.722525 221.373375 
+L 547.5325 221.811176 
+L 551.2525 224.028436 
+L 551.505155 225.808575 
+L 554.9725 230.050928 
+L 555.197348 230.243775 
+L 558.6925 233.705464 
+L 560.51269 234.678975 
+L 562.4125 236.10426 
+L 566.1325 238.125058 
+L 568.812342 239.114175 
+L 569.8525 239.660741 
+L 573.5725 241.327711 
+L 577.2925 242.554233 
+L 581.0125 243.408139 
+L 581.804848 243.549375 
+z
+M 587.924486 243.549375 
+L 584.7325 243.107149 
+L 581.0125 242.229503 
+L 577.2925 240.992049 
+L 573.5725 239.365167 
+L 573.044064 239.114175 
+L 569.8525 238.142487 
+L 566.1325 236.438137 
+L 563.362134 234.678975 
+L 562.4125 234.325412 
+L 558.6925 232.124086 
+L 556.794013 230.243775 
+L 554.9725 228.68151 
+L 552.624403 225.808575 
+L 554.9725 222.47 
+L 558.6925 221.583788 
+L 562.4125 221.852201 
+L 566.1325 222.734799 
+L 569.8525 224.147039 
+L 573.087013 225.808575 
+L 573.5725 225.950336 
+L 577.2925 227.396887 
+L 581.0125 229.612045 
+L 581.900376 230.243775 
+L 584.7325 231.428636 
+L 588.4525 234.047574 
+L 589.139959 234.678975 
+L 592.1725 236.007506 
+L 595.304698 239.114175 
+L 595.8925 240.44266 
+L 597.268547 243.549375 
+L 595.8925 245.542088 
+L 592.1725 244.703465 
+L 588.4525 243.697895 
+z
+" clip-path="url(#p868edd328b)" style="fill: #307ab6"/>
+   </g>
+   <g id="PathCollection_23">
+    <path d="M 625.6525 273.198553 
+L 629.3725 274.343728 
+L 631.176934 270.160575 
+L 629.3725 267.717205 
+L 627.403525 265.725375 
+L 625.6525 263.805337 
+L 622.732986 261.290175 
+L 621.9325 260.536809 
+L 618.2125 257.39408 
+L 617.715191 256.854975 
+L 614.4925 253.932801 
+L 612.578835 252.419775 
+L 610.7725 250.990298 
+L 607.0525 249.541195 
+L 605.558405 247.984575 
+L 603.3325 247.149664 
+L 601.462363 247.984575 
+L 603.3325 250.369987 
+L 604.854275 252.419775 
+L 607.0525 255.160776 
+L 608.783471 256.854975 
+L 610.7725 259.215347 
+L 612.930677 261.290175 
+L 614.4925 263.029834 
+L 617.459723 265.725375 
+L 618.2125 266.4915 
+L 621.9325 269.849587 
+L 622.308038 270.160575 
+z
+M 623.094819 270.160575 
+L 621.9325 269.198042 
+L 618.520465 265.725375 
+L 618.2125 265.34602 
+L 614.4925 261.712024 
+L 614.113774 261.290175 
+L 610.7725 258.077941 
+L 609.741936 256.854975 
+L 607.0525 254.222672 
+L 605.606614 252.419775 
+L 607.0525 250.526385 
+L 610.7725 251.521263 
+L 611.907891 252.419775 
+L 614.4925 254.463279 
+L 617.130158 256.854975 
+L 618.2125 258.02828 
+L 621.790545 261.290175 
+L 621.9325 261.453715 
+L 625.6525 264.671751 
+L 626.613378 265.725375 
+L 629.3725 268.516524 
+L 630.586635 270.160575 
+L 629.3725 272.97526 
+L 625.6525 272.483872 
+z
+M 602.256842 247.984575 
+L 603.3325 247.504354 
+L 604.612787 247.984575 
+L 603.3325 249.356607 
+z
+" clip-path="url(#p868edd328b)" style="fill: #2267ac"/>
+    <path d="M 588.4525 243.697895 
+L 592.1725 244.703465 
+L 595.8925 245.542088 
+L 597.268547 243.549375 
+L 595.8925 240.44266 
+L 595.304698 239.114175 
+L 592.1725 236.007506 
+L 589.139959 234.678975 
+L 588.4525 234.047574 
+L 584.7325 231.428636 
+L 581.900376 230.243775 
+L 581.0125 229.612045 
+L 577.2925 227.396887 
+L 573.5725 225.950336 
+L 573.087013 225.808575 
+L 569.8525 224.147039 
+L 566.1325 222.734799 
+L 562.4125 221.852201 
+L 558.6925 221.583788 
+L 554.9725 222.47 
+L 552.624403 225.808575 
+L 554.9725 228.68151 
+L 556.794013 230.243775 
+L 558.6925 232.124086 
+L 562.4125 234.325412 
+L 563.362134 234.678975 
+L 566.1325 236.438137 
+L 569.8525 238.142487 
+L 573.044064 239.114175 
+L 573.5725 239.365167 
+L 577.2925 240.992049 
+L 581.0125 242.229503 
+L 584.7325 243.107149 
+L 587.924486 243.549375 
+z
+M 592.408762 243.549375 
+L 592.1725 243.461133 
+L 588.4525 242.927555 
+L 584.7325 242.313547 
+L 581.0125 241.050867 
+L 577.2925 239.429864 
+L 576.592676 239.114175 
+L 573.5725 238.360599 
+L 569.8525 236.884499 
+L 566.1325 234.751216 
+L 566.018733 234.678975 
+L 562.4125 233.336321 
+L 558.6925 230.542708 
+L 558.390677 230.243775 
+L 554.9725 227.312091 
+L 553.743652 225.808575 
+L 554.9725 224.061372 
+L 558.6925 222.246781 
+L 562.4125 222.611713 
+L 566.1325 223.849342 
+L 569.8525 225.611177 
+L 570.236774 225.808575 
+L 573.5725 226.782602 
+L 577.2925 228.587343 
+L 579.900264 230.243775 
+L 581.0125 230.601864 
+L 584.7325 232.34233 
+L 587.830748 234.678975 
+L 588.4525 235.053314 
+L 592.1725 236.626189 
+L 594.680931 239.114175 
+L 595.8925 241.85243 
+L 596.644122 243.549375 
+L 595.8925 244.637832 
+z
+" clip-path="url(#p868edd328b)" style="fill: #2267ac"/>
+   </g>
+   <g id="PathCollection_24">
+    <path d="M 625.6525 272.483872 
+L 629.3725 272.97526 
+L 630.586635 270.160575 
+L 629.3725 268.516524 
+L 626.613378 265.725375 
+L 625.6525 264.671751 
+L 621.9325 261.453715 
+L 621.790545 261.290175 
+L 618.2125 258.02828 
+L 617.130158 256.854975 
+L 614.4925 254.463279 
+L 611.907891 252.419775 
+L 610.7725 251.521263 
+L 607.0525 250.526385 
+L 605.606614 252.419775 
+L 607.0525 254.222672 
+L 609.741936 256.854975 
+L 610.7725 258.077941 
+L 614.113774 261.290175 
+L 614.4925 261.712024 
+L 618.2125 265.34602 
+L 618.520465 265.725375 
+L 621.9325 269.198042 
+L 623.094819 270.160575 
+z
+M 623.881601 270.160575 
+L 621.9325 268.546498 
+L 619.160634 265.725375 
+L 618.2125 264.557454 
+L 615.016877 261.290175 
+L 614.4925 260.570236 
+L 610.7725 256.940534 
+L 610.700401 256.854975 
+L 607.0525 253.284568 
+L 606.358954 252.419775 
+L 607.0525 251.511576 
+L 610.7725 252.052227 
+L 611.236946 252.419775 
+L 614.4925 254.993757 
+L 616.545126 256.854975 
+L 618.2125 258.66248 
+L 621.094877 261.290175 
+L 621.9325 262.255167 
+L 625.6525 265.538166 
+L 625.82323 265.725375 
+L 629.3725 269.315843 
+L 629.996336 270.160575 
+L 629.3725 271.606792 
+L 625.6525 271.769191 
+z
+" clip-path="url(#p868edd328b)" style="fill: #15508d"/>
+    <path d="M 603.3325 249.356607 
+L 604.612787 247.984575 
+L 603.3325 247.504354 
+L 602.256842 247.984575 
+z
+M 603.051322 247.984575 
+L 603.3325 247.859045 
+L 603.667169 247.984575 
+L 603.3325 248.343226 
+z
+" clip-path="url(#p868edd328b)" style="fill: #15508d"/>
+    <path d="M 595.8925 244.637832 
+L 596.644122 243.549375 
+L 595.8925 241.85243 
+L 594.680931 239.114175 
+L 592.1725 236.626189 
+L 588.4525 235.053314 
+L 587.830748 234.678975 
+L 584.7325 232.34233 
+L 581.0125 230.601864 
+L 579.900264 230.243775 
+L 577.2925 228.587343 
+L 573.5725 226.782602 
+L 570.236774 225.808575 
+L 569.8525 225.611177 
+L 566.1325 223.849342 
+L 562.4125 222.611713 
+L 558.6925 222.246781 
+L 554.9725 224.061372 
+L 553.743652 225.808575 
+L 554.9725 227.312091 
+L 558.390677 230.243775 
+L 558.6925 230.542708 
+L 562.4125 233.336321 
+L 566.018733 234.678975 
+L 566.1325 234.751216 
+L 569.8525 236.884499 
+L 573.5725 238.360599 
+L 576.592676 239.114175 
+L 577.2925 239.429864 
+L 581.0125 241.050867 
+L 584.7325 242.313547 
+L 588.4525 242.927555 
+L 592.1725 243.461133 
+L 592.408762 243.549375 
+z
+M 595.302944 243.549375 
+L 595.8925 243.262199 
+L 596.019698 243.549375 
+L 595.8925 243.733576 
+z
+M 579.352241 239.114175 
+L 577.2925 238.601191 
+L 573.5725 237.496515 
+L 569.8525 235.626512 
+L 568.214299 234.678975 
+L 566.1325 234.080228 
+L 562.4125 232.347229 
+L 559.719453 230.243775 
+L 558.6925 229.549848 
+L 554.9725 225.942672 
+L 554.8629 225.808575 
+L 554.9725 225.652743 
+L 558.6925 222.909775 
+L 562.4125 223.371226 
+L 566.1325 224.963885 
+L 567.869538 225.808575 
+L 569.8525 226.348122 
+L 573.5725 227.614867 
+L 577.2925 229.777799 
+L 578.026098 230.243775 
+L 581.0125 231.20526 
+L 584.7325 233.256024 
+L 586.619246 234.678975 
+L 588.4525 235.782724 
+L 592.1725 237.244872 
+L 594.057164 239.114175 
+L 592.1725 242.380183 
+L 588.4525 242.242597 
+L 584.7325 241.519945 
+L 581.0125 239.872231 
+z
+" clip-path="url(#p868edd328b)" style="fill: #15508d"/>
+   </g>
+   <g id="PathCollection_25">
+    <path d="M 625.6525 271.769191 
+L 629.3725 271.606792 
+L 629.996336 270.160575 
+L 629.3725 269.315843 
+L 625.82323 265.725375 
+L 625.6525 265.538166 
+L 621.9325 262.255167 
+L 621.094877 261.290175 
+L 618.2125 258.66248 
+L 616.545126 256.854975 
+L 614.4925 254.993757 
+L 611.236946 252.419775 
+L 610.7725 252.052227 
+L 607.0525 251.511576 
+L 606.358954 252.419775 
+L 607.0525 253.284568 
+L 610.700401 256.854975 
+L 610.7725 256.940534 
+L 614.4925 260.570236 
+L 615.016877 261.290175 
+L 618.2125 264.557454 
+L 619.160634 265.725375 
+L 621.9325 268.546498 
+L 623.881601 270.160575 
+z
+M 624.668382 270.160575 
+L 621.9325 267.894954 
+L 619.800802 265.725375 
+L 618.2125 263.768889 
+L 615.788148 261.290175 
+L 614.4925 259.511325 
+L 611.774488 256.854975 
+L 614.4925 255.524235 
+L 615.960094 256.854975 
+L 618.2125 259.296681 
+L 620.399208 261.290175 
+L 621.9325 263.056619 
+L 624.943621 265.725375 
+L 625.6525 267.434128 
+L 629.3725 270.115162 
+L 629.406038 270.160575 
+L 629.3725 270.238324 
+L 625.6525 271.054509 
+z
+" clip-path="url(#p868edd328b)" style="fill: #0a3b70"/>
+    <path d="M 603.3325 248.343226 
+L 603.667169 247.984575 
+L 603.3325 247.859045 
+L 603.051322 247.984575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #0a3b70"/>
+    <path d="M 595.8925 243.733576 
+L 596.019698 243.549375 
+L 595.8925 243.262199 
+L 595.302944 243.549375 
+z
+" clip-path="url(#p868edd328b)" style="fill: #0a3b70"/>
+    <path d="M 581.0125 239.872231 
+L 584.7325 241.519945 
+L 588.4525 242.242597 
+L 592.1725 242.380183 
+L 594.057164 239.114175 
+L 592.1725 237.244872 
+L 588.4525 235.782724 
+L 586.619246 234.678975 
+L 584.7325 233.256024 
+L 581.0125 231.20526 
+L 578.026098 230.243775 
+L 577.2925 229.777799 
+L 573.5725 227.614867 
+L 569.8525 226.348122 
+L 567.869538 225.808575 
+L 566.1325 224.963885 
+L 562.4125 223.371226 
+L 558.6925 222.909775 
+L 554.9725 225.652743 
+L 554.8629 225.808575 
+L 554.9725 225.942672 
+L 558.6925 229.549848 
+L 559.719453 230.243775 
+L 562.4125 232.347229 
+L 566.1325 234.080228 
+L 568.214299 234.678975 
+L 569.8525 235.626512 
+L 573.5725 237.496515 
+L 577.2925 238.601191 
+L 579.352241 239.114175 
+z
+M 581.568307 239.114175 
+L 581.0125 238.80469 
+L 577.2925 237.958287 
+L 573.5725 236.632431 
+L 570.218614 234.678975 
+L 569.8525 234.479736 
+L 566.1325 233.454694 
+L 562.4125 231.358137 
+L 560.985784 230.243775 
+L 558.6925 228.69417 
+L 555.757582 225.808575 
+L 558.6925 223.572769 
+L 562.4125 224.130738 
+L 565.765056 225.808575 
+L 566.1325 226.008354 
+L 569.8525 226.971747 
+L 573.5725 228.447132 
+L 576.474416 230.243775 
+L 577.2925 230.716533 
+L 581.0125 231.808655 
+L 584.7325 234.169718 
+L 585.407744 234.678975 
+L 588.4525 236.512134 
+L 592.1725 237.863555 
+L 593.433397 239.114175 
+L 592.1725 241.299233 
+L 588.4525 241.55764 
+L 584.7325 240.726344 
+z
+" clip-path="url(#p868edd328b)" style="fill: #0a3b70"/>
+   </g>
+   <g id="PathCollection_26">
+    <path d="M 625.6525 271.054509 
+L 629.3725 270.238324 
+L 629.406038 270.160575 
+L 629.3725 270.115162 
+L 625.6525 267.434128 
+L 624.943621 265.725375 
+L 621.9325 263.056619 
+L 620.399208 261.290175 
+L 618.2125 259.296681 
+L 615.960094 256.854975 
+L 614.4925 255.524235 
+L 611.774488 256.854975 
+L 614.4925 259.511325 
+L 615.788148 261.290175 
+L 618.2125 263.768889 
+L 619.800802 265.725375 
+L 621.9325 267.894954 
+L 624.668382 270.160575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #053061"/>
+    <path d="M 584.7325 240.726344 
+L 588.4525 241.55764 
+L 592.1725 241.299233 
+L 593.433397 239.114175 
+L 592.1725 237.863555 
+L 588.4525 236.512134 
+L 585.407744 234.678975 
+L 584.7325 234.169718 
+L 581.0125 231.808655 
+L 577.2925 230.716533 
+L 576.474416 230.243775 
+L 573.5725 228.447132 
+L 569.8525 226.971747 
+L 566.1325 226.008354 
+L 565.765056 225.808575 
+L 562.4125 224.130738 
+L 558.6925 223.572769 
+L 555.757582 225.808575 
+L 558.6925 228.69417 
+L 560.985784 230.243775 
+L 562.4125 231.358137 
+L 566.1325 233.454694 
+L 569.8525 234.479736 
+L 570.218614 234.678975 
+L 573.5725 236.632431 
+L 577.2925 237.958287 
+L 581.0125 238.80469 
+L 581.568307 239.114175 
+z
+" clip-path="url(#p868edd328b)" style="fill: #053061"/>
+   </g>
+   <g id="PolyCollection_1">
+    <path d="M 246.2125 172.586175 
+L 320.6125 172.586175 
+L 320.6125 175.247295 
+L 320.805499 175.247295 
+L 320.805499 178.795455 
+L 320.6125 178.795455 
+L 320.6125 181.456575 
+L 246.2125 181.456575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+    <path d="M 320.805499 175.247295 
+L 395.0125 175.247295 
+L 395.104782 175.254145 
+L 395.580081 175.318077 
+L 395.210954 178.838837 
+L 394.920218 178.788605 
+L 395.0125 178.795455 
+L 320.805499 178.795455 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21908d"/>
+    <path d="M 395.580081 175.318077 
+L 469.597064 186.348995 
+L 469.227936 189.869755 
+L 395.210954 178.838837 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21908d"/>
+    <path d="M 468.682991 186.56313 
+L 552.664785 130.81415 
+L 553.713079 133.036083 
+L 470.142009 189.65562 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21908d"/>
+    <path d="M 552.664785 130.81415 
+L 618.030123 87.487294 
+L 618.094863 87.453095 
+L 638.410661 79.440722 
+L 638.838175 80.969846 
+L 618.330137 89.181655 
+L 618.394877 89.147456 
+L 553.713079 133.036083 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+    <path d="M 638.410661 79.440722 
+L 729.694863 43.544615 
+L 729.930137 44.386135 
+L 638.838175 80.969846 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+    <path d="M 469.725293 187.065172 
+L 513.125293 205.545172 
+L 512.499707 207.633578 
+L 469.099707 189.153578 
+z
+" clip-path="url(#p868edd328b)" style="fill: #218f8d"/>
+    <path d="M 513.125293 205.545172 
+L 556.525293 224.025172 
+L 555.899707 226.113578 
+L 512.499707 207.633578 
+z
+" clip-path="url(#p868edd328b)" style="fill: #218e8d"/>
+    <path d="M 556.525293 224.025172 
+L 599.925293 242.505172 
+L 599.299707 244.593578 
+L 555.899707 226.113578 
+z
+" clip-path="url(#p868edd328b)" style="fill: #1f948c"/>
+    <path d="M 600.193466 242.683548 
+L 631.077273 272.424713 
+L 630.147727 273.810037 
+L 599.031534 244.415202 
+z
+" clip-path="url(#p868edd328b)" style="fill: #1f968b"/>
+    <path d="M 631.077273 272.424713 
+L 661.96108 302.165879 
+L 661.26392 303.204871 
+L 630.147727 273.810037 
+z
+" clip-path="url(#p868edd328b)" style="fill: #228d8d"/>
+    <path d="M 661.96108 302.165879 
+L 692.844887 331.907044 
+L 692.380113 332.599706 
+L 661.26392 303.204871 
+z
+" clip-path="url(#p868edd328b)" style="fill: #228c8d"/>
+    <path d="M 599.196591 242.557634 
+L 673.929318 198.777267 
+L 674.026766 198.754508 
+L 699.349887 201.076291 
+L 699.292825 201.960718 
+L 673.998234 199.640242 
+L 674.095682 199.617483 
+L 600.028409 244.541116 
+z
+" clip-path="url(#p868edd328b)" style="fill: #fde725"/>
+    <path d="M 699.349887 201.076291 
+L 807.595459 211.003726 
+L 807.538397 211.888154 
+L 699.292825 201.960718 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21908d"/>
+    <path d="M 807.595459 211.003726 
+L 915.841031 220.931161 
+L 915.783969 221.815589 
+L 807.538397 211.888154 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21908d"/>
+    <path d="M 246.2125 172.586175 
+L 184.2125 174.275775 
+L 184.2125 179.766975 
+L 246.2125 181.456575 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+    <path d="M 184.2125 174.275775 
+L 122.2125 175.965375 
+L 122.2125 178.077375 
+L 184.2125 179.766975 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+    <path d="M 122.2125 175.965375 
+L 116.0125 176.134335 
+L 116.0125 176.134335 
+L 60.2125 176.134335 
+L 60.2125 177.908415 
+L 116.0125 177.908415 
+L 116.0125 177.908415 
+L 122.2125 178.077375 
+z
+" clip-path="url(#p868edd328b)" style="fill: #21918c"/>
+   </g>
+   <g id="PolyCollection_2">
+    <path d="M 246.2125 172.586175 
+L 320.6125 172.586175 
+L 320.6125 181.456575 
+L 246.2125 181.456575 
+L 246.2125 172.586175 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 320.6125 175.247295 
+L 320.805499 175.247295 
+L 320.805499 178.795455 
+L 320.6125 178.795455 
+L 320.6125 175.247295 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 320.805499 175.247295 
+L 395.0125 175.247295 
+L 395.0125 178.795455 
+L 320.805499 178.795455 
+L 320.805499 175.247295 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 395.197064 175.260995 
+L 395.580081 175.318077 
+L 395.210954 178.838837 
+L 394.827936 178.781755 
+L 395.197064 175.260995 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 395.580081 175.318077 
+L 469.597064 186.348995 
+L 469.227936 189.869755 
+L 395.210954 178.838837 
+L 395.580081 175.318077 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 468.682991 186.56313 
+L 552.664785 130.81415 
+L 553.713079 133.036083 
+L 470.142009 189.65562 
+L 468.682991 186.56313 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 552.664785 130.81415 
+L 617.847746 87.544253 
+L 618.577254 89.090497 
+L 553.713079 133.036083 
+L 552.664785 130.81415 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 617.977227 87.475855 
+L 638.410661 79.440722 
+L 638.838175 80.969846 
+L 618.447773 89.158895 
+L 617.977227 87.475855 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 638.410661 79.440722 
+L 729.694863 43.544615 
+L 729.930137 44.386135 
+L 638.838175 80.969846 
+L 638.410661 79.440722 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 469.725293 187.065172 
+L 513.125293 205.545172 
+L 512.499707 207.633578 
+L 469.099707 189.153578 
+L 469.725293 187.065172 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 513.125293 205.545172 
+L 556.525293 224.025172 
+L 555.899707 226.113578 
+L 512.499707 207.633578 
+L 513.125293 205.545172 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 556.525293 224.025172 
+L 599.925293 242.505172 
+L 599.299707 244.593578 
+L 555.899707 226.113578 
+L 556.525293 224.025172 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 600.193466 242.683548 
+L 631.077273 272.424713 
+L 630.147727 273.810037 
+L 599.031534 244.415202 
+L 600.193466 242.683548 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 631.077273 272.424713 
+L 661.96108 302.165879 
+L 661.26392 303.204871 
+L 630.147727 273.810037 
+L 631.077273 272.424713 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 661.96108 302.165879 
+L 692.844887 331.907044 
+L 692.380113 332.599706 
+L 661.26392 303.204871 
+L 661.96108 302.165879 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 599.196591 242.557634 
+L 673.846137 198.800679 
+L 674.178863 199.594071 
+L 600.028409 244.541116 
+L 599.196591 242.557634 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 674.041031 198.755161 
+L 699.349887 201.076291 
+L 699.292825 201.960718 
+L 673.983969 199.639589 
+L 674.041031 198.755161 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 699.349887 201.076291 
+L 807.595459 211.003726 
+L 807.538397 211.888154 
+L 699.292825 201.960718 
+L 699.349887 201.076291 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 807.595459 211.003726 
+L 915.841031 220.931161 
+L 915.783969 221.815589 
+L 807.538397 211.888154 
+L 807.595459 211.003726 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 246.2125 172.586175 
+L 184.2125 174.275775 
+L 184.2125 179.766975 
+L 246.2125 181.456575 
+L 246.2125 172.586175 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 184.2125 174.275775 
+L 122.2125 175.965375 
+L 122.2125 178.077375 
+L 184.2125 179.766975 
+L 184.2125 174.275775 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 122.2125 175.965375 
+L 116.0125 176.134335 
+L 116.0125 177.908415 
+L 122.2125 178.077375 
+L 122.2125 175.965375 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+    <path d="M 116.0125 176.134335 
+L 60.2125 176.134335 
+L 60.2125 177.908415 
+L 116.0125 177.908415 
+L 116.0125 176.134335 
+z
+" clip-path="url(#p868edd328b)" style="fill: none; stroke: #000000; stroke-width: 0.5"/>
+   </g>
+   <g id="line2d_27">
+    <defs>
+     <path id="m1da6145b8b" d="M 0 5 
+C 1.326016 5 2.597899 4.473168 3.535534 3.535534 
+C 4.473168 2.597899 5 1.326016 5 0 
+C 5 -1.326016 4.473168 -2.597899 3.535534 -3.535534 
+C 2.597899 -4.473168 1.326016 -5 0 -5 
+C -1.326016 -5 -2.597899 -4.473168 -3.535534 -3.535534 
+C -4.473168 -2.597899 -5 -1.326016 -5 0 
+C -5 1.326016 -4.473168 2.597899 -3.535534 3.535534 
+C -2.597899 4.473168 -1.326016 5 0 5 
+z
+"/>
+    </defs>
+    <g clip-path="url(#p868edd328b)">
+     <use xlink:href="#m1da6145b8b" x="648.164402" y="214.606177"/>
+    </g>
+   </g>
+   <g id="patch_3">
+    <path d="M 41.6125 354.429375 
+L 41.6125 21.789375 
+" style="fill: none"/>
+   </g>
+   <g id="patch_4">
+    <path d="M 934.4125 354.429375 
+L 934.4125 21.789375 
+" style="fill: none"/>
+   </g>
+   <g id="patch_5">
+    <path d="M 41.6125 354.429375 
+L 934.4125 354.429375 
+" style="fill: none"/>
+   </g>
+   <g id="patch_6">
+    <path d="M 41.6125 21.789375 
+L 934.4125 21.789375 
+" style="fill: none"/>
+   </g>
+   <g id="text_16">
+    <!-- $V_e$ and $V_m$ at $t$=499.0 ms -->
+    <g style="fill: #262626" transform="translate(420.5725 15.789375)scale(0.12 -0.12)">
+     <defs>
+      <path id="DejaVuSans-Oblique-56" d="M 1319 0 
+L 500 4666 
+L 1119 4666 
+L 1797 653 
+L 4063 4666 
+L 4750 4666 
+L 2053 0 
+L 1319 0 
+z
+" transform="scale(0.015625)"/>
+      <path id="DejaVuSans-Oblique-65" d="M 3078 2063 
+Q 3088 2113 3092 2166 
+Q 3097 2219 3097 2272 
+Q 3097 2653 2873 2875 
+Q 2650 3097 2266 3097 
+Q 1838 3097 1509 2826 
+Q 1181 2556 1013 2059 
+L 3078 2063 
+z
+M 3578 1613 
+L 903 1613 
+Q 884 1494 878 1425 
+Q 872 1356 872 1306 
+Q 872 872 1139 634 
+Q 1406 397 1894 397 
+Q 2269 397 2603 481 
+Q 2938 566 3225 728 
+L 3116 159 
+Q 2806 34 2476 -28 
+Q 2147 -91 1806 -91 
+Q 1078 -91 686 257 
+Q 294 606 294 1247 
+Q 294 1794 489 2264 
+Q 684 2734 1063 3103 
+Q 1306 3334 1642 3459 
+Q 1978 3584 2356 3584 
+Q 2950 3584 3301 3228 
+Q 3653 2872 3653 2272 
+Q 3653 2128 3634 1964 
+Q 3616 1800 3578 1613 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-61" d="M 2588 409 
+Q 2275 144 1986 34 
+Q 1697 -75 1366 -75 
+Q 819 -75 525 192 
+Q 231 459 231 875 
+Q 231 1119 342 1320 
+Q 453 1522 633 1644 
+Q 813 1766 1038 1828 
+Q 1203 1872 1538 1913 
+Q 2219 1994 2541 2106 
+Q 2544 2222 2544 2253 
+Q 2544 2597 2384 2738 
+Q 2169 2928 1744 2928 
+Q 1347 2928 1158 2789 
+Q 969 2650 878 2297 
+L 328 2372 
+Q 403 2725 575 2942 
+Q 747 3159 1072 3276 
+Q 1397 3394 1825 3394 
+Q 2250 3394 2515 3294 
+Q 2781 3194 2906 3042 
+Q 3031 2891 3081 2659 
+Q 3109 2516 3109 2141 
+L 3109 1391 
+Q 3109 606 3145 398 
+Q 3181 191 3288 0 
+L 2700 0 
+Q 2613 175 2588 409 
+z
+M 2541 1666 
+Q 2234 1541 1622 1453 
+Q 1275 1403 1131 1340 
+Q 988 1278 909 1158 
+Q 831 1038 831 891 
+Q 831 666 1001 516 
+Q 1172 366 1500 366 
+Q 1825 366 2078 508 
+Q 2331 650 2450 897 
+Q 2541 1088 2541 1459 
+L 2541 1666 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-6e" d="M 422 0 
+L 422 3319 
+L 928 3319 
+L 928 2847 
+Q 1294 3394 1984 3394 
+Q 2284 3394 2536 3286 
+Q 2788 3178 2913 3003 
+Q 3038 2828 3088 2588 
+Q 3119 2431 3119 2041 
+L 3119 0 
+L 2556 0 
+L 2556 2019 
+Q 2556 2363 2490 2533 
+Q 2425 2703 2258 2804 
+Q 2091 2906 1866 2906 
+Q 1506 2906 1245 2678 
+Q 984 2450 984 1813 
+L 984 0 
+L 422 0 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-64" d="M 2575 0 
+L 2575 419 
+Q 2259 -75 1647 -75 
+Q 1250 -75 917 144 
+Q 584 363 401 755 
+Q 219 1147 219 1656 
+Q 219 2153 384 2558 
+Q 550 2963 881 3178 
+Q 1213 3394 1622 3394 
+Q 1922 3394 2156 3267 
+Q 2391 3141 2538 2938 
+L 2538 4581 
+L 3097 4581 
+L 3097 0 
+L 2575 0 
+z
+M 797 1656 
+Q 797 1019 1065 703 
+Q 1334 388 1700 388 
+Q 2069 388 2326 689 
+Q 2584 991 2584 1609 
+Q 2584 2291 2321 2609 
+Q 2059 2928 1675 2928 
+Q 1300 2928 1048 2622 
+Q 797 2316 797 1656 
+z
+" transform="scale(0.015625)"/>
+      <path id="DejaVuSans-Oblique-6d" d="M 5747 2113 
+L 5338 0 
+L 4763 0 
+L 5166 2094 
+Q 5191 2228 5203 2325 
+Q 5216 2422 5216 2491 
+Q 5216 2772 5059 2928 
+Q 4903 3084 4622 3084 
+Q 4203 3084 3875 2770 
+Q 3547 2456 3450 1953 
+L 3066 0 
+L 2491 0 
+L 2900 2094 
+Q 2925 2209 2937 2307 
+Q 2950 2406 2950 2484 
+Q 2950 2769 2794 2926 
+Q 2638 3084 2363 3084 
+Q 1938 3084 1609 2770 
+Q 1281 2456 1184 1953 
+L 800 0 
+L 225 0 
+L 909 3500 
+L 1484 3500 
+L 1375 2956 
+Q 1609 3263 1923 3423 
+Q 2238 3584 2597 3584 
+Q 2978 3584 3223 3384 
+Q 3469 3184 3519 2828 
+Q 3781 3197 4126 3390 
+Q 4472 3584 4856 3584 
+Q 5306 3584 5551 3325 
+Q 5797 3066 5797 2591 
+Q 5797 2488 5784 2364 
+Q 5772 2241 5747 2113 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-74" d="M 1650 503 
+L 1731 6 
+Q 1494 -44 1306 -44 
+Q 1000 -44 831 53 
+Q 663 150 594 308 
+Q 525 466 525 972 
+L 525 2881 
+L 113 2881 
+L 113 3319 
+L 525 3319 
+L 525 4141 
+L 1084 4478 
+L 1084 3319 
+L 1650 3319 
+L 1650 2881 
+L 1084 2881 
+L 1084 941 
+Q 1084 700 1114 631 
+Q 1144 563 1211 522 
+Q 1278 481 1403 481 
+Q 1497 481 1650 503 
+z
+" transform="scale(0.015625)"/>
+      <path id="DejaVuSans-Oblique-74" d="M 2706 3500 
+L 2619 3053 
+L 1472 3053 
+L 1100 1153 
+Q 1081 1047 1072 975 
+Q 1063 903 1063 863 
+Q 1063 663 1183 572 
+Q 1303 481 1569 481 
+L 2150 481 
+L 2053 0 
+L 1503 0 
+Q 991 0 739 200 
+Q 488 400 488 806 
+Q 488 878 497 964 
+Q 506 1050 525 1153 
+L 897 3053 
+L 409 3053 
+L 500 3500 
+L 978 3500 
+L 1172 4494 
+L 1747 4494 
+L 1556 3500 
+L 2706 3500 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-3d" d="M 3381 2694 
+L 356 2694 
+L 356 3219 
+L 3381 3219 
+L 3381 2694 
+z
+M 3381 1303 
+L 356 1303 
+L 356 1828 
+L 3381 1828 
+L 3381 1303 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-39" d="M 350 1059 
+L 891 1109 
+Q 959 728 1153 556 
+Q 1347 384 1650 384 
+Q 1909 384 2104 503 
+Q 2300 622 2425 820 
+Q 2550 1019 2634 1356 
+Q 2719 1694 2719 2044 
+Q 2719 2081 2716 2156 
+Q 2547 1888 2255 1720 
+Q 1963 1553 1622 1553 
+Q 1053 1553 659 1965 
+Q 266 2378 266 3053 
+Q 266 3750 677 4175 
+Q 1088 4600 1706 4600 
+Q 2153 4600 2523 4359 
+Q 2894 4119 3086 3673 
+Q 3278 3228 3278 2384 
+Q 3278 1506 3087 986 
+Q 2897 466 2520 194 
+Q 2144 -78 1638 -78 
+Q 1100 -78 759 220 
+Q 419 519 350 1059 
+z
+M 2653 3081 
+Q 2653 3566 2395 3850 
+Q 2138 4134 1775 4134 
+Q 1400 4134 1122 3828 
+Q 844 3522 844 3034 
+Q 844 2597 1108 2323 
+Q 1372 2050 1759 2050 
+Q 2150 2050 2401 2323 
+Q 2653 2597 2653 3081 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-2e" d="M 581 0 
+L 581 641 
+L 1222 641 
+L 1222 0 
+L 581 0 
+z
+" transform="scale(0.015625)"/>
+      <path id="ArialMT-73" d="M 197 991 
+L 753 1078 
+Q 800 744 1014 566 
+Q 1228 388 1613 388 
+Q 2000 388 2187 545 
+Q 2375 703 2375 916 
+Q 2375 1106 2209 1216 
+Q 2094 1291 1634 1406 
+Q 1016 1563 777 1677 
+Q 538 1791 414 1992 
+Q 291 2194 291 2438 
+Q 291 2659 392 2848 
+Q 494 3038 669 3163 
+Q 800 3259 1026 3326 
+Q 1253 3394 1513 3394 
+Q 1903 3394 2198 3281 
+Q 2494 3169 2634 2976 
+Q 2775 2784 2828 2463 
+L 2278 2388 
+Q 2241 2644 2061 2787 
+Q 1881 2931 1553 2931 
+Q 1166 2931 1000 2803 
+Q 834 2675 834 2503 
+Q 834 2394 903 2306 
+Q 972 2216 1119 2156 
+Q 1203 2125 1616 2013 
+Q 2213 1853 2448 1751 
+Q 2684 1650 2818 1456 
+Q 2953 1263 2953 975 
+Q 2953 694 2789 445 
+Q 2625 197 2315 61 
+Q 2006 -75 1616 -75 
+Q 969 -75 630 194 
+Q 291 463 197 991 
+z
+" transform="scale(0.015625)"/>
+     </defs>
+     <use xlink:href="#DejaVuSans-Oblique-56" transform="translate(0 0.09375)"/>
+     <use xlink:href="#DejaVuSans-Oblique-65" transform="translate(68.408203 -16.3125)scale(0.7)"/>
+     <use xlink:href="#ArialMT-20" transform="translate(114.208984 0.09375)"/>
+     <use xlink:href="#ArialMT-61" transform="translate(141.992188 0.09375)"/>
+     <use xlink:href="#ArialMT-6e" transform="translate(197.607422 0.09375)"/>
+     <use xlink:href="#ArialMT-64" transform="translate(253.222656 0.09375)"/>
+     <use xlink:href="#ArialMT-20" transform="translate(308.837891 0.09375)"/>
+     <use xlink:href="#DejaVuSans-Oblique-56" transform="translate(336.621094 0.09375)"/>
+     <use xlink:href="#DejaVuSans-Oblique-6d" transform="translate(405.029297 -16.3125)scale(0.7)"/>
+     <use xlink:href="#ArialMT-20" transform="translate(475.952148 0.09375)"/>
+     <use xlink:href="#ArialMT-61" transform="translate(503.735352 0.09375)"/>
+     <use xlink:href="#ArialMT-74" transform="translate(559.350586 0.09375)"/>
+     <use xlink:href="#ArialMT-20" transform="translate(587.133789 0.09375)"/>
+     <use xlink:href="#DejaVuSans-Oblique-74" transform="translate(614.916992 0.09375)"/>
+     <use xlink:href="#ArialMT-3d" transform="translate(654.125977 0.09375)"/>
+     <use xlink:href="#ArialMT-34" transform="translate(712.524414 0.09375)"/>
+     <use xlink:href="#ArialMT-39" transform="translate(768.139648 0.09375)"/>
+     <use xlink:href="#ArialMT-39" transform="translate(823.754883 0.09375)"/>
+     <use xlink:href="#ArialMT-2e" transform="translate(879.370117 0.09375)"/>
+     <use xlink:href="#ArialMT-30" transform="translate(907.15332 0.09375)"/>
+     <use xlink:href="#ArialMT-20" transform="translate(962.768555 0.09375)"/>
+     <use xlink:href="#ArialMT-6d" transform="translate(990.551758 0.09375)"/>
+     <use xlink:href="#ArialMT-73" transform="translate(1073.852539 0.09375)"/>
+    </g>
+   </g>
+   <g id="legend_1">
+    <g id="line2d_28">
+     <g>
+      <use xlink:href="#m1da6145b8b" x="870.739063" y="34.447188"/>
+     </g>
+    </g>
+    <g id="text_17">
+     <!-- stimulus -->
+     <g style="fill: #262626" transform="translate(888.739063 37.947188)scale(0.1 -0.1)">
+      <defs>
+       <path id="ArialMT-69" d="M 425 3934 
+L 425 4581 
+L 988 4581 
+L 988 3934 
+L 425 3934 
+z
+M 425 0 
+L 425 3319 
+L 988 3319 
+L 988 0 
+L 425 0 
+z
+" transform="scale(0.015625)"/>
+       <path id="ArialMT-75" d="M 2597 0 
+L 2597 488 
+Q 2209 -75 1544 -75 
+Q 1250 -75 995 37 
+Q 741 150 617 320 
+Q 494 491 444 738 
+Q 409 903 409 1263 
+L 409 3319 
+L 972 3319 
+L 972 1478 
+Q 972 1038 1006 884 
+Q 1059 663 1231 536 
+Q 1403 409 1656 409 
+Q 1909 409 2131 539 
+Q 2353 669 2445 892 
+Q 2538 1116 2538 1541 
+L 2538 3319 
+L 3100 3319 
+L 3100 0 
+L 2597 0 
+z
+" transform="scale(0.015625)"/>
+       <path id="ArialMT-6c" d="M 409 0 
+L 409 4581 
+L 972 4581 
+L 972 0 
+L 409 0 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#ArialMT-73"/>
+      <use xlink:href="#ArialMT-74" x="50"/>
+      <use xlink:href="#ArialMT-69" x="77.783203"/>
+      <use xlink:href="#ArialMT-6d" x="100"/>
+      <use xlink:href="#ArialMT-75" x="183.300781"/>
+      <use xlink:href="#ArialMT-6c" x="238.916016"/>
+      <use xlink:href="#ArialMT-75" x="261.132812"/>
+      <use xlink:href="#ArialMT-73" x="316.748047"/>
+     </g>
+    </g>
+   </g>
+  </g>
+  <g id="axes_2">
+   <g id="patch_7">
+    <path d="M 943.3405 164.673375 
+L 952.2685 164.673375 
+L 952.2685 28.593375 
+L 943.3405 28.593375 
+z
+" style="fill: #eaeaf2"/>
+   </g>
+   <g id="patch_8">
+    <path clip-path="url(#p0c3c96ba48)" style="fill: #eaeaf2; stroke: #eaeaf2; stroke-width: 0.01; stroke-linejoin: miter"/>
+   </g>
+   <g id="matplotlib.axis_3">
+    <g id="ytick_9">
+     <g id="line2d_29"/>
+     <g id="text_18">
+      <!-- −3.700 -->
+      <g style="fill: #262626" transform="translate(959.2685 168.252281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-37" d="M 303 3981 
+L 303 4522 
+L 3269 4522 
+L 3269 4084 
+Q 2831 3619 2401 2847 
+Q 1972 2075 1738 1259 
+Q 1569 684 1522 0 
+L 944 0 
+Q 953 541 1156 1306 
+Q 1359 2072 1739 2783 
+Q 2119 3494 2547 3981 
+L 303 3981 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-33" x="58.398438"/>
+       <use xlink:href="#ArialMT-2e" x="114.013672"/>
+       <use xlink:href="#ArialMT-37" x="141.796875"/>
+       <use xlink:href="#ArialMT-30" x="197.412109"/>
+       <use xlink:href="#ArialMT-30" x="253.027344"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_10">
+     <g id="line2d_30"/>
+     <g id="text_19">
+      <!-- −2.775 -->
+      <g style="fill: #262626" transform="translate(959.2685 151.242281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-35" d="M 266 1200 
+L 856 1250 
+Q 922 819 1161 601 
+Q 1400 384 1738 384 
+Q 2144 384 2425 690 
+Q 2706 997 2706 1503 
+Q 2706 1984 2436 2262 
+Q 2166 2541 1728 2541 
+Q 1456 2541 1237 2417 
+Q 1019 2294 894 2097 
+L 366 2166 
+L 809 4519 
+L 3088 4519 
+L 3088 3981 
+L 1259 3981 
+L 1013 2750 
+Q 1425 3038 1878 3038 
+Q 2478 3038 2890 2622 
+Q 3303 2206 3303 1553 
+Q 3303 931 2941 478 
+Q 2500 -78 1738 -78 
+Q 1113 -78 717 272 
+Q 322 622 266 1200 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-32" x="58.398438"/>
+       <use xlink:href="#ArialMT-2e" x="114.013672"/>
+       <use xlink:href="#ArialMT-37" x="141.796875"/>
+       <use xlink:href="#ArialMT-37" x="197.412109"/>
+       <use xlink:href="#ArialMT-35" x="253.027344"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_11">
+     <g id="line2d_31"/>
+     <g id="text_20">
+      <!-- −1.850 -->
+      <g style="fill: #262626" transform="translate(959.2685 134.232281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-31" x="58.398438"/>
+       <use xlink:href="#ArialMT-2e" x="114.013672"/>
+       <use xlink:href="#ArialMT-38" x="141.796875"/>
+       <use xlink:href="#ArialMT-35" x="197.412109"/>
+       <use xlink:href="#ArialMT-30" x="253.027344"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_12">
+     <g id="line2d_32"/>
+     <g id="text_21">
+      <!-- −0.925 -->
+      <g style="fill: #262626" transform="translate(959.2685 117.222281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-2212"/>
+       <use xlink:href="#ArialMT-30" x="58.398438"/>
+       <use xlink:href="#ArialMT-2e" x="114.013672"/>
+       <use xlink:href="#ArialMT-39" x="141.796875"/>
+       <use xlink:href="#ArialMT-32" x="197.412109"/>
+       <use xlink:href="#ArialMT-35" x="253.027344"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_13">
+     <g id="line2d_33"/>
+     <g id="text_22">
+      <!-- 0.000 -->
+      <g style="fill: #262626" transform="translate(959.2685 100.212281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-30"/>
+       <use xlink:href="#ArialMT-2e" x="55.615234"/>
+       <use xlink:href="#ArialMT-30" x="83.398438"/>
+       <use xlink:href="#ArialMT-30" x="139.013672"/>
+       <use xlink:href="#ArialMT-30" x="194.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_14">
+     <g id="line2d_34"/>
+     <g id="text_23">
+      <!-- 0.925 -->
+      <g style="fill: #262626" transform="translate(959.2685 83.202281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-30"/>
+       <use xlink:href="#ArialMT-2e" x="55.615234"/>
+       <use xlink:href="#ArialMT-39" x="83.398438"/>
+       <use xlink:href="#ArialMT-32" x="139.013672"/>
+       <use xlink:href="#ArialMT-35" x="194.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_15">
+     <g id="line2d_35"/>
+     <g id="text_24">
+      <!-- 1.850 -->
+      <g style="fill: #262626" transform="translate(959.2685 66.192281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-31"/>
+       <use xlink:href="#ArialMT-2e" x="55.615234"/>
+       <use xlink:href="#ArialMT-38" x="83.398438"/>
+       <use xlink:href="#ArialMT-35" x="139.013672"/>
+       <use xlink:href="#ArialMT-30" x="194.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_16">
+     <g id="line2d_36"/>
+     <g id="text_25">
+      <!-- 2.775 -->
+      <g style="fill: #262626" transform="translate(959.2685 49.182281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-32"/>
+       <use xlink:href="#ArialMT-2e" x="55.615234"/>
+       <use xlink:href="#ArialMT-37" x="83.398438"/>
+       <use xlink:href="#ArialMT-37" x="139.013672"/>
+       <use xlink:href="#ArialMT-35" x="194.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_17">
+     <g id="line2d_37"/>
+     <g id="text_26">
+      <!-- 3.700 -->
+      <g style="fill: #262626" transform="translate(959.2685 32.172281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-33"/>
+       <use xlink:href="#ArialMT-2e" x="55.615234"/>
+       <use xlink:href="#ArialMT-37" x="83.398438"/>
+       <use xlink:href="#ArialMT-30" x="139.013672"/>
+       <use xlink:href="#ArialMT-30" x="194.628906"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_27">
+     <!-- $V_e$ (mV) -->
+     <g style="fill: #262626" transform="translate(1002.161 116.378375)rotate(-90)scale(0.11 -0.11)">
+      <defs>
+       <path id="ArialMT-56" d="M 1803 0 
+L 28 4581 
+L 684 4581 
+L 1875 1253 
+Q 2019 853 2116 503 
+Q 2222 878 2363 1253 
+L 3600 4581 
+L 4219 4581 
+L 2425 0 
+L 1803 0 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#DejaVuSans-Oblique-56" transform="translate(0 0.09375)"/>
+      <use xlink:href="#DejaVuSans-Oblique-65" transform="translate(68.408203 -16.3125)scale(0.7)"/>
+      <use xlink:href="#ArialMT-20" transform="translate(114.208984 0.09375)"/>
+      <use xlink:href="#ArialMT-28" transform="translate(141.992188 0.09375)"/>
+      <use xlink:href="#ArialMT-6d" transform="translate(175.292969 0.09375)"/>
+      <use xlink:href="#ArialMT-56" transform="translate(258.59375 0.09375)"/>
+      <use xlink:href="#ArialMT-29" transform="translate(325.292969 0.09375)"/>
+     </g>
+    </g>
+    <g id="text_28">
+     <!-- 1e−6 -->
+     <g style="fill: #262626" transform="translate(929.745063 25.593375)scale(0.1 -0.1)">
+      <defs>
+       <path id="ArialMT-65" d="M 2694 1069 
+L 3275 997 
+Q 3138 488 2766 206 
+Q 2394 -75 1816 -75 
+Q 1088 -75 661 373 
+Q 234 822 234 1631 
+Q 234 2469 665 2931 
+Q 1097 3394 1784 3394 
+Q 2450 3394 2872 2941 
+Q 3294 2488 3294 1666 
+Q 3294 1616 3291 1516 
+L 816 1516 
+Q 847 969 1125 678 
+Q 1403 388 1819 388 
+Q 2128 388 2347 550 
+Q 2566 713 2694 1069 
+z
+M 847 1978 
+L 2700 1978 
+Q 2663 2397 2488 2606 
+Q 2219 2931 1791 2931 
+Q 1403 2931 1139 2672 
+Q 875 2413 847 1978 
+z
+" transform="scale(0.015625)"/>
+      </defs>
+      <use xlink:href="#ArialMT-31"/>
+      <use xlink:href="#ArialMT-65" x="55.615234"/>
+      <use xlink:href="#ArialMT-2212" x="111.230469"/>
+      <use xlink:href="#ArialMT-36" x="169.628906"/>
+     </g>
+    </g>
+   </g>
+   <g id="patch_9">
+    <path d="M 943.3405 164.673375 
+L 947.8045 171.477375 
+L 952.2685 164.673375 
+" style="fill: #67001f"/>
+   </g>
+   <g id="patch_10">
+    <path d="M 943.3405 28.593375 
+L 947.8045 21.789375 
+L 952.2685 28.593375 
+" style="fill: #053061"/>
+   </g>
+   <g id="QuadMesh_1">
+    <path d="M 943.3405 164.673375 
+L 952.2685 164.673375 
+L 952.2685 159.003375 
+L 943.3405 159.003375 
+L 943.3405 164.673375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #760521"/>
+    <path d="M 943.3405 159.003375 
+L 952.2685 159.003375 
+L 952.2685 153.333375 
+L 943.3405 153.333375 
+L 943.3405 159.003375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #960f27"/>
+    <path d="M 943.3405 153.333375 
+L 952.2685 153.333375 
+L 952.2685 147.663375 
+L 943.3405 147.663375 
+L 943.3405 153.333375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #b3192c"/>
+    <path d="M 943.3405 147.663375 
+L 952.2685 147.663375 
+L 952.2685 141.993375 
+L 943.3405 141.993375 
+L 943.3405 147.663375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #c2383a"/>
+    <path d="M 943.3405 141.993375 
+L 952.2685 141.993375 
+L 952.2685 136.323375 
+L 943.3405 136.323375 
+L 943.3405 141.993375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #d05548"/>
+    <path d="M 943.3405 136.323375 
+L 952.2685 136.323375 
+L 952.2685 130.653375 
+L 943.3405 130.653375 
+L 943.3405 136.323375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #de735c"/>
+    <path d="M 943.3405 130.653375 
+L 952.2685 130.653375 
+L 952.2685 124.983375 
+L 943.3405 124.983375 
+L 943.3405 130.653375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #eb9172"/>
+    <path d="M 943.3405 124.983375 
+L 952.2685 124.983375 
+L 952.2685 119.313375 
+L 943.3405 119.313375 
+L 943.3405 124.983375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #f5aa89"/>
+    <path d="M 943.3405 119.313375 
+L 952.2685 119.313375 
+L 952.2685 113.643375 
+L 943.3405 113.643375 
+L 943.3405 119.313375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #f9c2a7"/>
+    <path d="M 943.3405 113.643375 
+L 952.2685 113.643375 
+L 952.2685 107.973375 
+L 943.3405 107.973375 
+L 943.3405 113.643375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #fdd9c4"/>
+    <path d="M 943.3405 107.973375 
+L 952.2685 107.973375 
+L 952.2685 102.303375 
+L 943.3405 102.303375 
+L 943.3405 107.973375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #fbe5d8"/>
+    <path d="M 943.3405 102.303375 
+L 952.2685 102.303375 
+L 952.2685 96.633375 
+L 943.3405 96.633375 
+L 943.3405 102.303375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #f8f1ed"/>
+    <path d="M 943.3405 96.633375 
+L 952.2685 96.633375 
+L 952.2685 90.963375 
+L 943.3405 90.963375 
+L 943.3405 96.633375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #eff3f5"/>
+    <path d="M 943.3405 90.963375 
+L 952.2685 90.963375 
+L 952.2685 85.293375 
+L 943.3405 85.293375 
+L 943.3405 90.963375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #e0ecf3"/>
+    <path d="M 943.3405 85.293375 
+L 952.2685 85.293375 
+L 952.2685 79.623375 
+L 943.3405 79.623375 
+L 943.3405 85.293375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #cfe4ef"/>
+    <path d="M 943.3405 79.623375 
+L 952.2685 79.623375 
+L 952.2685 73.953375 
+L 943.3405 73.953375 
+L 943.3405 79.623375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #b3d6e8"/>
+    <path d="M 943.3405 73.953375 
+L 952.2685 73.953375 
+L 952.2685 68.283375 
+L 943.3405 68.283375 
+L 943.3405 73.953375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #98c8e0"/>
+    <path d="M 943.3405 68.283375 
+L 952.2685 68.283375 
+L 952.2685 62.613375 
+L 943.3405 62.613375 
+L 943.3405 68.283375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #7bb6d6"/>
+    <path d="M 943.3405 62.613375 
+L 952.2685 62.613375 
+L 952.2685 56.943375 
+L 943.3405 56.943375 
+L 943.3405 62.613375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #59a1ca"/>
+    <path d="M 943.3405 56.943375 
+L 952.2685 56.943375 
+L 952.2685 51.273375 
+L 943.3405 51.273375 
+L 943.3405 56.943375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #3f8ec0"/>
+    <path d="M 943.3405 51.273375 
+L 952.2685 51.273375 
+L 952.2685 45.603375 
+L 943.3405 45.603375 
+L 943.3405 51.273375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #307ab6"/>
+    <path d="M 943.3405 45.603375 
+L 952.2685 45.603375 
+L 952.2685 39.933375 
+L 943.3405 39.933375 
+L 943.3405 45.603375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #2267ac"/>
+    <path d="M 943.3405 39.933375 
+L 952.2685 39.933375 
+L 952.2685 34.263375 
+L 943.3405 34.263375 
+L 943.3405 39.933375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #15508d"/>
+    <path d="M 943.3405 34.263375 
+L 952.2685 34.263375 
+L 952.2685 28.593375 
+L 943.3405 28.593375 
+L 943.3405 34.263375 
+" clip-path="url(#p0c3c96ba48)" style="fill: #0a3b70"/>
+   </g>
+   <g id="LineCollection_1"/>
+   <g id="patch_11">
+    <path d="M 943.3405 164.673375 
+L 947.8045 171.477375 
+L 952.2685 164.673375 
+L 952.2685 28.593375 
+L 947.8045 21.789375 
+L 943.3405 28.593375 
+L 943.3405 164.673375 
+z
+" style="fill: none"/>
+   </g>
+  </g>
+  <g id="axes_3">
+   <g id="patch_12">
+    <path d="M 943.3405 354.429375 
+L 952.2685 354.429375 
+L 952.2685 204.741375 
+L 943.3405 204.741375 
+z
+" style="fill: #eaeaf2"/>
+   </g>
+   <g id="patch_13">
+    <path clip-path="url(#p059e4eb540)" style="fill: #eaeaf2; stroke: #eaeaf2; stroke-width: 0.01; stroke-linejoin: miter"/>
+   </g>
+   <g id="matplotlib.axis_4">
+    <g id="ytick_18">
+     <g id="line2d_38"/>
+     <g id="text_29">
+      <!-- -66.0 -->
+      <g style="fill: #262626" transform="translate(959.2685 358.008281)scale(0.1 -0.1)">
+       <defs>
+        <path id="ArialMT-2d" d="M 203 1375 
+L 203 1941 
+L 1931 1941 
+L 1931 1375 
+L 203 1375 
+z
+" transform="scale(0.015625)"/>
+       </defs>
+       <use xlink:href="#ArialMT-2d"/>
+       <use xlink:href="#ArialMT-36" x="33.300781"/>
+       <use xlink:href="#ArialMT-36" x="88.916016"/>
+       <use xlink:href="#ArialMT-2e" x="144.53125"/>
+       <use xlink:href="#ArialMT-30" x="172.314453"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_19">
+     <g id="line2d_39"/>
+     <g id="text_30">
+      <!-- -65.0 -->
+      <g style="fill: #262626" transform="translate(959.2685 283.164281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-2d"/>
+       <use xlink:href="#ArialMT-36" x="33.300781"/>
+       <use xlink:href="#ArialMT-35" x="88.916016"/>
+       <use xlink:href="#ArialMT-2e" x="144.53125"/>
+       <use xlink:href="#ArialMT-30" x="172.314453"/>
+      </g>
+     </g>
+    </g>
+    <g id="ytick_20">
+     <g id="line2d_40"/>
+     <g id="text_31">
+      <!-- -64.0 -->
+      <g style="fill: #262626" transform="translate(959.2685 208.320281)scale(0.1 -0.1)">
+       <use xlink:href="#ArialMT-2d"/>
+       <use xlink:href="#ArialMT-36" x="33.300781"/>
+       <use xlink:href="#ArialMT-34" x="88.916016"/>
+       <use xlink:href="#ArialMT-2e" x="144.53125"/>
+       <use xlink:href="#ArialMT-30" x="172.314453"/>
+      </g>
+     </g>
+    </g>
+    <g id="text_32">
+     <!-- $V_m$ (mV) -->
+     <g style="fill: #262626" transform="translate(994.089125 300.705375)rotate(-90)scale(0.11 -0.11)">
+      <use xlink:href="#DejaVuSans-Oblique-56" transform="translate(0 0.09375)"/>
+      <use xlink:href="#DejaVuSans-Oblique-6d" transform="translate(68.408203 -16.3125)scale(0.7)"/>
+      <use xlink:href="#ArialMT-20" transform="translate(139.331055 0.09375)"/>
+      <use xlink:href="#ArialMT-28" transform="translate(167.114258 0.09375)"/>
+      <use xlink:href="#ArialMT-6d" transform="translate(200.415039 0.09375)"/>
+      <use xlink:href="#ArialMT-56" transform="translate(283.71582 0.09375)"/>
+      <use xlink:href="#ArialMT-29" transform="translate(350.415039 0.09375)"/>
+     </g>
+    </g>
+   </g>
+   <image xlink:href="data:image/png;base64,
+iVBORw0KGgoAAAANSUhEUgAAABkAAAGgCAYAAABfW8xqAAACW0lEQVR4nO2d223EQAwD9+HSUkL6LyWXFo4fIozBsAFCpERpjSC3f/bvZw3jTBOstdaz9jzPs88eJ1GuCBy5SpUUPHnWphi/T2FOOHKtglytiW/MCSYgtwEZkXAmvjMnmO7S+LeRcGIFZTxm4t0nAawkJDFWAnQq+XSMH+cAGQ/qLk4lzkkCkPGViW90V+uCbJBg5AIZP18IynijPiH5FLoLJFdjGA3ICJ3NCJIL1MIFEtBm7Mg1T8L5ZKvxEThygU4iklwFEpJcBmRAAgpI0BO7QOLERyQkueZJDMgIHLk4LaxcGYmfohJwJh4kF6cSjU+gXBHcjO8j0fgIpZNonoMkl3OSAGS8ciXgVKLx7yMxICM4JxFALazxCTjGG5AR3IwRND4jUa6QZP6bhHMSwYCMoPHvI2nJNZ9dnO7ikHhIRADteAMygRdkBJDxpT9f0Pjv0frPlgUSjX8dSUmupfEByXZOArQCsvBmJMlVIOHsE87EV4znyEWa+EJAFtRCyYWZk0asdCo5Gh+gNSfjHKDuAhl/MA9TWzgi4QSkciUABWQjuzQ+AqcS5QpJMIeExr+OhCMXaDOC5Np/DRKMXEZ9RjLfXR25ri0ckWCMr8zJBcWKxgckpFjR+IDkKldCcjmxgon6hiegfeKOj0iUKyJxnyRoTXzDeExAuhkjEs7B3XgEoQKSUkkpICmxQpp4T6Lv0flkyzkkQE8HL8gAJOM9iQJUjEc9TK0kICn8VipIrtZmLJBckPGFH7drlNJ6n1B+heo0jG90F0cuTgs/p1AMx/jnbo5ckEr+AdAcjkKw/muNAAAAAElFTkSuQmCC" id="image31b14dad95" transform="scale(1 -1)translate(0 -149.76)" x="943.2" y="-204.48" width="9" height="149.76"/>
+   <g id="LineCollection_2"/>
+   <g id="patch_14">
+    <path d="M 943.3405 354.429375 
+L 947.8045 354.429375 
+L 952.2685 354.429375 
+L 952.2685 204.741375 
+L 947.8045 204.741375 
+L 943.3405 204.741375 
+L 943.3405 354.429375 
+z
+" style="fill: none"/>
+   </g>
+  </g>
+ </g>
+ <defs>
+  <clipPath id="p868edd328b">
+   <rect x="41.6125" y="21.789375" width="892.8" height="332.64"/>
+  </clipPath>
+  <clipPath id="p0c3c96ba48">
+   <rect x="943.3405" y="28.593375" width="8.928" height="136.08"/>
+  </clipPath>
+  <clipPath id="p059e4eb540">
+   <rect x="943.3405" y="204.741375" width="8.928" height="149.688"/>
+  </clipPath>
+ </defs>
+</svg>
diff --git a/python/example/single_cell_extracellular_potentials.py b/python/example/single_cell_extracellular_potentials.py
index adf94ed3c8baa101ae4ad1198c1d3dbf66773c5e..318d7b117dd2f9f95d5dd9a148cf6da7675f1ce5 100644
--- a/python/example/single_cell_extracellular_potentials.py
+++ b/python/example/single_cell_extracellular_potentials.py
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-# coding: utf-8
 
 # Example utilizing the **`LFPykit`** module (https://lfpykit.readthedocs.io,
 # https://github.com/LFPy/LFPykit) for predictions of extracellular
@@ -17,12 +16,10 @@ import numpy as np
 import arbor
 import lfpykit
 import matplotlib.pyplot as plt
-from matplotlib.gridspec import GridSpec
 from matplotlib.collections import PolyCollection
-import pandas as pd
 
 
-class Recipe (arbor.recipe):
+class Recipe(arbor.recipe):
     def __init__(self, cell):
         super().__init__()
 
@@ -65,54 +62,61 @@ if len(sys.argv) < 2:
 
 filename = sys.argv[1]
 
-# define morphology (needed for arbor.place_pwlin)
+# define morphology (needed for ``arbor.place_pwlin`` and ``arbor.cable_cell`` below)
 morphology = arbor.load_swc_arbor(filename)
 
-# number of CVs per branch
-nseg = 3
-
-# Label dictionary
-defs = {}
-labels = arbor.label_dict(defs)
-
-# decor
-decor = arbor.decor()
-
-# set initial voltage, temperature, axial resistivity, membrane capacitance
-decor.set_property(
-    Vm=-65,  # Initial membrane voltage [mV]
-    tempK=300,  # Temperature [Kelvin]
-    rL=10000,  # Axial resistivity [Ω cm]
-    cm=0.01,  # Membrane capacitance [F/m**2]
-)
-
-# set passive mechanism all over
-# passive mech w. leak reversal potential (mV)
-pas = arbor.mechanism('pas/e=-65')
-pas.set('g', 0.0001)  # leak conductivity (S/cm2)
-decor.paint('(all)', arbor.density(pas))
-
-# set sinusoid input current at mid point of terminating CV (segment)
-iclamp = arbor.iclamp(5,  # stimulation onset (ms)
-                      1E8,  # stimulation duration (ms)
-                      -0.001,  # stimulation amplitude (nA)
-                      frequency=0.1,  # stimulation frequency (kHz)
-                      phase=0)  # stimulation phase)
-try:
-    # arbor >= 0.5.2 fix
-    decor.place('(location 4 0.16667)', iclamp, '"iclamp"')
-except TypeError:
-    decor.place('(location 4 0.16667)', iclamp)
-
-# number of CVs per branch
-policy = arbor.cv_policy_fixed_per_branch(nseg)
-decor.discretization(policy)
-
-# create cell and set properties
-cell = arbor.cable_cell(morphology, labels, decor)
-
-# create single cell model
-model = arbor.single_cell_model(cell)
+# define a location on morphology for current clamp
+clamp_location = arbor.location(4, 1/6)
+
+
+def make_cable_cell(morphology, clamp_location):
+    # number of CVs per branch
+    cvs_per_branch = 3
+
+    # Label dictionary
+    defs = {}
+    labels = arbor.label_dict(defs)
+
+    # decor
+    decor = arbor.decor()
+
+    # set initial voltage, temperature, axial resistivity, membrane capacitance
+    decor.set_property(
+        Vm=-65,  # Initial membrane voltage (mV)
+        tempK=300,  # Temperature (Kelvin)
+        rL=10000,  # Axial resistivity (Ω cm)
+        cm=0.01,  # Membrane capacitance (F/m**2)
+    )
+
+    # set passive mechanism all over
+    # passive mech w. leak reversal potential (mV)
+    pas = arbor.mechanism('pas/e=-65')
+    pas.set('g', 0.0001)  # leak conductivity (S/cm2)
+    decor.paint('(all)', arbor.density(pas))
+
+    # set number of CVs per branch
+    policy = arbor.cv_policy_fixed_per_branch(cvs_per_branch)
+    decor.discretization(policy)
+
+    # place sinusoid input current
+    iclamp = arbor.iclamp(5,  # stimulation onset (ms)
+                          1E8,  # stimulation duration (ms)
+                          -0.001,  # stimulation amplitude (nA)
+                          frequency=0.1,  # stimulation frequency (kHz)
+                          phase=0)  # stimulation phase)
+    decor.place(str(clamp_location), iclamp, '"iclamp"')
+
+    # create ``arbor.place_pwlin`` object
+    p = arbor.place_pwlin(morphology)
+
+    # create cell and set properties
+    cell = arbor.cable_cell(morphology, labels, decor)
+
+    return p, cell
+
+
+# get place_pwlin and cable_cell objects
+p, cell = make_cable_cell(morphology, clamp_location)
 
 # instantiate recipe with cell
 recipe = Recipe(cell)
@@ -122,8 +126,8 @@ context = arbor.context()
 domains = arbor.partition_load_balance(recipe, context)
 sim = arbor.simulation(recipe, domains, context)
 
-# set up sampling on probes
-schedule = arbor.regular_schedule(0.1)
+# set up sampling on probes with sampling every 1 ms
+schedule = arbor.regular_schedule(1.)
 v_handle = sim.sample(recipe.vprobe_id, schedule, arbor.sampling_policy.exact)
 i_handle = sim.sample(recipe.iprobe_id, schedule, arbor.sampling_policy.exact)
 c_handle = sim.sample(recipe.cprobe_id, schedule, arbor.sampling_policy.exact)
@@ -131,91 +135,156 @@ c_handle = sim.sample(recipe.cprobe_id, schedule, arbor.sampling_policy.exact)
 # run simulation for 500 ms of simulated activity and collect results.
 sim.run(tfinal=500)
 
-# extract time, V_m and I_m for each compartment
+# extract time, V_m, I_m and I_c for each CV
 V_m_samples, V_m_meta = sim.samples(v_handle)[0]
 I_m_samples, I_m_meta = sim.samples(i_handle)[0]
 I_c_samples, I_c_meta = sim.samples(c_handle)[0]
 
-
-# drop recorded V_m values and corresponding meta data of
-# zero-sized CVs (branch-point potentials)
+# drop recorded V_m values and corresponding metadata of
+# zero-sized CVs (branch-point potentials).
+# Here this is done as the V_m values are only used for visualization purposes
 inds = np.array([m.dist != m.prox for m in V_m_meta])
 V_m_samples = V_m_samples[:, np.r_[True, inds]]
 V_m_meta = np.array(V_m_meta)[inds].tolist()
 
-
-# note: the cables comprising the metadata for each probe
-# should be the same, as well as the reported sample times.
+# assert that the remaining cables comprising the metadata for each probe
+# are identical, as well as the reported sample times.
 assert V_m_meta == I_m_meta
 assert (V_m_samples[:, 0] == I_m_samples[:, 0]).all()
 
-# prep recorded data for plotting
+# prep recorded data for plotting and computation of extracellular potentials
 time = V_m_samples[:, 0]
-V_m = V_m_samples[:, 1:].T
-I_m = I_m_samples[:, 1:].T
-I_c = I_c_samples[:, 1:].T
-
+V_m = V_m_samples[:, 1:]
 
-# gather geometry of CVs and assign segments to each CV
-p = arbor.place_pwlin(morphology)
-x, y, z, d = [np.array([], dtype=float).reshape((0, 2))] * 4
-CV_ind = np.array([], dtype=int)  # tracks which CV owns segment
-for i, m in enumerate(I_m_meta):
-    segs = p.segments([m])
-    for j, seg in enumerate(segs):
-        x = np.row_stack([x, [seg.prox.x, seg.dist.x]])
-        y = np.row_stack([y, [seg.prox.y, seg.dist.y]])
-        z = np.row_stack([z, [seg.prox.z, seg.dist.z]])
-        d = np.row_stack([d, [seg.prox.radius * 2, seg.dist.radius * 2]])
-        CV_ind = np.r_[CV_ind, i]
+# Add stimulation current to transmembrane current to mimic sinusoid synapse
+# current embedded in the membrane.
+I_m = I_c_samples[:, 1:] + I_m_samples[:, 1:]  # (nA)
 
 
 ###############################################################################
-# compute extracellular potential using segment information
+# Compute extracellular potentials
 ###############################################################################
-cell_geometry = lfpykit.CellGeometry(
-    x=x,
-    y=y,
-    z=z,
-    d=d
-)
-
-# membrane voltages, transmemrbane current and corresponding times
-cell_geometry.V_m = V_m  # mV
-# nA, sum stimulation and transmembrane current to mimic sinusoid synapse
-cell_geometry.I_m = I_m + I_c
-cell_geometry.time = time  # ms
-
-# locations where extracellular potential is predicted
-dx = 1
-dz = 1
-axis = np.round([x.min() - 10, x.max() + 10, y.min() - 10, y.max() + 10])
-# axis = np.round(axis)
-X, Y = np.meshgrid(np.linspace(axis[0], axis[1], int(np.diff(axis[:2]) // dx) + 1),
-                   np.linspace(axis[2], axis[3], int(np.diff(axis[2:]) // dz) + 1))
-Z = np.zeros_like(X)
 
-# LineSourcePotential object, get mapping for all segments per CV
-lsp = lfpykit.LineSourcePotential(cell=cell_geometry,
-                                  x=X.flatten(),
-                                  y=Y.flatten(),
-                                  z=Z.flatten())
-M_tmp = lsp.get_transformation_matrix()
+# ## Compute extracellular potentials
+# First we define a couple of classes to interface the LFPykit
+# library (https://LFPykit.readthedocs.io, https://github.com/LFPy/LFPykit):
+class ArborCellGeometry(lfpykit.CellGeometry):
+    '''
+    Class inherited from  ``lfpykit.CellGeometry`` for easier forward-model
+    predictions in Arbor that keeps track of arbor.segment information
+    for each CV.
+
+    Parameters
+    ----------
+    p: ``arbor.place_pwlin`` object
+        3-d locations and cables in a morphology (cf. ``arbor.place_pwlin``)
+    cables: ``list``
+        ``list`` of corresponding ``arbor.cable`` objects where transmembrane
+        currents are recorded (cf. ``arbor.cable_probe_total_current_cell``)
+
+    See also
+    --------
+    lfpykit.CellGeometry
+    '''
+
+    def __init__(self, p, cables):
+        x, y, z, d = [np.array([], dtype=float).reshape((0, 2))] * 4
+        CV_ind = np.array([], dtype=int)  # tracks which CV owns segment
+        for i, m in enumerate(cables):
+            segs = p.segments([m])
+            for j, seg in enumerate(segs):
+                x = np.row_stack([x, [seg.prox.x, seg.dist.x]])
+                y = np.row_stack([y, [seg.prox.y, seg.dist.y]])
+                z = np.row_stack([z, [seg.prox.z, seg.dist.z]])
+                d = np.row_stack(
+                    [d, [seg.prox.radius * 2, seg.dist.radius * 2]])
+                CV_ind = np.r_[CV_ind, i]
+
+        super().__init__(x=x, y=y, z=z, d=d)
+        self._CV_ind = CV_ind
+
+
+class ArborLineSourcePotential(lfpykit.LineSourcePotential):
+    '''subclass of ``lfpykit.LineSourcePotential`` modified for
+    instances of ``ArborCellGeometry``.
+    Each CV may consist of several segments , and this implementation
+    accounts for their contributions normalized by surface area, that is,
+    we assume constant transmembrane current density per area across each CV
+    and constant current source density per unit length per segment
+    (inherent in the line-source approximation).
+
+    Parameters
+    ----------
+    cell: object
+        ``ArborCellGeometry`` instance or similar.
+    x: ndarray of floats
+        x-position of measurement sites (µm)
+    y: ndarray of floats
+        y-position of measurement sites (µm)
+    z: ndarray of floats
+        z-position of measurement sites (µm)
+    sigma: float > 0
+        scalar extracellular conductivity (S/m)
+
+    See also
+    --------
+    lfpykit.LineSourcePotential
+    '''
+
+    def __init__(self, **kwargs):
+        super().__init__(**kwargs)
+        self._get_transformation_matrix = super().get_transformation_matrix
+
+    def get_transformation_matrix(self):
+        '''Get linear response matrix
+
+        Returns
+        -------
+        response_matrix: ndarray
+            shape (n_coords, n_CVs) ndarray
+        '''
+        M_tmp = self._get_transformation_matrix()
+        n_CVs = np.unique(self.cell._CV_ind).size
+        M = np.zeros((self.x.size, n_CVs))
+        for i in range(n_CVs):
+            inds = self.cell._CV_ind == i
+            M[:, i] = M_tmp[:, inds] @ (self.cell.area[inds] /
+                                        self.cell.area[inds].sum())
+
+        return M
+
+
+# create ``ArborCellGeometry`` instance
+cell_geometry = ArborCellGeometry(p, I_m_meta)
+
+# define locations where extracellular potential is predicted in vicinity
+# of cell.
+# Axis limits [x-min, x-max, y-min, y-max] (µm)
+axis = np.array([-110, 370, -80, 70])
+dx = 2  # spatial resolution along x-axis (µm)
+dz = 2  # spatial resolution along y-axis (µm)
+X, Y = np.meshgrid(np.linspace(axis[0], axis[1],
+                               int(np.diff(axis[:2]) // dx) + 1),
+                   np.linspace(axis[2], axis[3],
+                               int(np.diff(axis[2:]) // dz) + 1))
+Z = np.zeros_like(X)
 
-# Define response matrix from M with columns weighted by area of each frusta
-M = np.zeros((lsp.x.size, I_m.shape[0]))
-for i in range(I_m.shape[0]):
-    inds = CV_ind == i
-    M[:, i] = M_tmp[:, inds] @ (cell_geometry.area[inds] /
-                                cell_geometry.area[inds].sum())
+# ``ArborLineSourcePotential`` instance, get mapping for all segments per CV
+lsp = ArborLineSourcePotential(cell=cell_geometry,
+                               x=X.flatten(),
+                               y=Y.flatten(),
+                               z=Z.flatten())
+M = lsp.get_transformation_matrix()
 
-# Extracellular potential using segment information at last time step
-# in x,y-plane coordinates
-V_e = M @ cell_geometry.I_m[:, -1]
+# Extracellular potential in x,y-plane (mV)
+V_e = M @ I_m.T
 
 
-# ## Plotting
-# Plot the morphology and extracellular potential prediction
+###############################################################################
+# Plotting
+###############################################################################
+# Plot the morphology and extracellular potential prediction.
+# First we define a couple helper functions:
 def create_polygon(x, y, d):
     """create a outline for each segment defined by 1D arrays `x`, `y`, `d`
     in x,y-plane which can be drawn using `plt.Polygon`
@@ -272,6 +341,60 @@ def create_polygon(x, y, d):
     return list(zip(x, y))
 
 
+def get_cv_polycollection(
+        cell_geometry, V_m, vlims=[-66, -64], cmap='viridis'):
+    '''
+    Parameters
+    ----------
+    cell_geometry: ``ArborCellGeometry`` object
+    V_m: ndarray
+        membrane voltages at some time point
+    vlims: list
+        color limits
+    cmap: str
+        matplotlib colormap name
+
+    Returns
+    -------
+    PolyCollection
+    '''
+    norm = plt.Normalize(vmin=vlims[0], vmax=vlims[1], clip=True)
+    colors = [plt.get_cmap(cmap)(norm(v)) for v in V_m]
+    zips = []
+    for i in range(V_m.size):
+        inds = cell_geometry._CV_ind == i
+        zips.append(create_polygon(cell_geometry.x[inds, ].flatten(),
+                                   cell_geometry.y[inds, ].flatten(),
+                                   cell_geometry.d[inds, ].flatten()))
+    polycol = PolyCollection(zips,
+                             edgecolors=colors,
+                             facecolors=colors,
+                             linewidths=0.)
+    return polycol
+
+
+def get_segment_outlines(cell_geometry):
+    '''
+    Parameters
+    ----------
+    cell_geometry: ``ArborCellGeometry`` object
+    cmap: str
+        matplotlib colormap name
+
+    Returns
+    -------
+    PolyCollection
+    '''
+    zips = []
+    for x_, y_, d_ in zip(cell_geometry.x, cell_geometry.y, cell_geometry.d):
+        zips.append(create_polygon(x_, y_, d_))
+    polycol = PolyCollection(zips,
+                             edgecolors='k',
+                             facecolors='none',
+                             linewidths=0.5)
+    return polycol
+
+
 def colorbar(fig, ax, im,
              width=0.01,
              height=1.0,
@@ -279,7 +402,7 @@ def colorbar(fig, ax, im,
              voffset=0.0,
              orientation='vertical'):
     '''
-    draw matplotlib colorbar without resizing the axes object
+    draw matplotlib colorbar without resizing the parent axes object
     '''
     rect = np.array(ax.get_position().bounds)
     rect = np.array(ax.get_position().bounds)
@@ -289,54 +412,69 @@ def colorbar(fig, ax, im,
     caxrect[2] = rect[2] * width
     caxrect[3] = rect[3] * height
     cax = fig.add_axes(caxrect)
+    cax.grid(False)
     cb = fig.colorbar(im, cax=cax, orientation=orientation)
     return cb
 
 
-fig, ax = plt.subplots(1, 1, figsize=(12, 4))
+# show predictions at the last time point of simulation
+time_index = -1
+
+# use seaborn style
+plt.style.use('seaborn')
+plt.rcParams['image.cmap'] = 'viridis'
 
-# plot pcolormesh plot of V_e
-im_V_e = ax.pcolormesh(X, Y, V_e.reshape(X.shape),
-                       shading='auto', cmap='RdBu',
-                       vmin=-abs(V_e).max() / 2, vmax=abs(V_e).max() / 2,
-                       zorder=0)
+# create figure and axis
+fig, ax = plt.subplots(1, 1, figsize=(16, 6), dpi=100)
+
+# plot contours of V_e
+lim = float(f'{abs(V_e).max() / 3:.1e}')
+levels = np.linspace(-lim, lim, 25)
+im_V_e = ax.contourf(X, Y, V_e[:, time_index].reshape(X.shape),
+                     cmap='RdBu',
+                     levels=levels,
+                     extend='both')
+
+# V_e colorbar:
 cb = colorbar(fig, ax, im_V_e, height=0.45, voffset=0.55)
 cb.set_label('$V_e$ (mV)')
 
-# add outline of each CV
-norm = plt.Normalize(vmin=-66, vmax=-64)
-colors = [plt.cm.viridis(norm(v)) for v in cell_geometry.V_m[:, -1]]
-zips = []
-for i in range(I_m.shape[0]):
-    inds = CV_ind == i
-    zips.append(create_polygon(x[inds, ].flatten(),
-                y[inds, ].flatten(), d[inds, ].flatten()))
-polycol = PolyCollection(zips,
-                         edgecolors='k',
-                         facecolors=colors,
-                         linewidths=0.5,
-                         zorder=2)
+# add outline of each CV with color coding according to membrane voltage
+vlims = [-66., -64.]
+polycol = get_cv_polycollection(cell_geometry, V_m[time_index, :], vlims=vlims)
 im_V_m = ax.add_collection(polycol)
 
+# V_m colorbar
 cb2 = colorbar(fig, ax, im_V_m, height=0.45)
 cb2.set_ticks([0, 0.5, 1])
-cb2.set_ticklabels([-66, -65, -64])
+cb2.set_ticklabels([vlims[0], np.mean(vlims), vlims[1]])
 cb2.set_label(r'$V_m$ (mV)')
 
-ax.set_xlim(X.min(), X.max())
-ax.set_ylim(Y.min(), Y.max())
-ax.set_xlabel(r'$x$ ($\mu$m)')
-ax.set_ylabel(r'$y$ ($\mu$m)')
+# draw segment outlines
+ax.add_collection(get_segment_outlines(cell_geometry))
+
+# add marker denoting clamp location
+point = p.at(clamp_location)
+ax.plot(point.x, point.y, 'ko', ms=10, label='stimulus')
 
+ax.legend()
+
+# axis annotations
+ax.axis(axis)
+ax.set_xlabel(r'$x$ ($\mu$m)', labelpad=0)
+ax.set_ylabel(r'$y$ ($\mu$m)', labelpad=0)
+ax.set_title(f'$V_e$ and $V_m$ at $t$={time[time_index]} ms')
+
+# save file
 fig.savefig('single_cell_extracellular_potentials.svg', bbox_inches='tight')
 
 # ## Notes on output:
-# The spatial discretization is here deliberately coarse with only 3 CVs per branch.
+# The spatial discretization is here deliberately coarse with only 3 CVs
+# per branch.
 # Hence the branch receiving input about 1/6 of the way from its root
-# (from `decor.place('(location 4 0.16667)', iclamp)`) is treated
-# as 3 separate line sources with homogeneous current density per length unit each, even if
-# the diameter and direction varies with position due to the fact
-# that each CV may  be composed of multiple segments.
-#
-# The parameter `nseg = 3` above can be changed above to affect the number
-# of CVs per branch.
+# (from `decor.place('(location 4 0.16667)', iclamp, '"iclamp"')`) is treated
+# as 3 separate line sources with inhomogeneous current density per length
+# unit. This inhomogeneity is due to the fact that the total transmembrane
+# current per CV may distributed across multiple segments with varying surface
+# area. The transmembrane current is assumed to be constant per length unit
+# per segment.