summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md13
-rw-r--r--TODO.md3
-rw-r--r--doc/source/conf.py3
-rw-r--r--doc/source/documentation/excellon.rst42
-rw-r--r--doc/source/documentation/index.rst11
-rw-r--r--doc/source/documentation/render.rst11
-rw-r--r--doc/source/documentation/rs274x.rst37
-rw-r--r--doc/source/index.rst29
-rw-r--r--doc/source/intro.rst19
-rw-r--r--examples/board.html5128
-rw-r--r--examples/board.pngbin339284 -> 0 bytes
-rw-r--r--examples/board.svg5128
-rw-r--r--examples/composite_bottom.pngbin0 -> 146354 bytes
-rw-r--r--examples/composite_bottom.svg2
-rw-r--r--examples/composite_top.pngbin0 -> 292317 bytes
-rw-r--r--examples/composite_top.svg2
-rw-r--r--examples/silk.pngbin134995 -> 0 bytes
-rw-r--r--examples/silk.svg2852
-rw-r--r--examples/top.pngbin216175 -> 0 bytes
-rw-r--r--examples/top.svg2278
-rw-r--r--gerber.md73
-rw-r--r--gerber/cam.py (renamed from gerber/cnc.py)17
-rw-r--r--gerber/common.py4
-rwxr-xr-xgerber/excellon.py170
-rw-r--r--gerber/gerber_statements.py23
-rw-r--r--gerber/render/render.py42
-rw-r--r--gerber/render/svgwrite_backend.py29
-rw-r--r--gerber/rs274x.py (renamed from gerber/gerber.py)56
-rw-r--r--gerber/tests/test_cam.py (renamed from gerber/tests/test_cnc.py)6
-rw-r--r--gerber/tests/test_gerber_statements.py76
30 files changed, 489 insertions, 15565 deletions
diff --git a/README.md b/README.md
index 1821c0a..2695cca 100644
--- a/README.md
+++ b/README.md
@@ -5,8 +5,8 @@ gerber-tools
Tools to handle Gerber and Excellon files in Python.
-Example:
-
+Useage Example:
+---------------
import gerber
from gerber.render import GerberSvgContext
@@ -20,3 +20,12 @@ Example:
# Create SVG image
top_copper.render(ctx)
nc_drill.render(ctx, 'composite.svg')
+
+
+Rendering Examples:
+-------------------
+###Top Composite rendering
+![Composite Top Image](examples/composite_top.png)
+
+###Bottom Composite rendering
+![Composite Bottom Image](examples/composite_bottom.png) \ No newline at end of file
diff --git a/TODO.md b/TODO.md
deleted file mode 100644
index f5aa93b..0000000
--- a/TODO.md
+++ /dev/null
@@ -1,3 +0,0 @@
-* add command line utilities: gerber svg, gerber transform --rotate --scale --translate, gerber merge --blueprint
-
-* AM defined apertures \ No newline at end of file
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 0a3cfc1..a118546 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -30,6 +30,7 @@ sys.path.insert(0, os.path.abspath('../../'))
# ones.
extensions = [
'sphinx.ext.autodoc',
+ 'sphinx.ext.autosummary',
'numpydoc',
]
@@ -85,7 +86,7 @@ exclude_patterns = []
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
-#show_authors = False
+show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
diff --git a/doc/source/documentation/excellon.rst b/doc/source/documentation/excellon.rst
new file mode 100644
index 0000000..7ac3b39
--- /dev/null
+++ b/doc/source/documentation/excellon.rst
@@ -0,0 +1,42 @@
+:mod:`excellon` --- Excellon file handling
+==============================================
+
+.. module:: excellon
+ :synopsis: Functions and classes for handling Excellon files
+.. sectionauthor:: Hamilton Kibbe <ham@hamiltonkib.be>
+
+
+The Excellon format is the most common format for exporting PCB drill
+information. The Excellon format is used to program CNC drilling macines for
+drilling holes in PCBs. As such, excellon files are sometimes refererred to as
+NC-drill files. The Excellon format reference is available
+`here <http://www.excellon.com/manuals/program.htm>`_. The :mod:`excellon`
+submodule implements calsses to read and write excellon files without having
+to know the precise details of the format.
+
+The :mod:`excellon` submodule's :func:`read` function serves as a
+simple interface for parsing excellon files. The :class:`ExcellonFile` class
+stores all the information contained in an Excellon file allowing the file to
+be analyzed, modified, and updated. The :class:`ExcellonParser` class is used
+in the background for parsing RS-274X files.
+
+.. _excellon-contents:
+
+Functions
+---------
+The :mod:`excellon` module defines the following functions:
+
+.. autofunction:: gerber.excellon.read
+
+
+Classes
+-------
+The :mod:`excellon` module defines the following classes:
+
+.. autoclass:: gerber.excellon.ExcellonFile
+ :members:
+
+
+.. autoclass:: gerber.excellon.ExcellonParser
+ :members:
+ \ No newline at end of file
diff --git a/doc/source/documentation/index.rst b/doc/source/documentation/index.rst
new file mode 100644
index 0000000..3d8241a
--- /dev/null
+++ b/doc/source/documentation/index.rst
@@ -0,0 +1,11 @@
+Gerber Tools Reference
+======================
+
+.. toctree::
+ :maxdepth: 2
+
+ Gerber (RS-274X) Files <rs274x>
+ Excellon Files <excellon>
+ Rendering <render>
+
+
diff --git a/doc/source/documentation/render.rst b/doc/source/documentation/render.rst
new file mode 100644
index 0000000..324ef71
--- /dev/null
+++ b/doc/source/documentation/render.rst
@@ -0,0 +1,11 @@
+:mod:`render` --- Gerber file Rendering
+==============================================
+
+.. module:: render
+ :synopsis: Functions and classes for handling Excellon files
+.. sectionauthor:: Hamilton Kibbe <ham@hamiltonkib.be>
+
+Render Module
+-------------
+.. automodule:: gerber.render.render
+ :members:
diff --git a/doc/source/documentation/rs274x.rst b/doc/source/documentation/rs274x.rst
new file mode 100644
index 0000000..bc99519
--- /dev/null
+++ b/doc/source/documentation/rs274x.rst
@@ -0,0 +1,37 @@
+:mod:`rs274x` --- RS-274X file handling
+==============================================
+
+.. module:: rs274x
+ :synopsis: Functions and classes for handling RS-274X files
+.. sectionauthor:: Hamilton Kibbe <ham@hamiltonkib.be>
+
+
+The RS-274X (Gerber) format is the most common format for exporting PCB
+artwork. The Specification is published by Ucamco and is available
+`here <http://www.ucamco.com/files/downloads/file/81/the_gerber_file_format_specification.pdf>`_.
+The :mod:`rs274x` submodule implements calsses to read and write
+RS-274X files without having to know the precise details of the format.
+
+The :mod:`rs274x` submodule's :func:`read` function serves as a
+simple interface for parsing gerber files. The :class:`GerberFile` class
+stores all the information contained in a gerber file allowing the file to be
+analyzed, modified, and updated. The :class:`GerberParser` class is used in
+the background for parsing RS-274X files.
+
+.. _gerber-contents:
+
+Functions
+---------
+The :mod:`rs274x` module defines the following functions:
+
+.. autofunction:: gerber.rs274x.read
+
+Classes
+-------
+The :mod:`rs274x` module defines the following classes:
+
+.. autoclass:: gerber.rs274x.GerberFile
+ :members:
+
+.. autoclass:: gerber.rs274x.GerberParser
+ :members: \ No newline at end of file
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 763d04a..aec8b48 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -3,37 +3,16 @@
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
-Welcome to Gerber Tools's documentation!
+Gerber-Tools!
========================================
Contents:
.. toctree::
- :maxdepth: 2
-
-.. automodule:: gerber
- :members:
-
-.. automodule:: gerber.gerber
- :members:
-
-.. automodule:: gerber.excellon
- :members:
-
-.. automodule:: gerber.render.render
- :members:
-
-.. automodule:: gerber.gerber_statements
- :members:
-
-.. automodule:: gerber.excellon_statements
- :members:
-
-.. automodule:: gerber.cnc
- :members:
+ :maxdepth: 1
-.. automodule:: gerber.utils
- :members:
+ intro
+ documentation/index
Indices and tables
==================
diff --git a/doc/source/intro.rst b/doc/source/intro.rst
new file mode 100644
index 0000000..1982fc8
--- /dev/null
+++ b/doc/source/intro.rst
@@ -0,0 +1,19 @@
+Gerber Tools Intro
+==================
+
+PCB CAM (Gerber) Files
+------------
+
+PCB design files (artwork) are most often stored in `Gerber` files. This is
+a generic term that may refer to `RS-274X (Gerber) <http://en.wikipedia.org/wiki/Gerber_format>`_,
+`ODB++ <http://en.wikipedia.org/wiki/ODB%2B%2B>`_, or `Excellon <http://en.wikipedia.org/wiki/Excellon_format>`_
+files.
+
+
+Gerber-Tools
+------------
+
+The gerber-tools module provides tools for working with and rendering Gerber
+and Excellon files.
+
+
diff --git a/examples/board.html b/examples/board.html
deleted file mode 100644
index 97a3807..0000000
--- a/examples/board.html
+++ /dev/null
@@ -1,5128 +0,0 @@
-<svg width="1280" height="720">
-<line x1="35.67" y1="21.3" x2="35.67" y2="638.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.81" y1="244.59" x2="253.29" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.2" y1="245.49" x2="272.34" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.42" y1="301.65" x2="353.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="354.18" y2="302.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="23.88" x2="182.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.62" y1="26.82" x2="35.67" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="29.79" x2="175.68" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.49" y1="32.73" x2="35.67" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="35.7" x2="172.26" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.03" y1="38.64" x2="35.67" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="41.61" x2="170.37" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.37" y1="44.55" x2="35.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="47.52" x2="170.37" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.67" y1="50.46" x2="166.29" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.56" y1="50.73" x2="167.16" y2="51.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="53.43" x2="171.9" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.1" y1="56.37" x2="167.46" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="59.34" x2="174.78" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.72" y1="62.28" x2="167.46" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="65.25" x2="180.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.65" y1="68.19" x2="147.93" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="65.25" x2="144.93" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="66.18" x2="144.93" y2="48.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="68.19" x2="75.87" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="69.18" x2="95.43" y2="69.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="71.16" x2="72.87" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="69.18" x2="72.87" y2="86.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="68.19" x2="35.67" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="65.25" x2="53.34" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="62.28" x2="35.67" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="59.34" x2="53.34" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="56.37" x2="35.67" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="53.43" x2="53.34" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="54.51" y1="50.46" x2="35.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="71.16" x2="53.34" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="74.1" x2="35.67" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="77.07" x2="53.34" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="80.01" x2="35.67" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="82.98" x2="53.49" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.89" y1="85.92" x2="35.67" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="88.89" x2="181.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="91.83" x2="35.67" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="94.8" x2="181.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="97.74" x2="35.67" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="100.71" x2="181.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="103.65" x2="54.39" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="52.59" y1="102.9" x2="56.67" y2="104.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="481.44" x2="146.97" y2="481.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="484.86" x2="63.24" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="66.18" y1="487.8" x2="126.63" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="475.98" x2="97.29" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.96" y1="476.34" x2="92.04" y2="478.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="100.26" y1="473.04" x2="126.36" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.7" y1="470.07" x2="101.76" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="467.13" x2="202.77" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="470.07" x2="168.18" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.88" y1="469.89" x2="168.9" y2="470.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.52" y1="473.04" x2="202.77" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="475.98" x2="170.64" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="481.89" x2="202.77" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="478.95" x2="149.88" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="478.95" x2="60.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="481.89" x2="78.48" y2="500.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="46.35" y1="103.65" x2="35.67" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="106.62" x2="42.09" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.2" y1="109.56" x2="35.67" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="112.53" x2="39.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="39.27" y1="115.47" x2="35.67" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="118.44" x2="40.2" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="121.38" x2="35.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="124.35" x2="40.47" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="127.29" x2="35.67" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="130.26" x2="40.47" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="133.2" x2="35.67" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="136.17" x2="40.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="139.11" x2="35.67" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="142.08" x2="40.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="145.02" x2="35.67" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="147.99" x2="40.47" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="150.93" x2="35.67" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="153.9" x2="40.47" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="156.84" x2="35.67" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="159.81" x2="40.47" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="162.75" x2="35.67" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="165.72" x2="40.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="168.66" x2="35.67" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="171.63" x2="40.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="174.57" x2="35.67" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="177.54" x2="40.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="180.48" x2="35.67" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="183.45" x2="40.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="186.39" x2="35.67" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="189.36" x2="40.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="192.3" x2="35.67" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="195.27" x2="40.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="198.21" x2="35.67" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="201.18" x2="40.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="204.12" x2="35.67" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="207.09" x2="40.47" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="210.03" x2="35.67" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="213.0" x2="40.47" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="215.94" x2="35.67" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="218.91" x2="40.47" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="221.85" x2="35.67" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="224.82" x2="40.47" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="227.76" x2="35.67" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="230.73" x2="40.47" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="233.67" x2="35.67" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="236.64" x2="40.47" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="239.58" x2="35.67" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="242.55" x2="40.47" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="245.49" x2="35.67" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="248.46" x2="40.47" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="251.4" x2="35.67" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="254.37" x2="40.47" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="257.31" x2="35.67" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="260.28" x2="40.47" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="263.22" x2="35.67" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="266.19" x2="40.47" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="269.13" x2="35.67" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="272.1" x2="40.47" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="275.04" x2="35.67" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="278.01" x2="40.47" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="280.95" x2="35.67" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="283.92" x2="40.47" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="286.86" x2="35.67" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="289.83" x2="40.47" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="292.77" x2="35.67" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="295.74" x2="40.47" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="298.68" x2="35.67" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="301.65" x2="40.47" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="304.59" x2="35.67" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="307.56" x2="40.47" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="310.5" x2="35.67" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="313.47" x2="40.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="316.41" x2="35.67" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="319.38" x2="40.47" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="322.32" x2="35.67" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="325.29" x2="40.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="328.23" x2="35.67" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="331.2" x2="40.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="334.14" x2="35.67" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="337.11" x2="40.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="340.05" x2="35.67" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="343.02" x2="40.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="345.96" x2="35.67" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="348.93" x2="40.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="351.87" x2="35.67" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="354.84" x2="40.47" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="357.78" x2="35.67" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="360.75" x2="40.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="363.69" x2="35.67" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="366.66" x2="40.47" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="369.6" x2="35.67" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="372.57" x2="40.47" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="375.51" x2="35.67" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="378.48" x2="40.47" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="381.42" x2="35.67" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="384.39" x2="40.47" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="387.33" x2="35.67" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="390.3" x2="40.47" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="393.24" x2="35.67" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="396.21" x2="40.47" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="399.15" x2="35.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="402.12" x2="40.47" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="405.06" x2="35.67" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="408.03" x2="40.47" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="410.97" x2="35.67" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="413.94" x2="40.47" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="416.88" x2="35.67" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="419.85" x2="40.47" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="422.79" x2="35.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="425.76" x2="40.47" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="428.7" x2="35.67" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="431.67" x2="40.47" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="434.61" x2="35.67" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="437.58" x2="40.47" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="440.52" x2="35.67" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="443.49" x2="40.47" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="446.43" x2="35.67" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="449.4" x2="40.47" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="452.34" x2="35.67" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="455.31" x2="40.47" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="458.25" x2="35.67" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="461.22" x2="40.47" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="464.16" x2="35.67" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="467.13" x2="40.47" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="470.07" x2="35.67" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="473.04" x2="40.47" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="475.98" x2="35.67" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="478.95" x2="40.47" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="481.89" x2="35.67" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="484.86" x2="40.47" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="487.8" x2="35.67" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="490.77" x2="41.64" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="44.1" y1="493.71" x2="35.67" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="496.68" x2="47.04" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.01" y1="499.62" x2="35.67" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="502.59" x2="52.95" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.92" y1="505.53" x2="35.67" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="508.5" x2="58.86" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.83" y1="511.44" x2="35.67" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="514.41" x2="64.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.74" y1="517.35" x2="35.67" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="520.32" x2="127.92" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.43" y1="529.17" x2="35.67" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="526.23" x2="202.77" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="529.17" x2="168.45" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="532.14" x2="202.77" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="535.08" x2="171.24" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="538.05" x2="202.77" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="540.99" x2="171.24" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="543.96" x2="202.77" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="546.9" x2="171.24" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="549.87" x2="202.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="552.81" x2="121.89" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="555.78" x2="202.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.76" y1="558.72" x2="119.97" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="561.69" x2="125.91" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="564.63" x2="119.97" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="567.6" x2="125.61" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="570.54" x2="119.97" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="121.71" y1="573.51" x2="125.61" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="576.45" x2="124.68" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.87" y1="585.0" x2="228.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="389.07" x2="475.83" y2="389.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.94" y1="561.69" x2="206.73" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="209.37" y2="450.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="447.45" x2="221.25" y2="447.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="449.4" x2="219.33" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.36" y1="452.34" x2="222.87" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.2" y1="455.31" x2="215.97" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="458.25" x2="335.79" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.87" y1="466.5" x2="317.37" y2="466.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.87" y1="519.15" x2="276.87" y2="487.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.49" y1="461.22" x2="281.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.68" y1="464.16" x2="285.09" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.87" y1="469.5" x2="255.87" y2="469.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.87" y1="519.15" x2="261.87" y2="489.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="487.8" x2="215.97" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="484.86" x2="240.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="481.89" x2="215.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="478.95" x2="240.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="475.98" x2="215.97" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="473.04" x2="243.03" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.97" y1="470.07" x2="215.97" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="467.13" x2="248.94" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.88" y1="464.16" x2="215.97" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="461.22" x2="266.49" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="440.85" x2="246.87" y2="430.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.43" y1="401.34" x2="296.43" y2="414.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="519.33" x2="336.69" y2="486.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="351.15" x2="250.02" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.49" y1="325.29" x2="246.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="328.23" x2="245.43" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="322.32" x2="241.05" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="319.38" x2="206.94" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="322.32" x2="208.74" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.08" y1="325.29" x2="206.94" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.19" y1="331.5" x2="188.37" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="163.92" y1="328.23" x2="60.27" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="325.29" x2="161.31" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="322.32" x2="60.27" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="319.38" x2="161.31" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="316.41" x2="60.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="313.47" x2="161.31" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.58" y1="310.5" x2="60.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="307.56" x2="216.57" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="304.59" x2="60.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="301.65" x2="216.21" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="298.68" x2="60.27" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="295.74" x2="162.24" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.21" y1="295.71" x2="161.91" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="292.77" x2="60.27" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="289.83" x2="182.97" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="289.83" x2="216.36" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="292.77" x2="206.34" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.04" y1="295.74" x2="216.21" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.34" y1="286.86" x2="246.27" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="283.92" x2="206.34" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="205.65" y1="280.95" x2="217.14" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="278.01" x2="60.27" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="280.95" x2="162.6" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="283.92" x2="60.27" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="286.86" x2="161.91" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="286.86" x2="185.28" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="283.92" x2="182.97" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="280.95" x2="185.28" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="292.77" x2="182.97" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="295.74" x2="185.28" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.67" y1="310.5" x2="246.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="313.47" x2="206.94" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="316.41" x2="246.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.87" y1="315.0" x2="258.87" y2="298.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="286.86" x2="316.62" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="284.85" x2="327.87" y2="284.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="280.95" x2="291.63" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="278.01" x2="316.62" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="275.04" x2="292.56" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="272.1" x2="316.62" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="269.13" x2="292.56" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="266.19" x2="316.62" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.31" y1="263.22" x2="292.56" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.01" y1="260.28" x2="373.08" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="257.31" x2="285.69" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.69" y1="254.37" x2="373.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="254.43" x2="373.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="242.55" x2="377.79" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.98" y1="245.19" x2="381.15" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="251.4" x2="285.69" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="248.46" x2="317.97" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="245.49" x2="282.93" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="245.49" x2="276.48" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="248.46" x2="277.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="251.4" x2="276.48" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="254.37" x2="277.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.69" y1="255.0" x2="258.87" y2="257.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="283.92" x2="327.87" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="286.86" x2="330.87" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="283.92" x2="375.15" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.18" y1="286.86" x2="342.15" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="289.83" x2="369.24" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.27" y1="292.77" x2="342.15" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="295.74" x2="363.33" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="353.31" y2="300.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="301.65" x2="344.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.94" y1="304.59" x2="343.8" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="307.56" x2="324.39" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="310.5" x2="334.56" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.01" y1="313.47" x2="326.64" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="316.41" x2="333.99" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="319.38" x2="326.64" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="322.32" x2="333.96" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="325.29" x2="326.64" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.95" y1="328.23" x2="333.96" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.24" y1="331.2" x2="259.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="259.47" y1="328.23" x2="272.82" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.1" y1="325.29" x2="259.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="258.87" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="278.7" y2="318.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="268.32" y1="334.14" x2="330.45" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="337.11" x2="269.88" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="339.33" x2="253.2" y2="339.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="272.1" x2="149.76" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.41" y1="273.42" x2="139.29" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.51" y1="275.04" x2="216.21" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="269.13" x2="152.7" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.49" y1="266.19" x2="216.21" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="263.22" x2="156.72" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.92" y1="260.28" x2="218.76" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="257.31" x2="159.12" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="254.37" x2="223.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="254.43" x2="223.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="248.46" x2="223.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="251.4" x2="159.12" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.05" y1="242.55" x2="316.02" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="239.58" x2="155.85" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="153.57" y1="236.64" x2="202.23" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.35" y1="233.67" x2="150.6" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.58" y1="230.73" x2="184.41" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.44" y1="227.76" x2="139.44" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.3" y1="227.76" x2="60.27" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="224.82" x2="178.5" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.53" y1="221.85" x2="60.27" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="230.73" x2="122.19" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="118.17" y1="233.67" x2="60.27" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="236.64" x2="115.2" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.92" y1="239.58" x2="60.27" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="242.55" x2="111.69" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.46" y1="245.49" x2="60.27" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="248.46" x2="109.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="251.4" x2="60.27" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="254.37" x2="109.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="257.31" x2="60.27" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="260.28" x2="110.82" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.05" y1="263.22" x2="60.27" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="266.19" x2="113.28" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.07" y1="269.13" x2="60.27" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="272.1" x2="119.01" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.23" y1="275.04" x2="60.27" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.73" y1="218.91" x2="125.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="218.61" x2="124.8" y2="186.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="215.94" x2="96.03" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="213.0" x2="124.8" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="210.03" x2="96.03" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="207.09" x2="124.8" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="204.12" x2="96.03" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="201.18" x2="124.8" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="198.21" x2="96.03" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="195.27" x2="124.8" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="192.3" x2="96.03" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="189.36" x2="124.8" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="186.39" x2="96.03" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="93.42" y1="183.45" x2="127.38" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.28" y1="174.57" x2="168.27" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="171.63" x2="158.46" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.43" y1="168.66" x2="167.34" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="177.54" x2="92.55" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.61" y1="180.48" x2="168.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="183.45" x2="165.45" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="186.39" x2="168.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="189.36" x2="168.27" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="192.3" x2="168.27" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="195.27" x2="168.27" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="198.21" x2="168.27" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="201.18" x2="168.27" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="204.12" x2="168.27" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="207.09" x2="168.27" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="210.03" x2="168.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="213.0" x2="168.6" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="215.94" x2="169.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.79" y1="218.91" x2="172.59" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.15" y1="207.09" x2="253.68" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="210.03" x2="195.12" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.06" y1="213.0" x2="202.62" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="204.12" x2="253.68" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="201.18" x2="190.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="198.21" x2="252.39" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="195.27" x2="190.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="192.3" x2="247.35" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="189.36" x2="190.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="186.39" x2="246.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="183.45" x2="238.65" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="180.48" x2="239.76" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="177.54" x2="238.65" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.93" x2="230.58" y2="174.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.57" x2="239.76" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="171.63" x2="238.65" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="168.66" x2="239.76" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="165.72" x2="238.65" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.39" y1="165.72" x2="190.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="168.66" x2="230.82" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="171.63" x2="190.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="174.57" x2="230.58" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="177.54" x2="190.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="180.48" x2="230.58" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.39" y1="183.45" x2="190.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="162.75" x2="250.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.35" y1="159.81" x2="189.24" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.93" y1="156.84" x2="250.47" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.71" y1="153.9" x2="183.96" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.02" y1="150.93" x2="204.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.0" y1="147.99" x2="180.57" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.85" y1="145.02" x2="194.01" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.04" y1="142.08" x2="178.62" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.4" y1="139.11" x2="188.1" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.13" y1="136.17" x2="173.28" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.74" y1="133.2" x2="182.64" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="130.26" x2="176.19" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.17" y1="127.29" x2="181.47" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="124.35" x2="179.37" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="121.38" x2="165.87" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="118.44" x2="162.87" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="121.38" x2="138.93" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="138.06" y1="120.51" x2="142.89" y2="125.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="141.9" y1="124.35" x2="149.4" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.6" y1="127.29" x2="143.7" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="130.26" x2="152.55" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.0" y1="133.2" x2="145.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="145.47" y1="136.17" x2="155.46" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="152.37" y1="139.11" x2="145.2" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="143.97" y1="142.08" x2="150.12" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.92" y1="145.02" x2="142.53" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="139.59" y1="147.99" x2="148.17" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.75" y1="150.93" x2="134.61" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.81" y1="153.9" x2="60.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="156.84" x2="81.84" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.9" y1="159.81" x2="60.27" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="162.75" x2="75.93" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.99" y1="165.72" x2="60.27" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="168.66" x2="70.02" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.08" y1="171.63" x2="60.27" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="174.57" x2="64.62" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.39" y1="177.54" x2="60.27" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="180.48" x2="63.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="150.93" x2="68.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.18" y1="147.99" x2="60.27" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.61" y1="150.93" x2="122.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.18" y1="147.99" x2="85.59" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="88.53" y1="145.02" x2="114.21" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.8" y1="142.08" x2="89.97" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.2" y1="139.11" x2="111.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.27" y1="136.17" x2="91.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.47" y1="133.2" x2="111.27" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.84" y1="130.26" x2="90.93" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.7" y1="127.29" x2="113.07" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="114.87" y1="124.35" x2="87.9" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="84.93" y1="121.38" x2="117.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.72" y1="118.44" x2="79.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.72" y1="118.44" x2="60.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="121.38" x2="63.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.87" y1="124.35" x2="60.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.47" y1="115.47" x2="149.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.83" y1="118.44" x2="133.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.69" y1="112.53" x2="61.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.57" y1="109.56" x2="152.76" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.3" y1="106.62" x2="58.68" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="85.92" x2="75.87" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="82.98" x2="72.87" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="80.01" x2="75.87" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="77.07" x2="72.87" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="74.1" x2="75.87" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="65.25" x2="72.87" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="62.28" x2="75.87" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="59.34" x2="72.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="56.37" x2="75.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="53.43" x2="72.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="50.46" x2="75.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="94.23" y1="50.46" x2="126.57" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="53.43" x2="95.43" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="56.37" x2="125.4" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="59.34" x2="95.43" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="62.28" x2="125.4" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="65.25" x2="95.43" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="71.16" x2="125.4" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="74.1" x2="95.43" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="77.07" x2="125.4" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="80.01" x2="95.43" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.28" y1="82.98" x2="125.52" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.95" y1="85.92" x2="92.88" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="85.92" x2="147.93" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="82.98" x2="144.93" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="80.01" x2="147.93" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="77.07" x2="144.93" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="74.1" x2="147.93" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="71.16" x2="144.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="62.28" x2="147.93" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="59.34" x2="144.93" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="56.37" x2="147.93" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="53.43" x2="144.93" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="50.46" x2="147.93" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="71.16" x2="195.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.99" y1="74.1" x2="167.46" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="77.07" x2="190.02" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.08" y1="80.01" x2="167.46" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.31" y1="82.98" x2="184.11" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.22" y1="85.92" x2="164.91" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="106.62" x2="162.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="109.56" x2="165.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="112.53" x2="162.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="115.47" x2="165.87" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.44" y1="106.62" x2="181.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="109.56" x2="176.01" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.08" y1="112.53" x2="181.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="115.47" x2="179.31" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.91" y1="118.44" x2="181.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="118.44" x2="237.66" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.42" y1="118.65" x2="238.26" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="130.26" x2="236.52" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="131.16" x2="245.76" y2="131.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="121.38" x2="201.27" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.33" y1="124.35" x2="236.52" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="123.48" x2="245.76" y2="123.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.85" y1="127.29" x2="236.52" y2="126.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="124.35" x2="245.76" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="127.29" x2="245.76" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="130.26" x2="245.76" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="121.38" x2="245.76" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="118.44" x2="245.76" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="115.47" x2="201.27" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="112.53" x2="205.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="204.84" y1="112.38" x2="203.82" y2="111.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.29" y1="109.56" x2="201.27" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="106.62" x2="202.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="103.65" x2="201.27" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="100.71" x2="216.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="103.65" x2="219.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="102.6" x2="219.87" y2="112.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="100.71" x2="258.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="103.65" x2="257.85" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="106.62" x2="257.85" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="109.56" x2="257.85" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="109.56" x2="234.48" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="106.62" x2="251.31" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="103.65" x2="234.69" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="97.74" x2="253.26" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="94.8" x2="234.69" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.12" y1="91.83" x2="252.48" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="88.89" x2="206.22" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.16" y1="85.92" x2="252.48" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="82.98" x2="212.13" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.07" y1="80.01" x2="252.48" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="77.07" x2="218.04" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="220.98" y1="74.1" x2="229.62" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.44" y1="71.16" x2="223.95" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.89" y1="68.19" x2="229.44" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="68.19" x2="286.14" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="65.25" x2="252.63" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="62.28" x2="286.14" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="59.34" x2="252.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="56.37" x2="286.14" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="53.43" x2="252.63" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="50.46" x2="286.14" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="47.52" x2="252.63" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.1" y1="44.55" x2="287.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.97" y1="41.61" x2="301.17" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="50.46" x2="310.05" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="53.43" x2="312.99" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.96" y1="56.37" x2="309.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="59.34" x2="318.9" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.87" y1="62.28" x2="309.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="65.25" x2="323.25" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.25" y1="68.19" x2="309.33" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="71.16" x2="323.25" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="74.1" x2="309.15" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="77.07" x2="283.62" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="80.01" x2="324.12" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="82.98" x2="286.29" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="85.92" x2="328.35" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="88.89" x2="286.29" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="91.83" x2="301.62" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="94.8" x2="286.29" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="97.74" x2="301.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="102.6" x2="315.87" y2="102.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="103.65" x2="286.32" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.56" y1="103.89" x2="287.16" y2="104.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="106.62" x2="301.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.29" y1="109.56" x2="287.46" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="112.53" x2="304.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.11" y1="118.44" x2="328.35" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="121.38" x2="302.22" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.22" y1="124.35" x2="328.35" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="115.47" x2="287.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="118.44" x2="293.01" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="121.38" x2="293.01" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.82" y1="127.29" x2="302.88" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="112.53" x2="318.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="109.56" x2="315.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="106.62" x2="318.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="103.65" x2="315.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="100.71" x2="280.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="103.65" x2="280.89" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="106.62" x2="280.89" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="109.56" x2="280.89" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="108.84" x2="269.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="111.39" x2="273.21" y2="108.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="112.53" x2="231.42" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="112.53" x2="216.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="109.56" x2="219.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="106.62" x2="216.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="97.74" x2="219.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="94.8" x2="216.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="91.83" x2="219.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="94.8" x2="201.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="97.74" x2="202.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="74.1" x2="286.32" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="71.16" x2="252.63" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.8" y1="41.61" x2="236.7" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.55" y1="21.3" x2="285.0" y2="21.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.46" y1="23.88" x2="1157.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.62" y1="26.82" x2="314.4" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.37" y1="29.79" x2="413.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.75" y1="32.73" x2="392.34" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.36" y1="35.7" x2="405.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.49" y1="38.64" x2="398.13" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.97" y1="41.61" x2="403.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.17" y1="44.55" x2="398.97" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.98" y1="47.52" x2="403.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.1" y1="50.46" x2="396.03" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.5" y1="53.43" x2="405.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.85" y1="56.37" x2="383.73" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="59.34" x2="389.94" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.94" y1="62.28" x2="388.8" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="65.25" x2="389.94" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.99" y1="59.34" x2="411.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="62.28" x2="399.12" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="65.25" x2="412.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="68.19" x2="399.18" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="71.16" x2="412.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="74.1" x2="398.37" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="77.07" x2="412.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.05" y1="80.01" x2="399.78" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="82.98" x2="418.02" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.64" y1="81.6" x2="416.64" y2="81.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.96" y1="85.92" x2="399.78" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="88.89" x2="423.27" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="91.83" x2="396.9" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.53" y1="94.8" x2="423.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="97.74" x2="391.56" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.8" y1="97.5" x2="391.8" y2="97.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.62" y1="100.71" x2="423.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="103.65" x2="404.28" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="106.62" x2="423.27" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="109.56" x2="404.97" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="112.53" x2="423.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="115.47" x2="404.97" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="118.44" x2="423.27" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="121.38" x2="404.97" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="119.4" x2="404.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="124.35" x2="423.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="127.29" x2="404.97" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="130.26" x2="423.27" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="133.2" x2="404.85" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.54" y1="136.17" x2="423.27" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="139.11" x2="402.81" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.78" y1="142.08" x2="423.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.56" y1="145.02" x2="408.72" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.9" y1="147.99" x2="427.53" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.19" y1="150.93" x2="421.02" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.4" y1="153.9" x2="425.01" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.57" y1="156.84" x2="422.97" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.97" y1="159.27" x2="422.97" y2="159.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.07" y1="164.7" x2="411.87" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.87" y1="119.1" x2="381.87" y2="98.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="103.65" x2="397.17" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="106.62" x2="396.57" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="109.56" x2="397.17" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="112.53" x2="396.57" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="115.47" x2="397.17" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="118.44" x2="396.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="121.38" x2="397.17" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="124.35" x2="396.57" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="127.29" x2="397.17" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="130.26" x2="396.57" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="133.2" x2="397.17" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="136.17" x2="396.57" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.23" y1="136.17" x2="388.68" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.64" y1="150.6" x2="372.24" y2="150.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.21" y1="163.65" x2="402.51" y2="163.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.97" y1="150.93" x2="345.75" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="147.99" x2="369.63" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.66" y1="145.02" x2="345.75" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="142.08" x2="363.72" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.75" y1="139.11" x2="345.75" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="358.68" y1="136.17" x2="360.06" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="153.9" x2="398.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.77" y1="156.84" x2="345.75" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="159.81" x2="400.83" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="402.21" y2="163.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="397.17" y2="163.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="165.72" x2="382.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="168.66" x2="381.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="171.63" x2="382.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="174.57" x2="381.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="177.54" x2="382.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="180.48" x2="381.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="183.45" x2="382.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="186.39" x2="381.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="189.36" x2="382.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="192.3" x2="381.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="195.27" x2="382.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="198.21" x2="381.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.8" y1="198.21" x2="373.44" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.79" y1="204.12" x2="419.76" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.82" y1="201.18" x2="360.57" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="201.18" x2="275.88" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="204.12" x2="318.72" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="207.09" x2="275.88" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="210.03" x2="316.02" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="213.0" x2="276.15" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="198.21" x2="343.17" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="195.27" x2="275.88" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.7" y1="192.3" x2="343.17" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.73" y1="189.36" x2="327.87" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="189.36" x2="321.15" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="186.39" x2="322.26" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="183.45" x2="321.15" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="180.48" x2="294.69" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.66" y1="177.54" x2="313.08" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="179.43" x2="313.08" y2="174.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="183.45" x2="290.97" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.93" y1="177.24" x2="297.93" y2="177.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.48" y1="174.57" x2="313.08" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.28" y1="171.63" x2="301.71" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="168.66" x2="328.35" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="165.72" x2="322.05" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.44" y1="162.75" x2="328.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="159.81" x2="326.91" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.57" y1="156.84" x2="328.35" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="153.9" x2="327.57" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="171.63" x2="321.15" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="174.57" x2="322.26" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="177.54" x2="321.15" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.2" y1="186.39" x2="271.98" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.5" y1="189.36" x2="315.54" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.05" y1="204.12" x2="343.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="207.09" x2="343.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="210.03" x2="344.34" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="213.0" x2="347.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="350.01" y1="215.94" x2="342.75" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="218.91" x2="352.98" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.73" y1="221.85" x2="342.75" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="224.82" x2="377.43" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.43" y1="227.76" x2="342.75" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="230.73" x2="376.98" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="233.67" x2="342.75" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="236.64" x2="376.83" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="239.58" x2="342.75" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.77" y1="248.46" x2="373.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.84" y1="245.49" x2="376.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="245.49" x2="382.26" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="248.46" x2="381.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="251.4" x2="382.26" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="254.37" x2="381.15" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="257.31" x2="382.26" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="260.28" x2="381.15" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="263.22" x2="382.26" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.1" y1="263.22" x2="341.46" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="266.19" x2="392.88" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.91" y1="269.13" x2="342.15" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="272.1" x2="386.97" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.0" y1="275.04" x2="342.15" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="278.01" x2="381.06" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.09" y1="280.95" x2="342.15" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="280.95" x2="327.87" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="278.01" x2="330.87" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="275.04" x2="327.87" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="272.1" x2="330.87" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="269.13" x2="327.87" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="266.19" x2="330.87" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="263.22" x2="327.87" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="289.83" x2="330.87" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="292.77" x2="327.87" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="295.74" x2="330.87" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="298.68" x2="327.87" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="301.65" x2="330.87" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="304.59" x2="327.87" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.27" y1="304.59" x2="292.56" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="301.65" x2="316.62" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="298.68" x2="292.56" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="295.74" x2="316.62" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="292.77" x2="292.56" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.38" y1="289.83" x2="316.62" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.18" y1="304.59" x2="354.45" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="310.5" x2="419.37" y2="249.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="168.66" x2="404.97" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="171.63" x2="412.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="174.57" x2="404.97" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="177.54" x2="412.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="180.48" x2="404.97" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="181.2" x2="404.97" y2="194.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="183.45" x2="412.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="186.39" x2="404.97" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="189.36" x2="412.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="192.3" x2="404.97" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.79" y1="195.27" x2="412.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.85" y1="198.21" x2="401.97" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="198.21" x2="396.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="195.27" x2="397.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="192.3" x2="396.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="189.36" x2="397.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="186.39" x2="396.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="183.45" x2="397.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="180.48" x2="396.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="177.54" x2="397.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="174.57" x2="396.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="171.63" x2="397.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="168.66" x2="396.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="165.72" x2="397.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.17" y1="162.75" x2="359.37" y2="164.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.17" y1="162.75" x2="345.75" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="310.92" y1="165.72" x2="301.71" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="162.75" x2="307.53" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.03" y1="159.81" x2="301.71" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="156.84" x2="305.37" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.37" y1="153.9" x2="301.71" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.58" y1="150.93" x2="303.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="158.61" x2="273.21" y2="158.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.68" y1="165.72" x2="243.99" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="150.93" x2="245.76" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="147.99" x2="245.76" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.18" y1="150.93" x2="232.47" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="147.99" x2="236.52" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="97.74" x2="318.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="94.8" x2="315.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="91.83" x2="318.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="68.19" x2="345.78" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.78" y1="65.25" x2="343.05" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="62.28" x2="347.88" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="59.34" x2="365.73" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.96" y1="62.28" x2="363.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.77" y1="56.37" x2="357.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.68" y1="53.43" x2="368.04" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.33" y1="50.46" x2="370.98" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.82" y1="47.52" x2="373.95" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.77" y1="44.55" x2="370.05" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="41.61" x2="376.77" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.64" y1="38.64" x2="369.69" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.46" y1="35.7" x2="379.41" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.43" y1="32.73" x2="365.52" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.65" y1="32.73" x2="320.31" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.28" y1="35.7" x2="349.71" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.49" y1="38.64" x2="326.22" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.19" y1="41.61" x2="334.56" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.56" y1="44.55" x2="332.13" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="387.87" y2="42.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="374.37" y2="67.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="75.0" x2="419.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="32.73" x2="438.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.78" y1="35.7" x2="432.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.28" y1="38.64" x2="434.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="51.12" x2="433.11" y2="54.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.44" y1="53.43" x2="435.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="56.37" x2="430.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.14" y1="59.34" x2="441.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="62.28" x2="425.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="65.25" x2="442.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="68.19" x2="425.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="71.16" x2="442.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="74.1" x2="427.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.77" y1="77.07" x2="442.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="80.01" x2="433.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="82.98" x2="442.77" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="85.92" x2="436.47" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="88.89" x2="442.77" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.37" y1="91.83" x2="436.47" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="94.8" x2="446.34" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.28" y1="97.74" x2="436.47" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="100.71" x2="450.45" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="103.65" x2="436.47" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="106.62" x2="450.45" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="109.56" x2="436.47" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="112.53" x2="442.26" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="115.47" x2="441.15" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="118.44" x2="442.26" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="120.57" x2="441.15" y2="120.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="121.38" x2="441.15" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="124.35" x2="442.26" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="127.29" x2="441.15" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="130.26" x2="450.63" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.47" y1="130.26" x2="475.62" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.59" y1="133.2" x2="436.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="136.17" x2="483.6" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="139.11" x2="437.31" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.28" y1="142.08" x2="484.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="145.02" x2="466.89" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="461.88" y1="145.02" x2="443.22" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="147.99" x2="456.72" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.47" y1="150.93" x2="449.13" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.1" y1="153.9" x2="453.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.37" y1="156.0" x2="465.69" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="147.99" x2="472.05" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="147.99" x2="598.08" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.11" y1="150.93" x2="575.88" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.8" y1="149.85" x2="577.8" y2="152.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="153.9" x2="592.17" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.2" y1="156.84" x2="577.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="159.81" x2="586.26" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.29" y1="162.75" x2="577.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="165.72" x2="580.35" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.56" y1="165.0" x2="568.56" y2="176.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="235.5" x2="566.67" y2="188.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.74" y1="183.45" x2="1223.07" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="186.39" x2="1183.68" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="189.36" x2="1223.07" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="192.3" x2="1185.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="195.27" x2="1223.07" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="198.21" x2="1185.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="201.18" x2="1223.07" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="204.12" x2="1183.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.2" y1="207.09" x2="1223.07" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="210.03" x2="1177.32" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.29" y1="213.0" x2="1223.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="215.94" x2="1183.23" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="218.91" x2="1223.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="221.85" x2="1185.57" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="224.82" x2="1223.07" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="227.76" x2="1185.57" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="230.73" x2="1223.07" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="233.67" x2="1183.62" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.65" y1="236.64" x2="1223.07" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="239.58" x2="1177.71" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.84" y1="242.55" x2="1223.07" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="245.49" x2="1182.78" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="248.46" x2="1223.07" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="251.4" x2="1185.57" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="254.37" x2="1223.07" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="257.31" x2="1185.57" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="260.28" x2="1223.07" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="263.22" x2="1184.07" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.1" y1="266.19" x2="1223.07" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="269.13" x2="1178.16" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.39" y1="272.1" x2="1223.07" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="275.04" x2="1182.33" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.3" y1="278.01" x2="1223.07" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="280.95" x2="1185.57" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="283.92" x2="1223.07" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="286.86" x2="1185.57" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="289.83" x2="1223.07" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="292.77" x2="1184.52" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.55" y1="295.74" x2="1223.07" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="298.68" x2="1178.61" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.94" y1="301.65" x2="1223.07" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="304.59" x2="1181.88" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.85" y1="307.56" x2="1223.07" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="310.5" x2="1185.57" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="313.47" x2="1223.07" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="316.41" x2="1185.57" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="319.38" x2="1223.07" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="322.32" x2="1184.97" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.0" y1="325.29" x2="1223.07" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="328.23" x2="1179.06" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.49" y1="331.2" x2="1223.07" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="334.14" x2="1181.43" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="337.11" x2="1223.07" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="340.05" x2="1185.57" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="343.02" x2="1223.07" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="345.96" x2="1185.57" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="348.93" x2="1223.07" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="351.87" x2="1185.42" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.45" y1="354.84" x2="1223.07" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="357.78" x2="1179.51" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.04" y1="360.75" x2="1223.07" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="363.69" x2="1180.98" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.95" y1="366.66" x2="1223.07" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="369.6" x2="1185.57" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="372.57" x2="1223.07" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="375.51" x2="1185.57" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="378.48" x2="1223.07" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="381.42" x2="1185.57" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.9" y1="384.39" x2="1223.07" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="387.33" x2="1179.96" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.59" y1="390.3" x2="1223.07" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="393.24" x2="1180.53" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.5" y1="396.21" x2="1223.07" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="399.15" x2="1185.57" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="402.12" x2="1223.07" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="405.06" x2="1185.57" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="408.03" x2="1223.07" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="410.97" x2="1185.57" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.35" y1="413.94" x2="1223.07" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="416.88" x2="1180.41" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.44" y1="419.85" x2="1223.07" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="422.79" x2="1180.08" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="425.76" x2="1223.07" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="428.7" x2="1185.57" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="431.67" x2="1223.07" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="434.61" x2="1185.57" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="437.58" x2="1223.07" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="440.52" x2="1185.57" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.8" y1="443.49" x2="1223.07" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="446.43" x2="1180.86" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.89" y1="449.4" x2="1223.07" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="452.34" x2="1179.63" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.6" y1="455.31" x2="1223.07" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="458.25" x2="1185.54" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="461.22" x2="1223.07" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1221.3" y1="464.16" x2="1185.57" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="467.13" x2="1218.36" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1215.39" y1="470.07" x2="1185.57" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.25" y1="473.04" x2="1212.45" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1209.48" y1="475.98" x2="1181.31" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.34" y1="478.95" x2="1206.54" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.57" y1="481.89" x2="1179.18" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.15" y1="484.86" x2="1200.63" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.66" y1="487.8" x2="1185.09" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="490.77" x2="1194.72" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="493.71" x2="1185.57" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="496.68" x2="1193.07" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="499.62" x2="1185.57" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="502.59" x2="1193.07" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="505.53" x2="1181.76" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.79" y1="508.5" x2="1193.07" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="511.44" x2="1178.73" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.7" y1="514.41" x2="1193.07" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="517.35" x2="1184.64" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="520.32" x2="1193.07" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="523.26" x2="1185.57" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="526.23" x2="1193.07" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="529.17" x2="1185.57" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.15" y1="532.14" x2="1193.07" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="535.08" x2="1182.21" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.24" y1="538.05" x2="1193.07" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="540.99" x2="1178.28" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.25" y1="543.96" x2="1193.07" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="546.9" x2="1184.19" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="549.87" x2="1193.07" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="552.81" x2="1185.57" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="555.78" x2="1193.07" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="558.72" x2="1185.57" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="561.69" x2="1193.07" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="564.63" x2="1182.66" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.69" y1="567.6" x2="1193.07" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="570.54" x2="1177.83" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.8" y1="573.51" x2="1193.07" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="576.45" x2="1183.74" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="579.42" x2="1193.07" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="582.36" x2="1185.57" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="585.33" x2="1193.07" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="588.27" x2="1185.57" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="591.24" x2="1193.07" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="594.18" x2="1183.11" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.14" y1="597.15" x2="1193.07" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="600.09" x2="1177.2" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.35" y1="603.06" x2="1193.07" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="606.0" x2="1183.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="608.97" x2="1193.07" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="611.91" x2="1185.57" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="614.88" x2="1190.61" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1187.64" y1="617.82" x2="1185.57" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="620.79" x2="1184.52" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="585.0" x2="1154.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="424.5" x2="655.26" y2="454.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1154.37" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1056.87" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="394.95" x2="694.35" y2="394.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1154.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1073.37" y2="459.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="383.16" x2="703.53" y2="383.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1128.87" y1="480.0" x2="1053.87" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="371.34" x2="714.21" y2="371.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="427.32" x2="998.55" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="921.87" y1="435.18" x2="878.55" y2="435.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="874.47" y1="419.85" x2="919.65" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="919.65" y1="419.13" x2="911.31" y2="419.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="416.88" x2="874.11" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.88" y1="413.94" x2="911.49" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="422.79" x2="875.49" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="878.46" y1="425.76" x2="911.4" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="938.25" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="937.05" y2="435.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.37" y1="439.5" x2="1007.55" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="442.68" x2="1055.19" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="427.32" x2="1019.37" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="495.0" x2="1109.37" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="495.0" x2="1154.37" y2="480.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="1139.37" y2="465.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="956.37" y2="297.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="306.39" x2="719.01" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="435.0" x2="1154.37" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="300.48" x2="715.92" y2="300.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="405.0" x2="1124.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="282.75" x2="706.62" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="375.0" x2="1154.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="265.05" x2="697.35" y2="265.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1169.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1094.37" y2="300.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.89" y1="252.27" x2="689.85" y2="252.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.79" y1="254.37" x2="549.63" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="257.31" x2="664.92" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="260.28" x2="549.63" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="263.22" x2="664.92" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="266.19" x2="549.63" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="269.13" x2="664.92" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="272.1" x2="550.8" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.74" y1="275.04" x2="664.92" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="278.01" x2="556.71" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.37" y1="285.0" x2="543.03" y2="273.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="539.97" y2="193.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.94" y1="235.5" x2="548.94" y2="249.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="251.4" x2="692.64" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.61" y1="248.46" x2="660.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.13" y1="245.49" x2="698.55" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="701.52" y1="242.55" x2="662.13" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="239.58" x2="704.46" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="707.43" y1="236.64" x2="670.59" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="669.87" y2="228.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.6" y1="257.4" x2="1087.44" y2="257.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.51" y1="257.31" x2="1087.35" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1084.41" y1="254.37" x2="1080.57" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.44" y1="251.4" x2="1077.6" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1078.5" y1="248.46" x2="1074.66" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.53" y1="245.49" x2="1071.69" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.59" y1="242.55" x2="1068.75" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.62" y1="239.58" x2="1065.78" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.68" y1="236.64" x2="1062.84" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.71" y1="233.67" x2="1059.87" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="230.73" x2="1056.93" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.8" y1="227.76" x2="1053.96" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.86" y1="224.82" x2="1051.02" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1051.89" y1="221.85" x2="1048.05" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.95" y1="218.91" x2="981.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="983.94" y1="215.94" x2="1045.98" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1043.04" y1="213.0" x2="985.17" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="985.47" y1="210.03" x2="1040.07" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1037.13" y1="207.09" x2="985.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.37" y1="210.0" x2="959.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="235.5" x2="625.71" y2="219.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.37" y1="183.0" x2="1004.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="195.0" x2="1001.37" y2="177.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="619.8" y1="235.5" x2="619.8" y2="216.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1010.37" y1="171.0" x2="647.37" y2="171.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="235.5" x2="602.1" y2="207.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="285.0" x2="1124.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1028.37" y1="159.0" x2="641.37" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="235.5" x2="590.28" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="255.0" x2="1124.37" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1046.37" y1="147.0" x2="635.37" y2="147.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="235.5" x2="578.46" y2="194.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="225.0" x2="1124.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.37" y1="135.0" x2="629.37" y2="135.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="219.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="88.5" x2="449.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.28" y1="38.64" x2="464.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.78" y1="35.7" x2="462.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.02" y1="32.73" x2="468.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="473.79" y1="29.79" x2="454.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.79" y1="29.79" x2="424.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.14" y1="59.34" x2="469.47" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="62.28" x2="455.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="65.25" x2="469.47" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="68.19" x2="455.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="71.16" x2="469.47" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="74.1" x2="455.97" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="77.07" x2="469.47" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="80.01" x2="455.97" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="82.98" x2="469.47" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="85.92" x2="456.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.09" y1="88.89" x2="469.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="91.83" x2="462.03" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="94.8" x2="469.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="97.74" x2="463.65" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="100.71" x2="469.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="103.65" x2="463.65" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="106.62" x2="469.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="109.56" x2="463.65" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.23" y1="112.53" x2="469.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="115.47" x2="466.29" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="118.44" x2="469.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="121.38" x2="466.29" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="124.35" x2="470.46" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="472.68" y1="127.29" x2="466.29" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.05" y1="120.0" x2="457.05" y2="96.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="88.89" x2="501.18" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.21" y1="91.83" x2="489.27" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="94.8" x2="490.02" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="85.92" x2="504.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.09" y1="82.98" x2="489.27" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="80.01" x2="510.03" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="77.07" x2="489.27" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="74.1" x2="515.94" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.91" y1="71.16" x2="489.27" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="68.19" x2="521.85" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.82" y1="65.25" x2="489.27" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="62.28" x2="527.76" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.73" y1="59.34" x2="515.64" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="59.34" x2="507.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="56.37" x2="510.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="53.43" x2="507.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="50.46" x2="510.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="47.52" x2="507.87" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="44.55" x2="537.87" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="41.61" x2="540.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="38.64" x2="537.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="35.7" x2="540.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="32.73" x2="537.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="29.79" x2="540.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.97" y1="29.79" x2="563.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.75" y1="32.73" x2="549.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.88" y1="35.7" x2="555.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.49" y1="38.64" x2="553.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.77" y1="29.79" x2="512.97" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="29.79" x2="507.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="29.79" x2="484.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.02" y1="32.73" x2="499.74" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.86" y1="35.7" x2="492.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.28" y1="38.64" x2="495.12" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.64" y1="50.46" x2="494.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="493.44" y1="53.43" x2="496.2" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.69" y1="56.37" x2="490.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="59.34" x2="503.13" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.08" y1="56.37" x2="528.69" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.2" y1="53.43" x2="522.54" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="50.46" x2="524.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.12" y1="38.64" x2="523.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.88" y1="35.7" x2="526.86" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.74" y1="32.73" x2="519.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="32.73" x2="507.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="35.7" x2="510.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="38.64" x2="507.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="41.61" x2="510.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="60.0" x2="494.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="105.0" x2="548.37" y2="66.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1119.87" y2="150.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="105.0" x2="564.87" y2="79.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1169.37" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.19" y1="153.9" x2="1223.07" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="156.84" x2="1184.13" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="159.81" x2="1223.07" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="162.75" x2="1185.57" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="165.72" x2="1223.07" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="168.66" x2="1185.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="171.63" x2="1223.07" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="174.57" x2="1182.72" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.75" y1="177.54" x2="1223.07" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="180.48" x2="1177.77" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="195.0" x2="1124.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1109.37" y1="120.0" x2="1049.37" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.64" y1="50.46" x2="614.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="47.52" x2="585.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.57" y1="44.55" x2="613.17" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.26" y1="41.61" x2="585.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.28" y1="38.64" x2="614.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.78" y1="35.7" x2="582.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.02" y1="32.73" x2="618.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.79" y1="29.79" x2="574.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="29.79" x2="653.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.75" y1="32.73" x2="640.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.99" y1="35.7" x2="645.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.49" y1="38.64" x2="644.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.95" y1="29.79" x2="683.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.75" y1="32.73" x2="670.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="672.99" y1="35.7" x2="675.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="674.49" y1="38.64" x2="674.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.95" y1="29.79" x2="713.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="708.75" y1="32.73" x2="700.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="702.99" y1="35.7" x2="705.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="704.49" y1="38.64" x2="704.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.95" y1="29.79" x2="743.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="738.75" y1="32.73" x2="730.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="732.99" y1="35.7" x2="735.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.49" y1="38.64" x2="734.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="29.79" x2="773.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="768.75" y1="32.73" x2="760.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.99" y1="35.7" x2="765.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="764.49" y1="38.64" x2="764.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="784.95" y1="29.79" x2="803.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="798.75" y1="32.73" x2="790.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="792.99" y1="35.7" x2="795.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.49" y1="38.64" x2="794.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="814.95" y1="29.79" x2="833.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="828.75" y1="32.73" x2="820.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.99" y1="35.7" x2="825.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="824.49" y1="38.64" x2="824.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.95" y1="29.79" x2="893.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.75" y1="32.73" x2="850.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.99" y1="35.7" x2="885.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.49" y1="38.64" x2="854.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.51" y1="41.61" x2="883.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="883.17" y1="44.55" x2="855.57" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.57" y1="47.52" x2="883.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.1" y1="50.46" x2="854.64" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="29.79" x2="923.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.75" y1="32.73" x2="910.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="912.99" y1="35.7" x2="915.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.49" y1="38.64" x2="914.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.95" y1="29.79" x2="953.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.75" y1="32.73" x2="940.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="942.99" y1="35.7" x2="945.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="944.49" y1="38.64" x2="944.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.95" y1="29.79" x2="983.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="978.75" y1="32.73" x2="970.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="972.99" y1="35.7" x2="975.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.49" y1="38.64" x2="974.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="994.95" y1="29.79" x2="1013.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1008.75" y1="32.73" x2="1000.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1002.99" y1="35.7" x2="1005.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.49" y1="38.64" x2="1004.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1024.95" y1="29.79" x2="1043.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.75" y1="32.73" x2="1030.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.99" y1="35.7" x2="1035.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.49" y1="38.64" x2="1034.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.95" y1="29.79" x2="1073.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1068.75" y1="32.73" x2="1060.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1062.99" y1="35.7" x2="1065.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.49" y1="38.64" x2="1064.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.44" y1="53.43" x2="1065.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1067.85" y1="56.37" x2="1060.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.04" y1="59.34" x2="1071.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.95" y1="65.25" x2="1155.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1152.72" y1="62.28" x2="1060.98" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.89" y1="68.19" x2="1162.65" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.09" y1="68.19" x2="1196.04" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.63" y1="68.85" x2="1194.36" y2="67.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.73" y1="68.19" x2="1223.07" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="65.25" x2="1206.66" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.01" y1="62.28" x2="1222.74" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.8" y1="59.34" x2="1208.22" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1207.47" y1="56.37" x2="1216.83" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.89" y1="53.43" x2="1205.31" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.92" y1="50.46" x2="1193.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="47.52" x2="1207.98" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1205.01" y1="44.55" x2="1193.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="41.61" x2="1202.07" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.1" y1="38.64" x2="1192.71" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.51" y1="35.7" x2="1196.16" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.19" y1="32.73" x2="1190.28" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.09" y1="29.79" x2="1193.07" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="26.82" x2="1185.15" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.07" y1="23.88" x2="1193.07" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.68" y1="29.79" x2="1114.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.02" y1="32.73" x2="1148.49" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.26" y1="35.7" x2="1122.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.28" y1="38.64" x2="1146.03" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="41.61" x2="1125.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="44.55" x2="1145.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="47.52" x2="1125.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.64" y1="50.46" x2="1145.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1146.9" y1="53.43" x2="1123.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.92" y1="56.37" x2="1148.1" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1149.78" y1="59.34" x2="1117.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.63" y1="59.34" x2="1087.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.92" y1="56.37" x2="1097.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.33" y1="53.43" x2="1093.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.28" y1="38.64" x2="1094.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.78" y1="35.7" x2="1092.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.02" y1="32.73" x2="1098.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1103.79" y1="29.79" x2="1084.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.86" y1="71.16" x2="1223.07" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="74.1" x2="1072.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.77" y1="77.07" x2="1223.07" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="80.01" x2="1078.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.68" y1="82.98" x2="1223.07" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="85.92" x2="1084.62" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.59" y1="88.89" x2="1223.07" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="91.83" x2="1177.8" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.22" y1="94.8" x2="1223.07" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="97.74" x2="1183.2" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.37" y1="100.71" x2="1223.07" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="103.65" x2="1170.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="100.71" x2="1167.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="103.65" x2="1140.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="100.71" x2="1137.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="103.65" x2="1102.35" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.41" y1="100.71" x2="1124.37" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="97.74" x2="1096.44" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1093.5" y1="94.8" x2="1127.52" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1130.97" y1="91.83" x2="1090.53" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.32" y1="106.62" x2="1123.83" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.46" y1="109.56" x2="1108.26" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1111.23" y1="112.53" x2="1125.69" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="97.74" x2="1140.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="94.8" x2="1137.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="91.83" x2="1140.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.8" y1="91.83" x2="1160.97" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1157.52" y1="94.8" x2="1151.22" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.2" y1="97.74" x2="1155.57" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="97.74" x2="1170.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="94.8" x2="1167.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="91.83" x2="1170.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.91" y1="106.62" x2="1223.07" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="109.56" x2="1184.31" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="112.53" x2="1223.07" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="115.47" x2="1180.98" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.38" y1="118.44" x2="1223.07" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="121.38" x2="1178.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.64" y1="124.35" x2="1223.07" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="127.29" x2="1184.58" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="130.26" x2="1223.07" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="133.2" x2="1185.57" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="136.17" x2="1223.07" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="139.11" x2="1185.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.21" y1="142.08" x2="1223.07" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="145.02" x2="1182.27" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.3" y1="147.99" x2="1223.07" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="150.93" x2="1178.22" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="135.0" x2="1154.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.08" y1="65.25" x2="1192.11" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.76" y1="62.28" x2="1186.05" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.99" y1="59.34" x2="1190.52" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.64" y1="56.37" x2="1191.3" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.87" y1="53.43" x2="1193.46" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1031.22" y1="201.18" x2="1028.85" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1025.97" y1="204.12" x2="1034.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.8" y1="204.12" x2="1010.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.8" y1="204.12" x2="995.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.59" y1="218.91" x2="644.82" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.76" y1="215.94" x2="964.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="963.6" y1="213.0" x2="650.73" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.67" y1="210.03" x2="963.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.13" y1="207.09" x2="656.64" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.58" y1="204.12" x2="959.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="1124.37" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="722.37" y2="258.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="280.95" x2="649.65" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="283.92" x2="664.92" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="286.86" x2="655.56" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="289.83" x2="664.92" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="292.77" x2="661.47" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.44" y1="295.74" x2="664.92" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="659.37" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.94" y1="392.4" x2="758.64" y2="389.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="354.84" x2="744.24" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="745.47" y1="357.78" x2="745.47" y2="362.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="759.84" y1="390.3" x2="742.5" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.53" y1="387.33" x2="756.87" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="384.39" x2="736.59" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="733.62" y1="381.42" x2="754.77" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="378.48" x2="730.68" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="727.71" y1="375.51" x2="754.77" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="372.57" x2="724.77" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="725.22" y1="369.6" x2="728.55" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="369.6" x2="754.77" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="366.66" x2="743.43" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.87" y1="363.69" x2="754.77" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="360.75" x2="745.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.37" y1="360.0" x2="704.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="713.46" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.84" y1="334.14" x2="739.56" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="337.11" x2="720.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.75" y1="340.05" x2="739.56" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="338.25" x2="748.8" y2="338.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.74" y1="343.02" x2="726.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="729.66" y1="345.96" x2="742.26" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="741.96" y1="351.87" x2="754.77" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="348.93" x2="736.62" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="345.96" x2="749.94" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.94" y1="343.02" x2="748.8" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="340.05" x2="749.94" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="331.2" x2="714.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.93" y1="328.23" x2="725.91" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.94" y1="325.29" x2="708.99" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="719.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="678.87" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="341.82" x2="656.58" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="348.93" x2="627.63" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.57" y1="351.87" x2="637.86" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="351.72" x2="637.77" y2="347.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="354.84" x2="633.54" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.48" y1="357.78" x2="641.4" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="360.75" x2="638.22" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="631.62" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="424.5" x2="625.71" y2="412.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.7" y1="410.52" x2="624.3" y2="411.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.15" y1="410.97" x2="625.02" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="408.03" x2="520.11" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.42" y1="409.95" x2="524.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="405.06" x2="625.02" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="402.12" x2="520.11" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="399.15" x2="625.02" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="396.21" x2="520.11" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="393.24" x2="625.02" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="390.3" x2="520.11" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="387.33" x2="625.02" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="384.39" x2="520.11" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="381.42" x2="625.02" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="378.48" x2="520.11" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="375.51" x2="625.02" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="372.57" x2="520.11" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="369.6" x2="625.02" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="366.66" x2="520.11" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="363.69" x2="623.73" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="620.79" y1="360.75" x2="520.11" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="357.78" x2="617.82" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="614.88" y1="354.84" x2="520.11" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.87" y1="347.73" x2="513.27" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="341.82" x2="477.78" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.09" y1="342.6" x2="466.68" y2="342.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="343.02" x2="451.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="345.96" x2="475.92" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.92" y1="348.93" x2="451.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="351.87" x2="475.92" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="359.52" x2="461.85" y2="359.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="450.87" y2="384.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="601.17" y2="590.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="377.25" x2="475.65" y2="377.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="657.57" y2="554.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="532.17" y2="545.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="407.73" x2="496.5" y2="447.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="408.03" x2="506.91" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="410.97" x2="496.5" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="413.94" x2="506.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="416.88" x2="496.5" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="419.85" x2="506.64" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="422.79" x2="496.5" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="425.76" x2="506.64" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="428.7" x2="496.5" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="431.67" x2="506.64" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="434.61" x2="496.5" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="437.58" x2="508.74" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="442.5" x2="515.07" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="410.97" x2="521.01" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="405.06" x2="503.55" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="402.12" x2="506.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="399.15" x2="503.85" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="396.21" x2="506.91" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="393.24" x2="503.85" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="390.3" x2="506.91" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="387.33" x2="503.85" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="384.39" x2="506.91" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="381.42" x2="503.85" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="378.48" x2="506.91" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="375.51" x2="503.85" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="372.57" x2="506.91" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="369.6" x2="503.85" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="366.66" x2="506.91" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="363.69" x2="503.85" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="360.75" x2="506.91" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="357.78" x2="503.85" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="354.84" x2="506.91" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.27" y1="347.73" x2="513.51" y2="347.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.33" y1="424.5" x2="525.33" y2="449.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.66" y1="449.4" x2="516.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="446.43" x2="496.5" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="443.49" x2="518.73" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="440.52" x2="496.5" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.87" y1="439.2" x2="502.77" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.24" y1="424.5" x2="531.24" y2="473.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.37" y1="495.0" x2="537.15" y2="482.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.03" y1="424.5" x2="543.03" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.27" y1="525.0" x2="548.94" y2="507.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="424.5" x2="554.85" y2="513.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.87" y1="525.0" x2="560.76" y2="523.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="424.5" x2="566.67" y2="515.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.37" y1="525.0" x2="572.58" y2="513.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="424.5" x2="578.46" y2="499.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="599.37" y1="498.0" x2="599.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="424.5" x2="590.28" y2="473.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.87" y1="498.0" x2="620.37" y2="496.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="424.5" x2="602.1" y2="461.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.37" y1="498.0" x2="641.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="424.5" x2="613.92" y2="452.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.87" y1="510.0" x2="675.87" y2="505.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.44" y1="424.5" x2="643.44" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.37" y1="330.0" x2="794.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="313.5" x2="812.37" y2="316.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="316.41" x2="852.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="313.47" x2="826.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="310.5" x2="852.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="307.56" x2="825.48" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.54" y1="304.59" x2="853.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.62" y1="314.25" x2="862.62" y2="315.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="313.47" x2="897.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="316.41" x2="870.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="319.38" x2="897.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="322.32" x2="870.87" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="310.5" x2="897.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="307.56" x2="870.87" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.66" y1="304.59" x2="897.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="906.87" y1="315.0" x2="906.87" y2="325.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="322.32" x2="825.63" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="319.38" x2="852.87" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="663.96" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.52" y1="325.29" x2="613.44" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.47" y1="328.23" x2="664.92" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="331.2" x2="609.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.84" y1="334.14" x2="664.92" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.96" y1="337.11" x2="615.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="340.05" x2="642.69" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.69" y1="343.02" x2="621.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.66" y1="345.96" x2="638.34" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="599.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.03" y1="351.87" x2="611.91" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.97" y1="348.93" x2="534.0" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.94" y1="345.96" x2="606.0" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.06" y1="343.02" x2="539.91" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.85" y1="340.05" x2="600.09" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="597.15" y1="337.11" x2="545.82" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="503.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="335.91" x2="473.28" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.77" y1="331.2" x2="453.03" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="334.14" x2="457.95" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.18" y1="337.11" x2="451.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="340.05" x2="461.73" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.22" y1="328.23" x2="455.97" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.94" y1="325.29" x2="459.45" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.69" y1="318.18" x2="444.87" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.47" y1="609.0" x2="599.37" y2="608.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.37" y1="615.0" x2="551.97" y2="597.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="306.39" x2="450.51" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="492.27" y1="614.1" x2="491.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="294.57" x2="437.94" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.87" y1="285.0" x2="420.87" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="431.37" y1="615.0" x2="414.87" y2="598.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="270.93" x2="434.94" y2="270.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="279.0" x2="408.87" y2="607.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.37" y1="615.0" x2="366.69" y2="610.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="644.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="292.5" x2="501.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="276.84" x2="510.03" y2="276.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="288.66" x2="453.03" y2="288.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="408.87" y2="279.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="281.43" x2="364.47" y2="313.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="283.92" x2="393.81" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="286.86" x2="390.84" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.9" y1="289.83" x2="396.27" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="292.77" x2="384.93" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.99" y1="295.74" x2="396.27" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="298.68" x2="379.02" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.08" y1="301.65" x2="396.27" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="304.59" x2="373.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="307.56" x2="396.27" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="310.5" x2="367.2" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="313.47" x2="396.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="316.41" x2="364.47" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="319.38" x2="396.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="322.32" x2="364.47" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="325.29" x2="396.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="328.23" x2="364.47" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="331.2" x2="396.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="334.14" x2="364.47" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="337.11" x2="396.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="340.05" x2="364.47" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="343.02" x2="396.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="345.96" x2="364.47" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="348.93" x2="396.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="351.87" x2="364.47" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="354.84" x2="396.27" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="357.78" x2="364.47" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="360.75" x2="396.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="363.69" x2="364.47" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="366.66" x2="396.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="369.6" x2="364.47" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="372.57" x2="396.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="375.51" x2="364.47" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="378.48" x2="396.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="381.42" x2="364.47" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.95" y1="384.39" x2="396.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="387.33" x2="367.56" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.76" y1="390.3" x2="396.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="393.24" x2="368.97" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.58" y1="396.21" x2="396.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="399.15" x2="367.35" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="402.12" x2="396.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="405.06" x2="364.47" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="408.03" x2="396.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="410.97" x2="364.47" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="413.94" x2="396.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="416.88" x2="364.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="419.85" x2="396.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="422.79" x2="364.47" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="425.76" x2="396.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="428.7" x2="364.47" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="431.67" x2="396.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="434.61" x2="364.47" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="437.58" x2="396.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="440.52" x2="364.47" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="443.49" x2="396.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="446.43" x2="364.47" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="449.4" x2="396.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="452.34" x2="364.47" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="455.31" x2="396.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="458.25" x2="364.47" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="461.22" x2="396.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="464.16" x2="364.47" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="467.13" x2="396.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="470.07" x2="362.13" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.19" y1="473.04" x2="396.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="475.98" x2="356.22" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.28" y1="478.95" x2="396.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="481.89" x2="350.31" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.37" y1="484.86" x2="396.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="487.8" x2="392.7" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="490.77" x2="396.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="493.71" x2="393.06" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="496.68" x2="396.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="499.62" x2="393.06" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="502.59" x2="396.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="505.53" x2="391.29" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="508.5" x2="396.27" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.1" y1="511.44" x2="391.29" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="514.41" x2="392.16" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.05" y1="510.0" x2="382.05" y2="496.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="493.71" x2="364.65" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="494.13" x2="364.65" y2="485.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="490.77" x2="366.39" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="487.8" x2="364.65" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.03" y1="487.8" x2="344.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="490.77" x2="356.31" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="493.71" x2="343.29" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="496.68" x2="356.31" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="499.62" x2="343.29" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.41" y1="502.59" x2="357.3" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="505.53" x2="345.87" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="508.5" x2="357.48" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="511.44" x2="345.87" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="514.41" x2="357.48" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="517.35" x2="345.87" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="520.32" x2="360.09" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="523.26" x2="345.87" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="526.23" x2="360.09" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="529.17" x2="345.87" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="532.14" x2="352.62" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="535.08" x2="351.48" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="538.05" x2="352.62" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="540.99" x2="351.48" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="543.96" x2="352.62" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="546.9" x2="351.48" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.5" y1="549.87" x2="360.09" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="552.81" x2="216.54" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="549.87" x2="329.91" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="546.9" x2="215.97" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="543.96" x2="327.48" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="540.99" x2="215.97" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="538.05" x2="327.48" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="540.0" x2="336.69" y2="519.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.91" y1="532.14" x2="360.09" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.69" y1="523.5" x2="366.69" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.7" y1="535.08" x2="314.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="299.7" y1="535.08" x2="299.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.7" y1="535.08" x2="284.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.7" y1="535.08" x2="269.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.7" y1="535.08" x2="254.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.7" y1="535.08" x2="237.96" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="535.08" x2="231.42" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="535.65" x2="227.4" y2="535.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="532.14" x2="232.32" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="529.17" x2="231.42" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="526.23" x2="232.32" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="523.26" x2="231.42" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="520.32" x2="232.32" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="517.35" x2="231.42" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="514.41" x2="232.32" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="511.44" x2="231.42" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="508.5" x2="232.32" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="505.53" x2="231.42" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.74" y1="505.53" x2="215.97" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="502.59" x2="240.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="499.62" x2="215.97" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="496.68" x2="240.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="493.71" x2="215.97" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="490.77" x2="240.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="508.5" x2="215.97" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="511.44" x2="223.47" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="514.41" x2="215.97" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="517.35" x2="223.47" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="520.32" x2="215.97" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="523.26" x2="223.47" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="526.23" x2="215.97" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="529.17" x2="223.47" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.59" y1="532.14" x2="215.97" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="535.08" x2="225.78" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="224.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.52" y1="561.69" x2="225.39" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.45" y1="558.72" x2="274.56" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.56" y1="561.69" x2="269.25" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.68" y1="564.63" x2="274.56" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.71" y1="567.6" x2="272.88" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="570.54" x2="274.86" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="573.51" x2="272.46" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.14" y1="576.45" x2="273.96" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="579.42" x2="268.17" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="582.36" x2="261.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.03" y1="585.33" x2="275.37" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="588.27" x2="267.0" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.94" y1="591.24" x2="277.77" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="594.18" x2="272.91" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.85" y1="597.15" x2="277.77" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="600.0" x2="299.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.42" y1="603.06" x2="296.76" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.82" y1="600.09" x2="305.04" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.73" y1="600.09" x2="336.78" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="600.09" x2="342.87" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="603.06" x2="339.87" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="606.0" x2="342.87" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="608.97" x2="339.87" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="611.91" x2="342.87" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="603.06" x2="360.09" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="600.09" x2="345.99" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.12" y1="606.0" x2="357.57" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.34" y1="608.97" x2="355.8" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="597.15" x2="290.97" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="594.18" x2="360.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="591.24" x2="290.97" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="588.27" x2="360.09" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="585.33" x2="293.4" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="582.36" x2="360.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="579.42" x2="294.78" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="576.45" x2="360.09" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="573.51" x2="294.78" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.91" y1="570.54" x2="360.09" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="567.6" x2="294.06" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="564.63" x2="360.09" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="561.69" x2="294.18" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="558.72" x2="360.09" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="555.78" x2="293.49" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="555.78" x2="283.8" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.8" y1="558.72" x2="284.94" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="561.69" x2="283.8" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.28" y1="555.78" x2="219.48" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="523.26" x2="35.67" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="532.14" x2="125.61" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="120.96" y1="535.08" x2="35.67" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="538.05" x2="118.02" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.05" y1="540.99" x2="35.67" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="543.96" x2="112.11" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.14" y1="546.9" x2="35.67" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="549.87" x2="106.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="552.81" x2="35.67" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="555.78" x2="106.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="558.72" x2="35.67" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="561.69" x2="106.77" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="564.63" x2="35.67" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="567.6" x2="106.77" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="570.54" x2="35.67" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="573.51" x2="82.23" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.81" y1="573.66" x2="86.73" y2="571.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.02" y1="576.45" x2="35.67" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="579.42" x2="77.22" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="582.36" x2="35.67" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="585.33" x2="76.02" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.26" y1="588.27" x2="35.67" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="591.24" x2="77.49" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.65" y1="594.18" x2="35.67" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="597.15" x2="83.76" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.01" y1="597.15" x2="125.61" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="600.09" x2="35.67" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="603.06" x2="125.61" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="606.0" x2="35.67" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="608.97" x2="126.57" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="594.18" x2="99.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.28" y1="591.24" x2="120.78" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.81" y1="588.27" x2="102.48" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="585.33" x2="114.87" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.9" y1="582.36" x2="102.75" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.52" y1="579.42" x2="108.96" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="576.45" x2="99.75" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.54" y1="573.51" x2="106.77" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="123.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="113.37" y2="552.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.47" y1="549.87" x2="124.86" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.96" y1="520.32" x2="202.77" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="517.35" x2="171.24" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="514.41" x2="202.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="511.44" x2="171.24" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="508.5" x2="202.77" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="505.53" x2="171.24" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="502.59" x2="202.77" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="499.62" x2="168.9" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.25" y1="487.8" x2="202.77" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="484.86" x2="170.64" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="484.86" x2="146.97" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="487.8" x2="149.88" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="481.89" x2="146.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="475.98" x2="149.88" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="473.04" x2="146.97" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="470.07" x2="149.88" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="460.41" x2="166.74" y2="460.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="443.49" x2="170.34" y2="442.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="458.25" x2="146.97" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="455.31" x2="149.88" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="452.34" x2="146.97" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="449.4" x2="60.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="452.34" x2="85.02" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.19" y1="455.31" x2="60.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="458.25" x2="77.7" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.47" y1="461.22" x2="60.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="464.16" x2="76.02" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="467.13" x2="60.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="470.07" x2="77.01" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.51" y1="473.04" x2="60.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="475.98" x2="81.45" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.15" y1="490.77" x2="202.77" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="493.71" x2="72.09" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.06" y1="496.68" x2="202.77" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="464.16" x2="102.75" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.27" y1="461.22" x2="202.77" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="458.25" x2="169.98" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="455.31" x2="202.77" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="452.34" x2="170.64" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="446.43" x2="177.45" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="440.52" x2="168.93" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.44" y1="437.58" x2="60.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="440.52" x2="127.92" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.24" y1="443.49" x2="60.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="446.43" x2="126.21" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="452.34" x2="93.75" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.58" y1="455.31" x2="126.21" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.87" y1="458.25" x2="101.04" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="446.43" x2="149.88" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="443.49" x2="146.97" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="440.52" x2="149.88" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="449.4" x2="202.77" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="437.58" x2="212.49" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="434.61" x2="215.43" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="431.67" x2="222.87" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="428.7" x2="210.12" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.33" y1="425.76" x2="223.11" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.97" y1="422.79" x2="179.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.35" y1="419.85" x2="217.17" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="416.88" x2="175.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.08" y1="413.94" x2="158.52" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="412.47" x2="155.37" y2="421.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="410.97" x2="178.65" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="408.03" x2="159.12" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="405.06" x2="178.65" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="402.12" x2="158.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.68" y1="399.15" x2="178.65" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="396.21" x2="156.48" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.07" y1="393.24" x2="180.87" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.16" y1="390.3" x2="152.13" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.16" y1="387.33" x2="176.22" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="174.72" y1="384.39" x2="143.1" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.64" y1="384.39" x2="60.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="387.33" x2="119.61" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.64" y1="390.3" x2="60.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="393.24" x2="113.7" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.29" y1="396.21" x2="60.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="399.15" x2="111.06" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.86" y1="402.12" x2="60.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="405.06" x2="109.62" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="408.03" x2="60.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="410.97" x2="109.62" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.22" y1="413.94" x2="60.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="416.88" x2="111.45" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.68" y1="419.85" x2="60.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="422.79" x2="114.63" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.57" y1="425.76" x2="60.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="428.7" x2="120.78" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.89" y1="431.67" x2="60.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="434.61" x2="161.79" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.21" y1="431.67" x2="140.85" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.99" y1="428.7" x2="157.98" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.77" y1="425.76" x2="151.2" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="154.14" y1="422.79" x2="158.19" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.42" y1="419.85" x2="156.09" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.29" y1="416.88" x2="162.3" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.66" y1="413.94" x2="216.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.23" y1="410.97" x2="210.12" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="408.03" x2="219.18" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.74" y1="405.06" x2="210.12" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="402.12" x2="215.76" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.77" y1="399.15" x2="212.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.87" y1="397.5" x2="232.05" y2="391.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="368.85" x2="266.52" y2="368.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="363.69" x2="328.86" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="360.75" x2="269.88" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="357.78" x2="328.86" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="354.84" x2="269.88" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="351.87" x2="329.46" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.46" y1="351.84" x2="269.88" y2="351.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="327.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="340.71" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="345.0" x2="357.87" y2="322.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.0" y1="334.14" x2="351.27" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="322.5" x2="357.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="366.66" x2="269.82" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.28" y1="369.6" x2="328.86" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="372.57" x2="269.88" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="375.51" x2="328.86" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="378.48" x2="269.88" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="380.67" x2="258.03" y2="384.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.87" y1="417.0" x2="271.53" y2="401.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.61" y1="401.34" x2="284.61" y2="412.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="418.65" x2="296.37" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.35" y1="461.22" x2="302.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="304.68" y1="464.16" x2="310.38" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="307.44" y1="467.13" x2="305.91" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="308.37" y1="492.0" x2="306.87" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="577.68" x2="284.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.35" y1="603.06" x2="331.29" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.65" y1="606.0" x2="325.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.4" y1="608.97" x2="326.94" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.67" y1="552.6" x2="475.17" y2="584.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.37" y1="555.0" x2="692.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.87" y1="510.0" x2="711.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="719.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="413.94" x2="350.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="410.97" x2="325.89" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="408.03" x2="351.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="405.06" x2="326.64" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="402.12" x2="351.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.42" y1="399.15" x2="326.64" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="396.21" x2="347.19" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.77" y1="393.24" x2="326.64" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.45" y1="390.3" x2="346.98" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.21" y1="387.33" x2="308.94" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.09" y1="384.39" x2="328.95" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="381.42" x2="303.12" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="401.34" x2="290.52" y2="418.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="216.69" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="209.37" y2="388.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.29" y1="360.75" x2="60.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="363.69" x2="161.52" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="366.66" x2="60.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="369.6" x2="161.31" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="372.57" x2="60.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="375.51" x2="161.31" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="378.48" x2="60.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="381.42" x2="163.98" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.32" y1="357.78" x2="60.27" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="354.84" x2="181.38" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="185.37" y2="343.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="195.87" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.05" y1="360.0" x2="235.02" y2="362.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="357.06" x2="246.93" y2="357.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="345.0" x2="203.19" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="328.23" x2="217.26" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.26" y1="325.29" x2="216.15" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="322.32" x2="217.26" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.74" y1="331.2" x2="60.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="334.14" x2="161.55" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="337.11" x2="60.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="340.05" x2="161.31" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="343.02" x2="60.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="345.96" x2="161.31" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="348.93" x2="60.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="351.87" x2="163.95" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.87" y1="270.0" x2="252.87" y2="260.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="240.81" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="238.59" y2="246.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="245.49" x2="231.15" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="231.15" y2="254.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="254.37" x2="232.26" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="251.4" x2="231.15" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="248.46" x2="232.26" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="226.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.75" y1="236.64" x2="253.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="233.67" x2="226.59" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="230.73" x2="252.18" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="227.76" x2="226.59" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="224.82" x2="252.18" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="221.85" x2="226.59" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="218.91" x2="252.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="215.94" x2="226.59" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.36" y1="213.0" x2="253.38" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.54" y1="236.64" x2="316.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.55" y1="245.49" x2="254.22" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="386.97" y1="198.21" x2="391.8" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="406.86" y1="207.09" x2="408.9" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.87" y1="225.0" x2="404.37" y2="226.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="489.9" y2="259.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="456.87" y2="238.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="501.87" y2="208.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.27" y1="222.0" x2="434.37" y2="200.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="175.14" x2="434.37" y2="160.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="145.02" x2="601.02" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.99" y1="142.08" x2="504.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="139.11" x2="606.93" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.9" y1="136.17" x2="556.77" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.78" y1="133.2" x2="612.84" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.81" y1="130.26" x2="564.75" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.69" y1="127.29" x2="618.75" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.72" y1="124.35" x2="570.66" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.6" y1="121.38" x2="791.82" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.97" y1="118.44" x2="576.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.51" y1="115.47" x2="787.74" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="786.51" y1="112.53" x2="582.48" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.42" y1="109.56" x2="785.37" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="106.62" x2="589.65" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.04" y1="103.65" x2="785.37" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="100.71" x2="594.51" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.17" y1="97.74" x2="786.42" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="787.65" y1="94.8" x2="595.17" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="594.0" y1="91.83" x2="788.85" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="791.58" y1="88.89" x2="591.75" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.24" y1="150.93" x2="560.52" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="150.93" x2="553.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="153.9" x2="554.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="156.84" x2="553.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="159.81" x2="554.94" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="162.75" x2="553.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.57" x2="553.8" y2="179.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.72" x2="554.94" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="168.66" x2="553.8" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="171.63" x2="554.94" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="174.57" x2="553.8" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="177.54" x2="554.94" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.06" y1="180.48" x2="546.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="183.45" x2="554.16" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="186.39" x2="546.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="189.36" x2="554.16" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="192.3" x2="548.4" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.37" y1="195.27" x2="554.16" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.22" y1="150.93" x2="547.53" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.94" y1="150.93" x2="523.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="153.9" x2="524.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="156.84" x2="513.72" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.56" y1="153.9" x2="510.78" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.81" y1="150.93" x2="515.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.43" y1="221.85" x2="666.69" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="224.82" x2="662.13" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="655.26" y2="235.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="318.18" x2="611.19" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.87" y1="366.0" x2="667.17" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="512.07" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="318.18" x2="456.69" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="489.9" y2="365.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.98" y1="499.62" x2="78.0" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="600.0" x2="173.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.56" y1="614.88" x2="35.67" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="617.82" x2="185.37" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.79" y1="620.79" x2="35.67" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="623.73" x2="128.13" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.18" y1="626.7" x2="35.67" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="629.64" x2="125.52" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.88" y1="632.61" x2="35.67" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="635.55" x2="127.41" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="131.79" y1="638.52" x2="35.67" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="611.91" x2="169.8" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.02" y1="623.73" x2="140.64" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.59" y1="626.7" x2="188.25" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.08" y1="629.64" x2="143.22" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.89" y1="632.61" x2="193.05" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="196.29" y1="635.55" x2="141.33" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="136.98" y1="638.52" x2="203.43" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.92" y1="56.37" x2="467.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.33" y1="53.43" x2="463.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="92.73" x2="249.3" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.64" y1="95.07" x2="202.17" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="97.44" x2="254.01" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.57" y1="99.0" x2="242.37" y2="85.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="99.78" x2="202.17" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="102.15" x2="258.57" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="104.49" x2="202.17" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="106.86" x2="258.57" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="109.2" x2="202.17" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.64" y1="111.57" x2="258.57" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="113.91" x2="205.98" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.35" y1="116.28" x2="258.57" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="118.62" x2="210.69" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.06" y1="120.99" x2="258.57" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="123.33" x2="215.4" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.77" y1="125.7" x2="258.57" y2="125.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="128.04" x2="232.11" y2="128.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.48" y1="130.41" x2="257.85" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="256.29" y1="132.75" x2="236.82" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.87" y1="144.9" x2="233.79" y2="145.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.79" y1="146.88" x2="256.47" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="149.25" x2="233.67" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="151.59" x2="252.78" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="153.96" x2="233.67" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="156.3" x2="251.37" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="158.67" x2="233.43" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.06" y1="161.01" x2="251.37" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="163.38" x2="228.72" y2="163.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="165.72" x2="249.45" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.11" y1="168.09" x2="227.07" y2="168.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="170.43" x2="244.74" y2="170.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="172.8" x2="227.07" y2="172.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="175.14" x2="243.87" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="177.51" x2="227.07" y2="177.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="179.85" x2="243.87" y2="179.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="182.22" x2="227.07" y2="182.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="184.56" x2="243.87" y2="184.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="241.77" y1="186.93" x2="228.0" y2="186.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="162.9" x2="282.87" y2="162.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="161.01" x2="282.87" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="158.67" x2="263.97" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="156.3" x2="282.87" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="153.96" x2="263.97" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="151.59" x2="282.87" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="149.25" x2="261.27" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.27" y1="146.88" x2="281.85" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.51" y1="144.54" x2="261.27" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.9" y1="142.17" x2="277.14" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="142.17" x2="296.97" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="139.83" x2="289.17" y2="139.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="137.46" x2="296.97" y2="137.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="135.12" x2="289.17" y2="135.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="132.75" x2="296.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="130.41" x2="289.17" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="130.2" x2="289.17" y2="148.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="124.8" x2="324.57" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="123.33" x2="326.34" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.71" y1="120.99" x2="279.87" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="118.62" x2="329.1" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.13" y1="116.28" x2="279.87" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="113.91" x2="329.16" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.16" y1="111.57" x2="279.87" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="109.2" x2="329.19" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.22" y1="106.86" x2="279.87" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="104.49" x2="329.25" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.28" y1="102.15" x2="279.87" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="99.78" x2="329.28" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.31" y1="97.44" x2="283.86" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.2" y1="95.07" x2="329.34" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="92.73" x2="288.57" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.77" y1="93.3" x2="264.27" y2="93.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="95.07" x2="264.27" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="97.44" x2="274.47" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="99.78" x2="264.27" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="102.15" x2="274.47" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="104.49" x2="264.27" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="106.86" x2="274.47" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="109.2" x2="264.27" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="111.57" x2="274.47" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="113.91" x2="264.27" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.93" y1="90.36" x2="203.91" y2="90.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.28" y1="88.02" x2="244.59" y2="88.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="144.54" x2="296.97" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="146.88" x2="289.17" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="399.75" y2="236.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="540.21" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="226.65" x2="327.72" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.99" y1="225.0" x2="194.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="105.0" x2="269.37" y2="88.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.15" y1="71.82" x2="337.05" y2="75.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.13" y1="213.9" x2="401.37" y2="213.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="287.37" y2="175.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="293.01" y2="146.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.87" y1="119.1" x2="351.87" y2="75.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="138.84" x2="218.43" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="158.61" x2="257.85" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="403.47" x2="192.87" y2="404.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.87" y1="426.0" x2="179.43" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="510.0" x2="74.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.37" y1="128.4" x2="191.37" y2="89.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="47.01" x2="354.06" y2="47.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="45.0" x2="479.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.37" y1="126.3" x2="554.67" y2="126.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="397.05" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.47" y1="156.0" x2="317.37" y2="155.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.43" y1="138.84" x2="201.81" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="161.25" x2="650.34" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.88" y1="161.25" x2="666.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.45" y1="161.25" x2="663.45" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.34" y1="182.58" x2="636.12" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="171.9" x2="643.23" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="675.72" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.94" y1="168.36" x2="675.72" y2="168.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="679.29" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.48" y1="171.9" x2="699.48" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="730.35" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="726.78" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.24" y1="175.47" x2="730.35" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="175.47" x2="739.08" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="168.36" x2="746.19" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="175.47" x2="762.42" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="161.25" x2="765.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="778.26" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="774.72" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.42" y1="182.58" x2="762.42" y2="186.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="713.7" y1="175.47" x2="703.02" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="825.78" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="822.21" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="182.58" x2="845.97" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="171.9" x2="849.54" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="869.73" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="873.3" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="893.49" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="897.03" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="917.25" y1="161.25" x2="927.9" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="29.37" y1="15.0" x2="29.37" y2="645.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="31.8" x2="76.17" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="36.0" x2="78.27" y2="40.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.9" y1="36.0" x2="96.3" y2="36.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="38.1" x2="105.9" y2="42.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="29.7" x2="110.1" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.53" y1="31.8" x2="117.63" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.33" y1="42.3" x2="129.33" y2="33.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="122.82" y1="81.84" x2="98.01" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.76" y1="81.84" x2="33.03" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="33.03" y1="164.52" x2="33.03" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.01" y1="188.16" x2="122.82" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="188.16" x2="190.14" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.04" y1="101.1" x2="203.04" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.73" y1="138.9" x2="233.73" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="245.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="251.67" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="89.22" x2="240.48" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.78" y1="46.08" x2="255.15" y2="31.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.32" y1="31.68" x2="298.29" y2="45.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="327.84" y2="61.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="334.92" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.82" y1="51.72" x2="360.93" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.37" y1="52.5" x2="411.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="332.73" y1="101.1" x2="332.73" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="138.3" x2="351.42" y2="138.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.04" y1="138.9" x2="302.04" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="293.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="287.07" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.62" y1="88.92" x2="298.59" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.67" y1="151.2" x2="293.67" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="159.0" x2="245.07" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="207.87" x2="212.22" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="212.22" y1="236.82" x2="212.22" y2="242.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.19" y1="236.82" x2="251.19" y2="213.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="213.18" x2="266.55" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.48" y1="266.1" x2="247.29" y2="266.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.85" y1="281.46" x2="224.85" y2="288.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.29" y1="303.9" x2="261.48" y2="303.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.92" y1="288.54" x2="283.92" y2="281.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.3" y1="241.8" x2="409.44" y2="241.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.94" y1="228.18" x2="413.94" y2="221.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="409.44" y1="208.2" x2="399.3" y2="208.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.13" y1="172.68" x2="533.13" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.64" y1="157.32" x2="575.64" y2="172.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.17" y1="95.58" x2="634.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.17" y1="80.1" x2="627.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="70.5" x2="629.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="75.3" x2="654.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="85.98" x2="664.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="90.78" x2="649.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.97" y1="80.1" x2="656.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="649.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="664.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="60.0" x2="651.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.77" y1="75.3" x2="687.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.97" y1="70.5" x2="689.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="697.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="687.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="682.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="697.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="712.77" y1="93.18" x2="712.77" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="712.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="70.5" x2="719.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="727.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.77" y1="85.98" x2="727.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="93.18" x2="717.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="93.18" x2="749.97" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="757.17" y1="93.18" x2="742.77" y2="93.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="80.1" x2="757.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.97" y1="80.1" x2="749.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="742.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="757.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.27" y1="75.3" x2="776.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="783.27" y1="85.98" x2="785.67" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="778.47" y1="80.1" x2="778.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="785.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="771.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="801.27" y1="80.1" x2="803.67" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="75.3" x2="837.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="839.97" y1="70.5" x2="839.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="847.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.17" y1="85.98" x2="844.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="832.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.37" y1="52.5" x2="891.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="892.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.77" y1="85.98" x2="902.37" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="88.38" x2="897.57" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="80.1" x2="899.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="907.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="75.3" x2="927.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.77" y1="85.98" x2="937.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="929.97" y1="80.1" x2="929.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="922.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="937.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="75.3" x2="957.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="959.97" y1="70.5" x2="959.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="967.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="85.98" x2="967.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="90.78" x2="952.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="952.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="75.3" x2="987.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="85.98" x2="997.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="90.78" x2="982.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.97" y1="80.1" x2="989.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="982.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="997.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="75.3" x2="1017.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.97" y1="70.5" x2="1019.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1027.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="85.98" x2="1027.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="90.78" x2="1012.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1012.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="75.3" x2="1047.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="70.5" x2="1049.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1057.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="85.98" x2="1057.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="90.78" x2="1042.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1042.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.77" y1="75.3" x2="1077.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="85.98" x2="1087.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="90.78" x2="1072.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1079.97" y1="80.1" x2="1079.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1072.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1087.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.27" y1="75.3" x2="1106.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="85.98" x2="1115.67" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="90.78" x2="1101.27" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1108.47" y1="80.1" x2="1108.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1101.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1115.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="90.0" x2="1176.87" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1113.27" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1115.67" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="108.63" x2="1072.77" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1089.87" y2="129.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1097.1" y2="127.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="139.2" x2="1107.75" y2="141.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="157.2" x2="1107.75" y2="157.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="159.6" x2="1105.35" y2="169.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="171.6" x2="1089.87" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="187.2" x2="1097.1" y2="201.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="192.0" x2="1107.75" y2="194.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="194.4" x2="1105.35" y2="196.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="217.2" x2="1107.75" y2="217.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="224.4" x2="1110.15" y2="229.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="224.4" x2="1089.87" y2="224.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="247.2" x2="1097.1" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="254.4" x2="1114.95" y2="254.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="247.2" x2="1112.55" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="286.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="284.4" x2="1089.87" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="307.2" x2="1107.75" y2="307.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="309.6" x2="1105.35" y2="319.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="314.4" x2="1089.87" y2="314.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="337.2" x2="1092.27" y2="337.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="344.4" x2="1097.1" y2="344.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="344.4" x2="1099.5" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="349.2" x2="1105.35" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="344.4" x2="1114.95" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="367.2" x2="1112.55" y2="367.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="374.4" x2="1110.15" y2="379.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1099.5" y2="376.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="374.4" x2="1097.1" y2="374.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1097.1" y2="381.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1089.87" y2="399.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1097.1" y2="397.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="404.4" x2="1099.5" y2="406.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="404.4" x2="1114.95" y2="404.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="397.2" x2="1112.55" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1099.5" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="434.4" x2="1097.1" y2="434.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1097.1" y2="441.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1089.87" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1097.1" y2="457.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="464.4" x2="1099.5" y2="466.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1105.35" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1107.75" y2="471.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="487.2" x2="1107.75" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="494.4" x2="1114.95" y2="496.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1089.87" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1099.5" y2="499.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1089.87" y1="517.2" x2="1099.5" y2="526.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="524.4" x2="1112.55" y2="524.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="547.2" x2="1112.55" y2="561.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1099.5" y2="559.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1089.87" y2="547.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="517.2" x2="1089.87" y2="517.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1043.07" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1052.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="585.18" x2="1052.67" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="589.98" x2="1038.27" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1041.87" y1="600.0" x2="1056.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="592.38" x2="1022.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1020.27" y1="585.18" x2="1010.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="990.27" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="992.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="579.3" x2="992.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="574.5" x2="978.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="569.7" x2="962.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="574.5" x2="948.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="953.07" y1="585.18" x2="950.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="955.47" y1="587.58" x2="957.87" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="585.18" x2="930.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.27" y1="574.5" x2="932.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="569.7" x2="932.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="923.07" y1="569.7" x2="918.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="574.5" x2="888.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="569.7" x2="902.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="900.27" y1="585.18" x2="902.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.47" y1="585.18" x2="890.67" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="592.38" x2="872.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="863.07" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="858.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="592.38" x2="828.27" y2="592.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="579.3" x2="842.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="574.5" x2="828.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="863.07" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="872.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="569.7" x2="872.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.37" y1="607.5" x2="786.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="589.8" x2="770.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="580.2" x2="770.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="589.8" x2="752.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="585.0" x2="738.27" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="753.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="741.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="747.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.87" y1="561.0" x2="777.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="555.0" x2="777.87" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="713.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="722.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.67" y1="587.4" x2="692.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="585.0" x2="685.47" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="587.4" x2="683.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.67" y1="587.4" x2="648.27" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.67" y1="587.4" x2="632.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="623.07" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="618.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.67" y1="587.4" x2="602.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.47" y1="580.2" x2="590.67" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="580.2" x2="570.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.67" y1="582.6" x2="525.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.47" y1="582.6" x2="518.07" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.87" y1="600.0" x2="528.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="495.27" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="497.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="583.08" x2="465.27" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.27" y1="580.68" x2="455.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="590.28" x2="437.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="585.48" x2="423.27" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="574.8" x2="437.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="570.0" x2="423.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="565.2" x2="407.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="570.0" x2="393.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.67" y1="580.68" x2="393.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="587.88" x2="377.67" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="574.8" x2="377.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="570.0" x2="363.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.97" y1="564.27" x2="333.57" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="579.72" x2="333.57" y2="586.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="579.72" x2="305.07" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="584.52" x2="312.27" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.07" y1="573.87" x2="305.07" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="569.07" x2="312.27" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="558.39" x2="307.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="548.79" x2="314.67" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="553.59" x2="319.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="555.99" x2="333.57" y2="551.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.97" y1="558.39" x2="333.57" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="542.94" x2="309.87" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="533.31" x2="312.27" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.27" y1="583.08" x2="363.27" y2="587.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.47" y1="587.88" x2="370.47" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.67" y1="580.68" x2="363.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="570.0" x2="467.67" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="565.2" x2="467.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.07" y1="565.2" x2="453.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="497.76" x2="372.36" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="492.42" x2="372.54" y2="494.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.36" y1="495.0" x2="372.36" y2="500.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="499.68" x2="346.47" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="487.8" x2="344.97" y2="487.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="472.8" x2="346.47" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.5" y1="462.69" x2="346.53" y2="461.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="457.02" x2="226.77" y2="457.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.6" y1="502.98" x2="341.97" y2="502.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="503.01" x2="342.6" y2="503.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.1" y1="485.7" x2="209.1" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="487.8" x2="195.3" y2="475.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="477.3" x2="181.5" y2="481.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="485.7" x2="173.07" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="485.7" x2="179.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="173.07" y2="507.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="179.4" y2="505.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="517.8" x2="186.9" y2="509.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="535.2" x2="186.9" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="545.7" x2="181.5" y2="541.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="535.2" x2="173.07" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="539.4" x2="181.5" y2="535.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="535.2" x2="195.3" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="200.7" y2="537.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="202.8" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.0" y1="565.2" x2="202.8" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="567.3" x2="200.7" y2="575.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="577.8" x2="186.9" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="565.2" x2="186.9" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="577.8" x2="173.07" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="577.8" x2="177.27" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="620.7" x2="105.6" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="633.3" x2="105.6" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="620.7" x2="97.2" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.8" y1="631.2" x2="91.8" y2="627.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.6" y1="624.9" x2="91.8" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="620.7" x2="83.4" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="631.2" x2="75.9" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="457.8" x2="173.07" y2="455.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="455.7" x2="179.4" y2="457.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="195.3" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="457.8" x2="200.7" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="186.9" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="427.5" x2="185.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.37" y1="412.5" x2="203.37" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="430.8" x2="97.2" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="99.3" y1="424.5" x2="105.6" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="418.2" x2="97.2" y2="430.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="430.8" x2="83.4" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="420.3" x2="78.0" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.57" y1="418.2" x2="75.9" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.9" y1="424.5" x2="78.0" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.91" y1="382.5" x2="761.91" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="765.87" y1="367.5" x2="773.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.37" y1="326.82" x2="854.37" y2="363.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="375.0" x2="899.04" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.37" y1="363.18" x2="914.37" y2="326.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.04" y1="315.0" x2="869.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.4" y1="295.8" x2="862.5" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.07" y1="283.2" x2="854.07" y2="295.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="287.4" x2="862.5" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="867.9" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="870.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="881.7" y1="283.2" x2="888.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="289.5" x2="897.63" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="895.53" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="897.63" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="913.53" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="911.43" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="909.33" y1="291.6" x2="913.53" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.37" y1="345.0" x2="869.43" y2="346.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="818.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="825.87" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="773.37" y1="360.0" x2="765.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="292.8" x2="784.77" y2="292.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.67" y1="292.8" x2="782.67" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="280.2" x2="784.77" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="789.78" y1="282.3" x2="791.88" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="292.8" x2="803.61" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="284.4" x2="809.91" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="414.57" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="425.43" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.54" y1="419.7" x2="931.02" y2="417.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.57" y1="417.9" x2="954.9" y2="417.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.4" y1="415.8" x2="964.5" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="415.8" x2="978.3" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="420.0" x2="992.13" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="990.03" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="992.13" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="413.7" x2="1003.83" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="417.9" x2="1008.03" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="422.1" x2="976.2" y2="415.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="427.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="429.9" x2="1195.47" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="434.7" x2="1202.7" y2="437.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="439.5" x2="1210.95" y2="441.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="434.7" x2="1215.75" y2="434.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="411.9" x2="1208.55" y2="411.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="399.9" x2="1200.3" y2="397.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="404.7" x2="1200.3" y2="404.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="404.7" x2="1202.7" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="381.9" x2="1200.3" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="374.7" x2="1200.3" y2="374.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="379.5" x2="1195.47" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="381.9" x2="1218.15" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="351.9" x2="1208.55" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="339.9" x2="1218.15" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1202.7" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="344.7" x2="1200.3" y2="344.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1200.3" y2="351.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="339.9" x2="1210.95" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="321.9" x2="1208.55" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="314.7" x2="1193.07" y2="314.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="307.5" x2="1218.15" y2="307.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="307.5" x2="1213.35" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1208.55" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1215.75" y2="291.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="284.7" x2="1215.75" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="284.7" x2="1193.07" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1193.07" y2="254.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1213.35" y2="257.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1208.55" y2="261.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1200.3" y2="247.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1193.07" y2="224.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1208.55" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1218.15" y2="229.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1200.3" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="201.9" x2="1193.07" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="197.1" x2="1210.95" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="189.9" x2="1218.15" y2="199.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="189.9" x2="1210.95" y2="187.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="187.5" x2="1200.3" y2="201.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="171.9" x2="1193.07" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="157.5" x2="1218.15" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="157.5" x2="1213.35" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1208.55" y2="139.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1215.75" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="129.9" x2="1200.3" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1197.87" y2="137.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1193.07" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="134.7" x2="1215.75" y2="134.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="108.63" x2="1057.17" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="106.23" x2="1049.97" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="108.63" x2="1047.57" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="101.43" x2="1027.17" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="111.06" x2="1027.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1015.17" y1="101.43" x2="1012.77" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="111.06" x2="997.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="106.23" x2="982.77" y2="106.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="103.83" x2="964.77" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.77" y1="101.43" x2="955.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1193.07" y2="459.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1200.3" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="464.7" x2="1202.7" y2="467.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="467.1" x2="1213.35" y2="471.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="457.5" x2="1218.15" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1114.95" y1="577.2" x2="1105.35" y2="577.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1097.1" y2="591.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1099.5" y2="586.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="607.5" x2="1131.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="579.3" x2="1022.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1110.12" y1="632.25" x2="1111.62" y2="630.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1119.81" y1="639.75" x2="1119.81" y2="633.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="385.95" x2="847.62" y2="376.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="381.45" x2="834.12" y2="381.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="372.12" x2="834.12" y2="367.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="369.87" x2="845.37" y2="369.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.72" y1="590.25" x2="193.02" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="592.95" x2="190.32" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.32" y1="590.25" x2="190.32" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.87" y1="598.35" x2="181.47" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.17" y1="598.35" x2="184.17" y2="590.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.02" y1="591.6" x2="178.02" y2="597.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="403.83" x2="501.69" y2="250.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="400.86" x2="510.63" y2="401.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.92" y1="389.52" x2="328.92" y2="330.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.19" y1="342.27" x2="311.25" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.77" y1="324.24" x2="352.77" y2="321.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="319.8" x2="357.27" y2="316.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="318.3" x2="352.77" y2="318.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.52" y1="315.39" x2="352.77" y2="314.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="261.6" x2="282.36" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="278.7" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="277.2" y2="260.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.2" y1="260.1" x2="275.7" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="270.87" y1="263.4" x2="267.87" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.96" y1="267.9" x2="264.96" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="263.4" x2="266.46" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="266.4" x2="264.96" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.02" y1="267.15" x2="261.27" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.11" y1="257.85" x2="283.11" y2="260.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="257.85" x2="280.11" y2="257.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="248.61" y1="245.85" x2="248.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="244.2" y1="242.1" x2="241.2" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.7" y1="242.1" x2="242.7" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="245.85" x2="239.01" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.61" y1="245.85" x2="246.36" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.86" y1="244.35" x2="247.11" y2="244.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.96" y1="244.65" x2="216.96" y2="244.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="244.65" x2="218.46" y2="249.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.52" y1="248.4" x2="215.52" y2="245.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.51" y1="317.1" x2="221.76" y2="317.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="320.1" x2="227.7" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="317.1" x2="229.2" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="319.35" x2="233.61" y2="319.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="317.1" x2="232.86" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.76" y1="317.85" x2="224.01" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="332.1" x2="226.2" y2="336.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.7" y1="333.6" x2="229.2" y2="332.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="332.85" x2="230.61" y2="333.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.36" y1="334.35" x2="230.61" y2="335.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="233.61" y2="347.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="231.36" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.2" y1="347.1" x2="227.7" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.45" y1="348.6" x2="226.2" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="347.1" x2="226.2" y2="351.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.12" y1="383.4" x2="223.62" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="384.15" x2="222.87" y2="387.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="221.46" y1="383.4" x2="218.46" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.02" y1="383.4" x2="215.52" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="384.9" x2="214.02" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.02" y1="383.4" x2="214.02" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="386.4" x2="219.96" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="402.15" x2="174.72" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.22" y1="406.56" x2="174.72" y2="408.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="406.56" x2="179.22" y2="409.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.97" y1="403.65" x2="176.97" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="370.35" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="482.1" x2="374.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="482.1" x2="378.45" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.26" y1="484.35" x2="371.76" y2="484.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="371.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="367.35" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="374.76" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="485.85" x2="381.36" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="497.1" x2="380.61" y2="497.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.2" y1="500.85" x2="379.2" y2="499.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.7" y1="498.6" x2="379.2" y2="497.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="497.1" x2="376.2" y2="501.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.12" y1="548.4" x2="345.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="550.65" x2="344.37" y2="552.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.96" y1="552.9" x2="339.96" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="548.4" x2="341.46" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="551.4" x2="339.96" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.02" y1="552.15" x2="336.27" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.27" y1="572.55" x2="297.27" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.52" y1="576.24" x2="297.27" y2="576.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.52" y1="574.8" x2="292.77" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.01" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="478.68" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.65" y1="446.73" x2="488.61" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.12" y1="446.97" x2="490.11" y2="447.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.77" y1="461.76" x2="481.32" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.87" y1="461.52" x2="478.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.86" y1="461.25" x2="480.63" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="461.01" x2="478.89" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.95" y1="460.74" x2="480.36" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="460.5" x2="478.98" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="460.23" x2="480.27" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="459.99" x2="479.07" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="459.72" x2="480.33" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="459.48" x2="479.16" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.22" y1="459.21" x2="480.6" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.84" y1="458.97" x2="479.25" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.31" y1="458.7" x2="481.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.62" y1="458.46" x2="479.52" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.76" y1="458.7" x2="475.53" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="458.46" x2="480.21" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.94" y1="458.19" x2="482.22" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.95" y1="457.44" x2="475.86" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.71" y1="457.68" x2="481.53" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.23" y1="457.44" x2="485.64" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="457.17" x2="481.68" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.1" y1="456.93" x2="487.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.31" y1="456.66" x2="482.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="456.93" x2="476.19" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.98" y1="457.17" x2="482.4" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.94" y1="456.42" x2="489.0" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.48" y1="456.15" x2="483.39" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.72" y1="456.42" x2="476.7" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.4" y1="456.66" x2="483.27" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.81" y1="455.91" x2="489.96" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.32" y1="455.64" x2="484.23" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.59" y1="455.91" x2="477.39" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.03" y1="456.15" x2="484.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.68" y1="455.4" x2="490.65" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.95" y1="455.13" x2="485.16" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.46" y1="455.4" x2="478.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.84" y1="455.64" x2="485.01" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.61" y1="454.89" x2="491.19" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="454.62" x2="486.09" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.33" y1="454.89" x2="480.09" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="455.13" x2="485.91" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.54" y1="454.38" x2="491.49" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.58" y1="454.11" x2="487.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.23" y1="454.38" x2="482.25" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.33" y1="454.11" x2="487.65" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.5" y1="453.87" x2="491.64" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="453.6" x2="487.95" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.1" y1="453.87" x2="484.29" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.07" y1="453.6" x2="488.52" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.43" y1="453.36" x2="491.82" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.88" y1="453.09" x2="488.88" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.97" y1="453.36" x2="485.67" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.21" y1="453.09" x2="489.42" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.36" y1="452.85" x2="491.91" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="452.58" x2="489.45" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.6" y1="452.58" x2="486.78" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="452.34" x2="489.54" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.39" y1="452.34" x2="491.94" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.97" y1="452.07" x2="489.3" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.45" y1="452.07" x2="487.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.14" y1="451.83" x2="489.36" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.21" y1="451.83" x2="491.97" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="451.56" x2="489.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="451.56" x2="487.2" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.2" y1="451.32" x2="489.18" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.03" y1="451.32" x2="491.94" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.91" y1="451.05" x2="488.94" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.09" y1="451.05" x2="487.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.11" y1="450.81" x2="489.0" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.85" y1="450.81" x2="491.88" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.85" y1="450.54" x2="488.79" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.94" y1="450.54" x2="487.05" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.9" y1="450.3" x2="488.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.7" y1="450.3" x2="491.79" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="450.03" x2="488.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.76" y1="450.03" x2="486.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.45" y1="449.79" x2="488.67" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.52" y1="449.79" x2="491.64" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.55" y1="449.52" x2="488.43" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.58" y1="449.52" x2="486.09" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.58" y1="449.28" x2="488.49" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.34" y1="449.28" x2="491.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.28" y1="449.01" x2="488.25" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.4" y1="449.01" x2="484.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.17" y1="447.99" x2="490.41" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.17" y1="447.75" x2="477.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.76" y1="447.99" x2="483.3" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.3" y1="447.75" x2="483.84" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="447.99" x2="485.01" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="448.26" x2="490.65" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="448.5" x2="486.42" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.15" y1="448.26" x2="482.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.28" y1="448.5" x2="476.28" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.49" y1="448.26" x2="482.79" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.64" y1="449.01" x2="480.87" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.75" y1="449.28" x2="475.8" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.68" y1="449.52" x2="480.21" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.39" y1="449.28" x2="481.56" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.26" y1="449.01" x2="475.92" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.07" y1="448.77" x2="481.77" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.83" y1="448.5" x2="487.29" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.56" y1="448.77" x2="491.1" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.84" y1="447.48" x2="477.42" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.81" y1="447.24" x2="489.48" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.07" y1="446.46" x2="479.19" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.91" y1="446.22" x2="487.23" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.82" y1="445.95" x2="481.77" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.35" y1="448.77" x2="488.34" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.54" y1="452.85" x2="486.57" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="454.62" x2="481.17" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.58" y1="452.07" x2="475.05" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.02" y1="452.07" x2="475.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.05" y1="451.83" x2="475.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.56" y1="451.83" x2="479.61" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.61" y1="451.56" x2="476.04" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="451.56" x2="475.08" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.11" y1="451.32" x2="476.61" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="451.32" x2="479.67" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.73" y1="451.05" x2="477.0" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.12" y1="451.05" x2="475.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.23" y1="450.81" x2="477.63" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.48" y1="450.81" x2="479.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.0" y1="450.54" x2="477.96" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.17" y1="450.54" x2="475.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.41" y1="450.3" x2="478.68" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.44" y1="450.3" x2="480.15" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.42" y1="450.03" x2="478.95" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="450.03" x2="475.5" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="449.79" x2="479.7" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.43" y1="449.79" x2="480.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.08" y1="449.52" x2="479.91" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.81" y1="457.68" x2="484.41" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.15" y1="457.95" x2="480.39" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.63" y1="458.19" x2="475.56" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.65" y1="457.95" x2="481.08" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.64" y1="458.97" x2="475.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.21" x2="479.61" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.55" y1="459.48" x2="475.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.72" x2="479.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.46" y1="459.99" x2="475.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="460.23" x2="479.43" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="460.5" x2="475.56" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="460.74" x2="479.34" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.28" y1="461.01" x2="475.65" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.74" y1="461.25" x2="479.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="461.52" x2="475.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.89" y1="461.76" x2="479.16" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="462.03" x2="475.98" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="462.27" x2="480.06" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.06" y1="462.54" x2="486.84" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="462.27" x2="490.65" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.8" y1="462.03" x2="487.71" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.74" y1="462.27" x2="479.1" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.9" y1="462.54" x2="476.25" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.85" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.61" y1="463.05" x2="482.58" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.0" y1="463.29" x2="484.23" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.53" y1="463.05" x2="490.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="462.78" x2="485.31" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.1" y1="463.05" x2="482.01" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.74" y1="462.78" x2="476.4" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.18" y1="463.56" x2="489.39" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.72" y1="463.29" x2="483.72" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="489.0" y2="461.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.05" y1="462.78" x2="485.97" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.12" y1="462.54" x2="490.47" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="461.76" x2="488.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.61" y1="462.03" x2="484.35" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="461.76" x2="489.24" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.88" y1="461.52" x2="491.01" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="461.25" x2="489.24" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.57" y1="461.01" x2="491.25" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="460.74" x2="489.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="460.5" x2="491.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.25" y1="460.5" x2="486.72" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.81" y1="460.23" x2="491.46" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.49" y1="459.99" x2="486.9" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="459.72" x2="491.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="460.23" x2="490.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.86" y1="460.74" x2="486.57" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.39" y1="461.01" x2="490.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.05" y1="461.25" x2="486.12" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.76" y1="461.52" x2="489.63" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.06" y1="463.8" x2="477.54" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.05" y1="464.07" x2="488.64" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.13" y1="464.31" x2="478.53" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="464.58" x2="487.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.66" y1="464.82" x2="480.0" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.38" y1="465.09" x2="485.28" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.92" x2="499.02" y2="464.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.8" x2="499.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.56" x2="494.43" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.29" x2="499.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.05" x2="494.43" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.78" x2="499.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="462.54" x2="494.43" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.27" x2="511.02" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.26" y1="462.03" x2="494.43" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.76" x2="511.41" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.53" y1="461.52" x2="504.78" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="461.25" x2="511.68" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="461.01" x2="505.92" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.22" y1="460.74" x2="511.98" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.04" y1="460.5" x2="506.52" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.82" y1="460.23" x2="512.13" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.22" y1="459.99" x2="507.0" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="459.72" x2="512.28" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.37" y1="459.48" x2="507.39" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="459.21" x2="512.46" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="458.97" x2="507.66" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.78" y1="458.7" x2="512.61" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.7" y1="458.46" x2="507.9" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.99" y1="458.19" x2="512.76" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="457.95" x2="508.05" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.08" y1="457.68" x2="512.82" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.85" y1="457.44" x2="508.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="457.17" x2="512.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.94" y1="456.93" x2="508.2" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.66" x2="512.97" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="456.42" x2="508.2" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.15" x2="513.03" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.91" x2="508.2" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.64" x2="513.09" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.4" x2="508.2" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.13" x2="513.06" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="454.89" x2="508.2" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="454.62" x2="513.03" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.03" y1="454.38" x2="508.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.11" y1="454.11" x2="513.0" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="453.87" x2="508.08" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.05" y1="453.6" x2="512.97" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.97" y1="453.36" x2="507.99" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.96" y1="453.09" x2="512.94" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.91" y1="452.85" x2="507.93" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="452.58" x2="512.85" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="452.34" x2="507.84" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.72" y1="452.07" x2="512.73" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.67" y1="451.83" x2="507.63" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="451.56" x2="512.61" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="451.32" x2="507.39" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="451.05" x2="512.4" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.31" y1="450.81" x2="507.03" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.79" y1="450.54" x2="512.19" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="450.3" x2="506.49" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.16" y1="450.03" x2="511.98" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="449.79" x2="505.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.84" y1="449.52" x2="511.68" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.5" y1="449.28" x2="499.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="449.52" x2="502.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="449.79" x2="499.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.03" x2="501.21" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="450.3" x2="499.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.54" x2="500.58" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.34" y1="450.81" x2="499.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.05" x2="500.16" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.01" y1="451.32" x2="499.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.56" x2="499.89" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="451.83" x2="499.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.83" x2="494.43" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.07" x2="499.32" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.53" y1="452.34" x2="494.43" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.58" x2="499.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="452.85" x2="494.43" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.09" x2="499.29" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="453.36" x2="494.43" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.6" x2="499.2" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="453.87" x2="494.43" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.11" x2="499.14" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.38" x2="494.43" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.62" x2="499.14" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.89" x2="494.43" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.13" x2="499.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.4" x2="494.43" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.64" x2="499.14" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.91" x2="494.43" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.15" x2="499.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="456.42" x2="494.43" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.66" x2="499.11" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.11" y1="456.93" x2="494.43" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.17" x2="499.14" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="457.44" x2="494.43" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.68" x2="499.2" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="457.95" x2="494.43" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.19" x2="499.32" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.41" y1="458.46" x2="494.43" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.7" x2="499.5" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.62" y1="458.97" x2="494.43" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.21" x2="499.74" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.89" y1="459.48" x2="494.43" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.72" x2="500.04" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.25" y1="459.99" x2="494.43" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.23" x2="500.49" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.7" y1="460.5" x2="494.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.74" x2="501.0" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.33" y1="461.01" x2="494.43" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.25" x2="501.66" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.26" y1="461.52" x2="494.43" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.21" y1="464.07" x2="499.02" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="464.31" x2="496.56" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.91" y1="464.58" x2="499.02" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.31" y1="463.56" x2="509.7" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="463.8" x2="500.55" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="464.07" x2="508.95" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.53" y1="464.31" x2="501.27" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.84" y1="464.58" x2="507.99" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.36" y1="464.82" x2="502.5" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.31" y1="465.09" x2="506.19" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.03" y1="463.29" x2="500.07" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.83" y1="463.05" x2="510.33" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="462.78" x2="499.59" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="462.54" x2="510.81" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.73" y1="460.74" x2="520.89" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.74" y1="460.5" x2="515.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.26" x2="515.4" y2="459.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.94" y1="461.25" x2="521.37" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.55" y1="461.43" x2="522.12" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.51" y1="462.27" x2="531.75" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.72" y1="462.3" x2="531.21" y2="463.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.23" x2="520.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.53" y1="459.99" x2="515.52" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.49" y1="459.72" x2="520.47" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="459.48" x2="515.46" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="459.21" x2="520.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.07" y1="461.01" x2="521.55" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.7" y1="461.52" x2="516.06" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.21" y1="461.76" x2="522.18" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.53" y1="462.03" x2="525.15" y2="461.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.78" y2="451.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="453.09" x2="520.26" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.14" y1="452.85" x2="515.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.07" y1="452.58" x2="520.02" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.93" y1="452.34" x2="515.01" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="452.07" x2="519.87" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.81" y1="451.83" x2="514.95" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.56" x2="519.78" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="451.32" x2="514.95" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.05" x2="519.78" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.87" y2="450.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.01" y1="450.54" x2="519.87" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.96" y1="450.3" x2="515.04" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.1" y1="450.03" x2="520.11" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.29" y1="449.79" x2="515.13" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="449.52" x2="520.62" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.04" y1="449.28" x2="515.28" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.4" y1="449.01" x2="522.39" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.98" y1="449.01" x2="532.2" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.23" y1="448.77" x2="515.49" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="448.5" x2="532.23" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.26" y1="448.26" x2="515.7" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.88" y1="447.99" x2="527.25" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.46" y1="447.99" x2="532.29" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.35" y1="447.75" x2="527.55" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.61" y1="447.48" x2="532.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.5" y1="447.24" x2="527.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.73" y1="446.97" x2="532.56" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.62" y1="446.73" x2="527.79" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.85" y1="446.46" x2="532.71" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.46" x2="540.27" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.28" x2="535.35" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.73" x2="535.35" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.97" x2="540.27" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.24" x2="535.35" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.48" x2="540.27" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.75" x2="535.35" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.99" x2="540.27" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.26" x2="535.35" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="448.5" x2="540.27" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.77" x2="535.35" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="449.01" x2="540.27" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.28" x2="535.35" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="449.52" x2="540.27" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.79" x2="535.38" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.03" x2="540.27" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.3" x2="535.38" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.54" x2="540.27" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.81" x2="535.38" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.05" x2="540.27" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.32" x2="535.38" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.56" x2="540.27" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.83" x2="535.38" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.07" x2="540.27" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.34" x2="535.38" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.58" x2="540.27" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.85" x2="535.38" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.09" x2="540.27" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.36" x2="535.38" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.6" x2="540.27" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.87" x2="535.38" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.11" x2="540.27" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.38" x2="535.38" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.62" x2="540.27" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.89" x2="535.38" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.13" x2="540.27" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="455.4" x2="535.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.64" x2="540.3" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.3" y1="455.91" x2="535.38" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.15" x2="540.33" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.36" y1="456.42" x2="535.38" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.66" x2="540.39" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.45" y1="456.93" x2="535.38" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.17" x2="540.51" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.6" y1="457.44" x2="535.38" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.68" x2="540.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.81" y1="457.95" x2="535.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.19" x2="540.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.02" y1="458.46" x2="535.38" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.7" x2="541.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.41" y1="458.97" x2="535.38" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.21" x2="541.59" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.86" y1="459.48" x2="535.38" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.72" x2="542.16" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.46" y1="459.99" x2="535.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.23" x2="542.91" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.54" y1="460.5" x2="535.38" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.74" x2="547.14" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.01" x2="535.38" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.25" x2="539.97" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.21" y1="461.25" x2="547.14" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.52" x2="540.42" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.57" y1="461.76" x2="547.14" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.03" x2="540.75" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.9" y1="462.27" x2="547.14" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.54" x2="541.08" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.26" y1="462.78" x2="547.14" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.05" x2="541.44" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.65" y1="463.29" x2="547.14" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.56" x2="541.98" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.34" y1="463.8" x2="547.14" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.07" x2="542.73" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.12" y1="464.31" x2="547.14" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.58" x2="543.54" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="544.05" y1="464.82" x2="547.14" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.66" y1="465.09" x2="545.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.09" x2="554.25" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.33" x2="549.36" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.6" x2="554.25" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.84" x2="549.36" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.11" x2="554.25" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.35" x2="549.36" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.62" x2="554.25" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.86" x2="549.36" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.13" x2="554.25" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.37" x2="549.36" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.64" x2="554.25" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.88" x2="549.36" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.15" x2="554.25" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.39" x2="549.36" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.66" x2="554.25" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.9" x2="549.36" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="469.02" x2="554.25" y2="471.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="469.17" x2="554.25" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.41" x2="550.08" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="550.53" y1="469.68" x2="554.25" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.92" x2="550.98" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.43" y1="470.19" x2="554.25" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.43" x2="551.85" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="552.3" y1="470.7" x2="554.25" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.94" x2="552.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.2" y1="471.21" x2="554.25" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="471.45" x2="553.65" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.1" y1="471.72" x2="554.25" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.72" x2="562.41" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.62" y1="471.96" x2="560.04" y2="471.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.23" x2="562.86" y2="472.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.07" y1="472.47" x2="560.04" y2="472.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.74" x2="563.31" y2="472.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.52" y1="472.98" x2="560.04" y2="472.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.25" x2="563.76" y2="473.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="473.49" x2="560.04" y2="473.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.76" x2="564.21" y2="473.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.42" y1="474.0" x2="560.04" y2="474.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.27" x2="564.66" y2="474.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.9" y1="474.51" x2="560.04" y2="474.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.78" x2="565.11" y2="474.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.35" y1="475.02" x2="560.04" y2="475.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.29" x2="565.56" y2="475.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.53" x2="560.04" y2="475.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.8" x2="566.07" y2="475.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.56" x2="566.82" y2="476.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="490.32" x2="571.05" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="490.08" x2="571.05" y2="489.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.34" y1="476.04" x2="560.04" y2="476.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.31" x2="566.64" y2="476.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="476.55" x2="560.04" y2="476.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.82" x2="567.36" y2="476.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.81" y1="477.06" x2="560.04" y2="477.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.33" x2="568.35" y2="477.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.09" y1="477.57" x2="560.04" y2="477.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.84" x2="574.11" y2="477.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.92" y1="478.08" x2="560.04" y2="478.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.35" x2="575.46" y2="478.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="478.59" x2="560.04" y2="478.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.86" x2="576.42" y2="478.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.78" y1="479.1" x2="560.04" y2="479.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.37" x2="577.14" y2="479.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.5" y1="479.61" x2="560.04" y2="479.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.88" x2="577.8" y2="479.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.07" y1="480.12" x2="560.04" y2="480.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.39" x2="578.34" y2="480.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.61" y1="480.63" x2="560.04" y2="480.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.9" x2="578.88" y2="480.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.09" y1="481.14" x2="560.04" y2="481.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.41" x2="579.27" y2="481.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.48" y1="481.65" x2="560.04" y2="481.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.92" x2="579.69" y2="481.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.9" y1="482.16" x2="560.04" y2="482.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.43" x2="580.02" y2="482.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.17" y1="482.67" x2="560.04" y2="482.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.94" x2="580.32" y2="482.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.47" y1="483.18" x2="560.04" y2="483.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.45" x2="580.62" y2="483.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.74" y1="483.69" x2="560.04" y2="483.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.96" x2="580.89" y2="483.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.01" y1="484.2" x2="560.04" y2="484.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.47" x2="581.1" y2="484.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="484.71" x2="560.04" y2="484.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.98" x2="581.28" y2="484.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.37" y1="485.22" x2="560.04" y2="485.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="485.49" x2="581.46" y2="485.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.55" y1="485.73" x2="560.04" y2="485.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.0" x2="581.64" y2="486.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.73" y1="486.24" x2="560.04" y2="486.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.51" x2="581.76" y2="486.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="486.75" x2="560.04" y2="486.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="487.02" x2="567.18" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.93" y1="487.02" x2="581.85" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.88" y1="487.26" x2="568.98" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.55" y1="487.53" x2="581.94" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.97" y1="487.77" x2="569.97" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.27" y1="488.04" x2="582.0" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="488.28" x2="570.51" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.69" y1="488.55" x2="582.09" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="488.79" x2="570.84" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="489.06" x2="582.06" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="489.3" x2="571.02" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.05" y1="489.57" x2="582.06" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="489.81" x2="571.08" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="490.59" x2="582.03" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.0" y1="490.83" x2="570.93" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.81" y1="491.1" x2="581.97" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.91" y1="491.34" x2="570.69" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.51" y1="491.61" x2="581.85" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.79" y1="491.85" x2="570.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.06" y1="492.12" x2="581.73" y2="492.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.64" y1="492.36" x2="569.82" y2="492.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.58" y1="492.63" x2="581.55" y2="492.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="492.87" x2="569.34" y2="492.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.1" y1="493.14" x2="581.37" y2="493.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.25" y1="493.38" x2="568.86" y2="493.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.62" y1="493.65" x2="581.13" y2="493.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.98" y1="493.89" x2="568.41" y2="493.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.23" y1="494.16" x2="580.86" y2="494.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.68" y1="494.4" x2="568.05" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.9" y1="494.67" x2="575.73" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="494.91" x2="567.72" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.54" y1="495.18" x2="574.89" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.53" y1="495.42" x2="567.36" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="495.69" x2="574.17" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.87" y1="495.93" x2="567.06" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="496.2" x2="573.6" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="496.44" x2="566.85" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.76" y1="496.71" x2="573.21" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.03" y1="496.95" x2="566.73" y2="496.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.7" y1="497.22" x2="572.88" y2="497.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.79" y1="497.46" x2="566.67" y2="497.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="497.73" x2="572.67" y2="497.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.61" y1="497.97" x2="566.7" y2="497.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.73" y1="498.24" x2="572.58" y2="498.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.58" y1="498.48" x2="566.79" y2="498.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="498.75" x2="572.64" y2="498.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.73" y1="498.99" x2="567.0" y2="498.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.12" y1="499.26" x2="572.82" y2="499.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.97" y1="499.5" x2="567.3" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="499.77" x2="573.12" y2="499.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="500.01" x2="567.69" y2="500.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.96" y1="500.28" x2="573.66" y2="500.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.14" y1="500.52" x2="568.23" y2="500.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.53" y1="500.79" x2="575.19" y2="500.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.52" y1="501.3" x2="569.22" y2="501.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.89" y1="501.03" x2="575.91" y2="501.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.18" y1="500.82" x2="576.18" y2="500.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.95" y1="501.54" x2="569.7" y2="501.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.21" y1="501.81" x2="574.35" y2="501.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="502.05" x2="571.14" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.71" x2="578.43" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.44" x2="578.73" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.06" y1="496.2" x2="578.34" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="495.93" x2="579.36" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.66" y1="495.69" x2="578.34" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.28" y1="495.42" x2="579.87" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.08" y1="495.18" x2="578.1" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.86" y1="494.91" x2="580.29" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.5" y1="494.67" x2="577.5" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.92" y1="491.34" x2="562.95" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.41" y1="491.1" x2="565.56" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.23" y1="490.83" x2="561.99" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.66" y1="490.59" x2="564.87" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.69" y1="490.32" x2="561.36" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.15" y1="490.08" x2="564.6" y2="490.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.54" y1="489.81" x2="560.94" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.76" y1="489.57" x2="564.51" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.51" y1="489.3" x2="560.64" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="489.06" x2="564.54" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.6" y1="488.79" x2="560.37" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.31" y1="488.55" x2="564.69" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.84" y1="488.28" x2="560.22" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.16" y1="488.04" x2="565.02" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.26" y1="487.77" x2="560.13" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.1" y1="487.53" x2="565.65" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.1" y1="487.26" x2="560.07" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.45" y1="491.61" x2="565.17" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.17" y1="471.45" x2="560.04" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.21" x2="561.93" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.72" y1="470.94" x2="560.04" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.7" x2="561.48" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="470.43" x2="560.04" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.19" x2="561.03" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.82" y1="469.92" x2="560.04" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.68" x2="560.58" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="469.41" x2="560.04" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.17" x2="560.13" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.88" y1="464.58" x2="566.4" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.16" y1="464.31" x2="560.64" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="464.07" x2="565.89" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.62" y1="463.8" x2="560.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="463.56" x2="565.35" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.11" y1="463.29" x2="559.62" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.35" y1="463.05" x2="564.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.57" y1="462.78" x2="559.11" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.84" y1="462.54" x2="564.33" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.06" y1="462.27" x2="558.6" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.33" y1="462.03" x2="563.79" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.55" y1="461.76" x2="558.09" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.82" y1="461.52" x2="563.28" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.01" y1="461.25" x2="557.58" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.31" y1="461.01" x2="562.77" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.5" y1="460.74" x2="557.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.8" y1="460.5" x2="562.23" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.96" y1="460.23" x2="556.56" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.29" y1="459.99" x2="561.72" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.45" y1="459.72" x2="556.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.78" y1="459.48" x2="561.18" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.94" y1="459.21" x2="555.54" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.27" y1="458.97" x2="560.67" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.4" y1="458.7" x2="555.03" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.76" y1="458.46" x2="560.16" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="458.19" x2="554.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.19" x2="549.36" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.95" x2="559.74" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="457.68" x2="549.36" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.44" x2="560.07" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.25" y1="457.17" x2="549.36" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.93" x2="560.4" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.58" y1="456.66" x2="549.36" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.42" x2="560.76" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.91" y1="456.15" x2="549.36" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.91" x2="561.09" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="455.64" x2="549.36" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.4" x2="561.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.6" y1="455.13" x2="549.36" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.89" x2="561.78" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.93" y1="454.62" x2="556.47" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.44" y1="454.62" x2="549.36" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.38" x2="556.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.9" y1="454.11" x2="549.36" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.87" x2="555.66" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.39" y1="453.6" x2="549.36" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.36" x2="555.12" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="453.09" x2="549.36" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.85" x2="554.61" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.34" y1="452.58" x2="549.36" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.34" x2="554.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="452.07" x2="549.36" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.83" x2="554.31" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.56" x2="549.36" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.32" x2="554.31" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.05" x2="549.36" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.81" x2="554.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.54" x2="549.36" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.3" x2="554.31" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.03" x2="549.36" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.79" x2="554.31" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.52" x2="549.36" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.28" x2="554.31" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.01" x2="549.36" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.77" x2="554.31" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="448.5" x2="549.36" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.26" x2="554.31" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.99" x2="549.36" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.75" x2="554.31" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.48" x2="549.36" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.24" x2="554.31" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.97" x2="549.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.73" x2="554.31" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.46" x2="549.36" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.22" x2="554.31" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.56" y1="449.52" x2="565.35" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.5" y1="449.28" x2="559.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="449.01" x2="565.68" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.86" y1="448.77" x2="560.01" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.19" y1="448.5" x2="566.01" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.19" y1="448.26" x2="560.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="447.99" x2="566.37" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.52" y1="447.75" x2="560.64" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.79" y1="447.48" x2="566.7" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="447.24" x2="560.94" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.12" y1="446.97" x2="567.03" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="446.73" x2="561.27" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.42" y1="446.46" x2="567.39" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.46" x2="575.85" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.22" x2="570.93" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.16" x2="575.85" y2="446.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.73" x2="575.85" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.97" x2="570.93" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.24" x2="575.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.48" x2="570.93" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.75" x2="575.85" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.99" x2="570.93" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.26" x2="575.85" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="448.5" x2="570.93" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.77" x2="575.85" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.01" x2="570.93" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.28" x2="575.85" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.52" x2="570.93" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.79" x2="575.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.03" x2="570.93" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.3" x2="575.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.54" x2="570.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.81" x2="575.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.05" x2="570.93" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.32" x2="575.85" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.56" x2="570.93" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.83" x2="575.85" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.07" x2="570.93" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.34" x2="575.85" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.58" x2="570.93" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.85" x2="575.85" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.09" x2="570.93" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.36" x2="575.85" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.6" x2="570.93" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.87" x2="575.85" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.11" x2="570.93" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.38" x2="575.85" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.62" x2="570.93" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.89" x2="575.85" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.13" x2="570.93" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.4" x2="575.85" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.64" x2="570.93" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.91" x2="575.85" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.15" x2="570.93" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.42" x2="575.85" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.66" x2="570.93" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.93" x2="575.85" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.17" x2="570.93" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.44" x2="575.85" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.68" x2="570.93" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.95" x2="575.85" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.19" x2="570.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.46" x2="575.85" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.7" x2="570.93" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.97" x2="575.85" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.21" x2="570.93" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.48" x2="575.85" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.72" x2="570.93" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.99" x2="575.85" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.23" x2="570.93" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="460.5" x2="575.85" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.74" x2="570.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.01" x2="575.85" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="461.25" x2="570.93" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.52" x2="575.85" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="464.82" x2="570.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.99" y1="465.09" x2="575.88" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.33" x2="571.02" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="465.6" x2="575.88" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.84" x2="571.05" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="466.11" x2="575.88" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="466.35" x2="571.08" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="466.62" x2="575.94" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="466.86" x2="571.14" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.17" y1="467.13" x2="576.06" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.15" y1="467.37" x2="571.17" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.2" y1="467.64" x2="576.33" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.6" y1="467.88" x2="571.23" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.32" y1="468.15" x2="577.41" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.0" y1="468.15" x2="579.72" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.39" x2="571.38" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.5" y1="468.66" x2="579.72" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.9" x2="571.62" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.77" y1="469.17" x2="579.72" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.41" x2="571.95" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.13" y1="469.68" x2="579.72" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.92" x2="572.4" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="470.19" x2="579.72" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.43" x2="572.94" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="470.7" x2="579.72" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.94" x2="573.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.23" y1="471.21" x2="579.72" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="471.45" x2="574.89" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.12" y1="471.72" x2="578.7" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.58" x2="569.25" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.01" y1="464.31" x2="579.39" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.07" x2="568.74" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.5" y1="463.8" x2="579.39" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.56" x2="568.23" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.99" y1="463.29" x2="579.39" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.05" x2="567.72" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="462.78" x2="579.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.54" x2="567.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.97" y1="462.27" x2="579.39" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.03" x2="566.7" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.46" y1="461.76" x2="579.39" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.76" x2="586.02" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.52" x2="581.13" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.25" x2="586.02" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.01" x2="581.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.74" x2="586.02" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="460.5" x2="581.13" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.23" x2="586.02" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.99" x2="581.13" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.72" x2="586.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.48" x2="581.13" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.21" x2="586.02" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.97" x2="581.13" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.7" x2="586.02" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.46" x2="581.13" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.19" x2="586.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.95" x2="581.13" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.68" x2="586.02" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.44" x2="581.13" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.17" x2="586.02" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.93" x2="581.13" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.66" x2="586.02" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.42" x2="581.13" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.15" x2="586.02" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.91" x2="581.13" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.64" x2="586.02" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.4" x2="581.13" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.13" x2="586.02" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.89" x2="581.13" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.62" x2="586.02" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.38" x2="581.13" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.11" x2="586.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.87" x2="581.13" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.6" x2="586.02" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.36" x2="581.13" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.09" x2="586.02" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="452.94" x2="586.02" y2="464.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.05" y1="452.85" x2="581.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.58" x2="586.08" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.14" y1="452.34" x2="581.13" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.07" x2="586.17" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.26" y1="451.83" x2="581.16" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="451.56" x2="586.38" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.47" y1="451.32" x2="581.19" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.22" y1="451.05" x2="586.59" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.77" y1="450.81" x2="581.25" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.31" y1="450.54" x2="586.95" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="587.25" y1="450.3" x2="581.37" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="450.03" x2="587.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="588.18" y1="449.79" x2="581.52" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.58" y1="449.52" x2="589.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.86" y1="449.52" x2="598.5" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="449.28" x2="581.7" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="449.01" x2="593.7" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="449.01" x2="598.5" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.77" x2="593.76" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="448.5" x2="598.5" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.26" x2="593.76" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.99" x2="598.5" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.75" x2="593.76" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.48" x2="598.5" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.24" x2="593.76" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.97" x2="598.5" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="446.73" x2="593.76" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.46" x2="598.5" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.46" x2="606.42" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.22" x2="601.44" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.16" x2="601.44" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.25" x2="609.09" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.43" y1="461.01" x2="607.86" y2="460.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.95" x2="606.51" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.54" y1="458.19" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="456.66" x2="606.42" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.93" x2="601.44" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.17" x2="606.42" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.45" y1="457.44" x2="601.44" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.68" x2="606.48" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.6" y1="458.46" x2="601.44" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="458.7" x2="606.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.75" y1="458.97" x2="601.44" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.21" x2="606.87" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="459.48" x2="601.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.72" x2="607.14" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.29" y1="459.99" x2="601.44" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.23" x2="607.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.77" y1="460.5" x2="601.44" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.74" x2="608.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.57" y1="462.27" x2="618.0" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.12" y1="462.03" x2="601.44" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.27" x2="606.21" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.3" y2="462.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.21" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.73" x2="606.42" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.97" x2="601.44" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.24" x2="606.42" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.48" x2="601.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.75" x2="606.42" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.99" x2="601.44" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.26" x2="606.42" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="448.5" x2="601.44" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.77" x2="606.42" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.01" x2="601.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.28" x2="606.42" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.52" x2="601.44" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.79" x2="606.42" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.03" x2="601.44" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.3" x2="606.42" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.54" x2="601.44" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.81" x2="606.42" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.05" x2="601.44" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.32" x2="606.42" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.56" x2="601.44" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.83" x2="606.42" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.07" x2="601.44" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.34" x2="606.42" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.58" x2="601.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.85" x2="606.42" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.09" x2="601.44" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.36" x2="606.42" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.6" x2="601.44" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.87" x2="606.42" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.11" x2="601.44" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.38" x2="606.42" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.62" x2="601.44" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.89" x2="606.42" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.13" x2="601.44" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.4" x2="606.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.64" x2="601.44" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.91" x2="606.42" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.15" x2="601.44" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.15" x2="593.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.91" x2="598.5" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.64" x2="593.52" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.4" x2="598.5" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.13" x2="593.52" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="454.89" x2="598.5" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.62" x2="593.52" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="454.38" x2="598.5" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.11" x2="593.49" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.46" y1="453.87" x2="598.5" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.6" x2="593.46" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.43" y1="453.36" x2="598.5" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.09" x2="593.37" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.34" y1="452.85" x2="598.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.58" x2="593.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.25" y1="452.34" x2="598.5" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.07" x2="593.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="451.83" x2="598.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.56" x2="593.01" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.92" y1="451.32" x2="598.5" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.05" x2="592.74" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.59" y1="450.81" x2="598.5" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.54" x2="592.35" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="450.3" x2="598.5" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.03" x2="591.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.15" y1="449.79" x2="598.5" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="448.77" x2="581.94" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.09" y1="448.5" x2="593.31" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="448.26" x2="582.21" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.39" y1="447.99" x2="592.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.62" y1="447.75" x2="582.6" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.78" y1="447.48" x2="592.35" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="447.24" x2="582.96" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.26" y1="446.97" x2="591.78" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.42" y1="446.73" x2="583.68" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.13" y1="446.46" x2="591.06" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.64" y1="446.22" x2="584.7" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.45" y1="445.95" x2="589.53" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.42" x2="598.5" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.66" x2="593.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.93" x2="598.5" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.17" x2="593.52" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.44" x2="598.5" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.68" x2="593.52" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.95" x2="598.5" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.19" x2="593.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.46" x2="598.5" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.7" x2="593.52" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.97" x2="598.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.21" x2="593.52" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.48" x2="598.5" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.72" x2="593.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.99" x2="598.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.23" x2="593.52" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="460.5" x2="598.5" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.74" x2="593.52" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.01" x2="598.5" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.25" x2="593.52" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.52" x2="598.5" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.76" x2="593.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.03" x2="598.5" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.27" x2="593.52" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.54" x2="598.5" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.78" x2="593.52" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.05" x2="598.5" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.29" x2="593.52" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.56" x2="598.5" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.8" x2="593.52" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.07" x2="598.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="464.31" x2="593.52" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.58" x2="598.5" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.58" x2="606.21" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="464.31" x2="601.44" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.07" x2="606.21" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.8" x2="601.44" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.56" x2="606.21" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.29" x2="601.44" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.05" x2="606.21" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.78" x2="601.44" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.54" x2="606.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.3" y1="462.12" x2="606.42" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="462.54" x2="617.85" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.7" y1="462.78" x2="606.96" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.17" y1="463.05" x2="617.52" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.31" y1="463.29" x2="607.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.65" y1="463.56" x2="617.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.8" y1="463.8" x2="607.92" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.31" y1="464.07" x2="616.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.17" y1="464.31" x2="608.7" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.12" y1="464.58" x2="615.66" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.12" y1="464.82" x2="609.81" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.89" y1="465.09" x2="614.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.94" y1="461.25" x2="618.39" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.45" y1="461.01" x2="612.45" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.75" y1="460.74" x2="618.51" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.57" y1="460.5" x2="612.99" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="460.23" x2="618.6" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.66" y1="459.99" x2="613.32" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.01" y1="463.65" x2="617.46" y2="463.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.3" y1="461.52" x2="601.44" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.76" x2="618.21" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.69" y1="459.72" x2="613.44" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.59" y1="459.48" x2="618.69" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.72" y1="459.21" x2="613.65" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.74" y1="458.97" x2="618.75" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.73" x2="618.75" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="457.44" x2="613.92" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.17" x2="618.75" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.93" x2="613.92" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.66" x2="618.75" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.42" x2="613.92" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.15" x2="618.75" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.91" x2="613.92" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.64" x2="618.75" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.4" x2="613.92" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.13" x2="618.75" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.89" x2="613.92" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.62" x2="618.75" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.38" x2="613.92" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.11" x2="618.75" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.87" x2="613.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.6" x2="618.75" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.36" x2="613.92" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.09" x2="618.75" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.85" x2="613.92" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.58" x2="618.75" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.34" x2="613.92" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.07" x2="618.75" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.83" x2="613.92" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.56" x2="618.75" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.32" x2="613.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.05" x2="618.75" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.81" x2="613.92" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.54" x2="618.75" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.3" x2="613.92" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.03" x2="618.75" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.79" x2="613.92" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.52" x2="618.75" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.28" x2="613.92" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.01" x2="618.75" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.77" x2="613.92" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="448.5" x2="618.75" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.26" x2="613.92" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.99" x2="618.75" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.75" x2="613.92" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.48" x2="618.75" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.24" x2="613.92" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.97" x2="618.75" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="446.73" x2="613.92" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.46" x2="618.75" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="465.15" x2="612.69" y2="465.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.89" y1="465.09" x2="614.58" y2="464.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.7" x2="613.8" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="458.46" x2="618.75" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.19" x2="613.89" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.95" x2="618.75" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="459.09" x2="606.6" y2="458.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.78" y1="458.73" x2="618.72" y2="459.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.52" y1="465.18" x2="610.77" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.69" y1="462.36" x2="606.54" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="608.31" y2="460.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.07" y1="461.43" x2="611.46" y2="461.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.01" y1="463.89" x2="607.47" y2="463.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="613.53" y2="459.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="612.96" y2="460.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="607.44" y2="460.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="457.38" x2="629.22" y2="459.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.89" y1="457.44" x2="633.81" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="457.17" x2="628.86" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="456.93" x2="633.78" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.75" y1="456.66" x2="628.86" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="456.42" x2="633.72" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="456.15" x2="628.83" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="455.91" x2="633.72" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="455.64" x2="628.83" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="455.4" x2="633.75" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="455.13" x2="628.8" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.89" x2="633.81" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.81" y1="454.62" x2="628.8" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.38" x2="633.84" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.87" y1="454.11" x2="628.83" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="453.87" x2="633.93" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.99" y1="453.6" x2="628.89" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="453.36" x2="634.05" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="453.09" x2="628.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.01" y1="452.85" x2="634.14" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.2" y1="452.58" x2="629.07" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="452.34" x2="634.26" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.38" y1="452.07" x2="629.22" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.28" y1="451.83" x2="634.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.62" y1="451.56" x2="629.37" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.49" y1="451.32" x2="634.77" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="451.05" x2="629.61" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.73" y1="450.81" x2="635.16" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.43" y1="450.54" x2="629.85" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="450.3" x2="635.73" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="450.03" x2="630.12" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.3" y1="449.79" x2="636.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.56" y1="449.52" x2="630.48" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.63" y1="449.28" x2="645.81" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.99" y1="449.52" x2="639.54" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.29" y1="449.79" x2="646.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.32" y1="450.03" x2="640.8" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.13" y1="450.3" x2="646.47" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.62" y1="450.54" x2="641.43" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.64" y1="450.81" x2="646.74" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.83" y1="451.05" x2="641.85" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.0" y1="451.32" x2="646.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.04" y1="451.56" x2="642.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.24" y1="451.83" x2="647.13" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.22" y1="452.07" x2="642.33" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.42" y1="452.34" x2="647.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.34" y1="452.58" x2="642.51" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.54" y1="452.85" x2="647.37" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.4" y1="453.09" x2="642.57" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.63" y1="449.01" x2="630.84" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.08" y1="448.77" x2="645.39" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.12" y1="448.5" x2="631.32" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.56" y1="448.26" x2="644.88" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.61" y1="447.99" x2="631.83" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.16" y1="447.75" x2="644.34" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="447.48" x2="632.49" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.88" y1="447.24" x2="643.56" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.2" y1="446.97" x2="633.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.84" y1="446.73" x2="642.72" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.12" y1="446.46" x2="634.59" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.52" y1="446.22" x2="641.4" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.38" y1="445.95" x2="636.93" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.45" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="457.68" x2="633.9" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.96" y1="457.95" x2="628.98" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.04" y1="458.19" x2="634.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="458.46" x2="629.1" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="458.7" x2="634.17" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.29" y1="458.97" x2="629.19" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.25" y1="459.21" x2="634.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.56" y1="459.48" x2="629.37" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.46" y1="459.72" x2="634.68" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.8" y1="459.99" x2="629.58" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.67" y1="460.23" x2="635.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.19" y1="460.5" x2="629.79" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.88" y1="460.74" x2="635.37" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.58" y1="461.01" x2="630.03" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.21" y1="461.25" x2="635.85" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.24" y1="461.52" x2="630.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.54" y1="461.76" x2="637.05" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.9" y1="461.76" x2="646.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.53" y1="461.52" x2="640.62" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.04" y1="461.25" x2="646.65" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.74" y1="461.01" x2="641.37" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.61" y1="460.74" x2="646.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.92" y1="460.5" x2="641.82" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.97" y1="460.23" x2="647.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.1" y1="459.99" x2="642.12" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.21" y1="459.72" x2="647.13" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.19" y1="459.48" x2="642.3" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.33" y1="459.21" x2="647.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.28" y1="458.97" x2="642.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="458.7" x2="647.34" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="458.19" x2="654.09" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.03" y1="457.95" x2="649.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.32" y1="457.68" x2="654.0" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="457.44" x2="649.26" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="457.17" x2="653.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="457.14" x2="653.82" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="459.72" x2="654.6" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.48" y1="459.48" x2="649.71" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.68" y1="459.21" x2="654.36" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="458.97" x2="649.62" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.56" y1="458.7" x2="654.18" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="653.88" y2="457.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.93" x2="649.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.08" y1="456.66" x2="653.88" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.64" y1="456.36" x2="668.58" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.44" y1="451.32" x2="662.79" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.91" y1="451.56" x2="667.5" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.83" x2="663.03" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.15" y1="452.07" x2="667.65" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.71" y1="452.34" x2="663.24" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.36" y1="452.58" x2="667.8" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="452.85" x2="663.45" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.51" y1="453.09" x2="667.92" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.01" y1="453.36" x2="663.57" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.63" y1="453.6" x2="668.07" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.13" y1="453.87" x2="663.69" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="454.11" x2="668.16" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="454.38" x2="663.81" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="454.62" x2="668.25" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.28" y1="454.89" x2="663.84" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.13" x2="668.31" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.34" y1="455.4" x2="663.84" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.64" x2="668.37" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.4" y1="455.91" x2="663.84" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="456.15" x2="668.43" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.43" y1="456.42" x2="663.84" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.78" y1="456.66" x2="668.4" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.37" y1="456.93" x2="663.75" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.72" y1="457.17" x2="668.34" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.31" y1="457.44" x2="663.69" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.66" y1="457.68" x2="668.28" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="457.95" x2="663.63" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.6" y1="458.19" x2="668.19" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.16" y1="458.46" x2="663.57" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.48" y1="458.7" x2="668.13" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.07" y1="458.97" x2="663.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.24" y1="459.21" x2="667.98" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="459.48" x2="663.12" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.0" y1="459.72" x2="667.74" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="459.99" x2="662.88" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="460.23" x2="667.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.41" y1="460.5" x2="662.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.4" y1="460.74" x2="667.29" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.17" y1="461.01" x2="662.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.86" y1="461.25" x2="667.05" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.96" y1="461.52" x2="661.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.11" y1="461.76" x2="666.78" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.57" y1="462.03" x2="660.63" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.89" y1="462.27" x2="666.36" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.12" y1="462.54" x2="658.92" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="462.78" x2="665.91" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="463.05" x2="658.92" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.29" x2="665.4" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.04" y1="463.56" x2="658.92" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.8" x2="664.65" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.29" y1="464.07" x2="658.92" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.31" x2="663.93" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.57" y1="464.58" x2="658.95" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.82" x2="663.12" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="465.09" x2="658.95" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.33" x2="661.65" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.15" y1="465.6" x2="658.95" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="658.77" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.26" y2="462.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.27" x2="651.42" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.21" y1="462.03" x2="656.97" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.49" y1="461.76" x2="651.03" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.82" y1="461.52" x2="656.04" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.62" y1="461.25" x2="650.61" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.43" y1="461.01" x2="655.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="460.74" x2="650.22" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.01" y1="460.5" x2="655.08" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="460.23" x2="649.89" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.5" y1="458.46" x2="654.15" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="654.69" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.42" x2="649.02" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.96" y1="456.15" x2="653.85" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.91" x2="649.02" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.05" y1="455.64" x2="653.85" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.4" x2="649.08" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="455.13" x2="653.85" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.82" y1="454.89" x2="649.17" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="454.62" x2="653.88" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.91" y1="454.38" x2="649.26" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.29" y1="454.11" x2="653.94" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.97" y1="453.87" x2="649.32" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.38" y1="453.6" x2="654.0" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="453.36" x2="649.41" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="453.09" x2="654.15" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="452.85" x2="649.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.53" y1="452.58" x2="654.3" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.39" y1="452.34" x2="649.56" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.62" y1="452.07" x2="654.48" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.6" y1="451.83" x2="649.65" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.71" y1="451.56" x2="654.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.32" x2="649.86" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.04" y1="451.05" x2="654.99" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.14" y1="450.81" x2="650.19" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.37" y1="450.54" x2="655.53" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.95" y1="450.3" x2="650.52" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.67" y1="450.03" x2="656.34" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.76" y1="449.79" x2="650.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.0" y1="449.52" x2="657.3" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.03" y1="449.52" x2="666.45" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.6" y1="449.79" x2="660.78" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.47" y1="450.03" x2="666.78" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.93" y1="450.3" x2="661.74" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.04" y1="450.54" x2="667.08" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.26" y1="450.81" x2="662.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.58" y1="451.05" x2="667.38" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.24" y1="449.28" x2="651.18" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.33" y1="449.01" x2="665.97" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="448.77" x2="651.51" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="448.5" x2="665.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.19" y1="448.26" x2="652.2" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="447.99" x2="664.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.53" y1="447.75" x2="653.01" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.43" y1="447.48" x2="664.17" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.81" y1="447.24" x2="653.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="446.97" x2="663.24" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.49" y1="446.73" x2="654.66" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.5" y1="446.46" x2="661.74" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.94" y1="446.22" x2="657.39" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="656.55" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="651.36" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.69" y1="455.31" x2="663.66" y2="456.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="648.99" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="451.65" x2="663.15" y2="452.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.65" x2="654.57" y2="452.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.39" y1="458.31" x2="663.15" y2="459.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.89" y1="461.04" x2="661.5" y2="461.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.53" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.6" x2="656.67" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.98" y1="465.33" x2="658.38" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.09" x2="655.47" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.96" y1="464.82" x2="658.38" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.58" x2="654.45" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="464.31" x2="658.38" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.07" x2="653.4" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.89" y1="463.8" x2="658.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.56" x2="652.44" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.23" y1="463.29" x2="658.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.05" x2="652.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="462.78" x2="658.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.54" x2="651.63" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.23" y1="462.03" x2="630.72" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.87" y1="462.27" x2="646.08" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.93" y1="462.54" x2="631.11" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.38" y1="462.78" x2="645.75" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.51" y1="463.05" x2="631.62" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.86" y1="463.29" x2="645.27" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.03" y1="463.56" x2="632.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.46" y1="463.8" x2="644.76" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.4" y1="464.07" x2="632.85" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.21" y1="464.31" x2="644.01" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.62" y1="464.58" x2="633.57" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.14" y1="464.82" x2="643.02" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="465.09" x2="634.71" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.31" y1="465.33" x2="641.37" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.02" y1="465.6" x2="636.48" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="655.71" y2="461.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.7" y1="446.52" x2="661.65" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.05" y1="450.03" x2="661.56" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.14" x2="667.23" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.46" x2="675.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.28" x2="670.59" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.72" x2="694.5" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.59" y1="459.48" x2="694.2" y2="460.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.73" x2="670.59" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.97" x2="675.69" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.24" x2="670.59" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.48" x2="675.69" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.75" x2="670.59" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.99" x2="675.69" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.26" x2="670.59" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="448.5" x2="675.69" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.77" x2="670.59" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.01" x2="675.69" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.28" x2="670.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.52" x2="675.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.79" x2="670.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.03" x2="675.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.3" x2="670.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.54" x2="675.69" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.81" x2="670.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.05" x2="675.69" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.32" x2="670.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.56" x2="675.69" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.83" x2="670.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.07" x2="675.69" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.34" x2="670.59" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.58" x2="675.69" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.85" x2="670.59" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.09" x2="675.69" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.36" x2="670.59" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.6" x2="675.69" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.87" x2="670.59" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.11" x2="675.69" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.38" x2="670.59" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.62" x2="675.69" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.89" x2="670.59" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.13" x2="675.69" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.4" x2="670.59" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.64" x2="675.69" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.91" x2="670.59" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.15" x2="675.69" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.42" x2="670.59" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.66" x2="675.69" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.93" x2="670.59" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.17" x2="675.69" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.44" x2="670.59" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.68" x2="675.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.95" x2="670.59" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.19" x2="675.69" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="458.46" x2="670.59" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.7" x2="675.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.75" y1="458.97" x2="670.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.21" x2="675.81" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.9" y1="459.48" x2="670.59" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.72" x2="676.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.17" y1="459.99" x2="670.59" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.23" x2="676.38" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.59" y1="460.5" x2="670.59" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.74" x2="676.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.04" y1="461.01" x2="670.59" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.25" x2="677.31" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.67" y1="461.52" x2="670.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.76" x2="678.42" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="680.49" y1="461.76" x2="690.3" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.52" y1="461.52" x2="681.12" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.48" y1="461.25" x2="689.13" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.83" y1="461.01" x2="681.75" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.93" y1="460.74" x2="688.65" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.47" y1="460.5" x2="682.11" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.26" y1="460.23" x2="688.29" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.17" y1="459.99" x2="682.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.47" y1="459.72" x2="688.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.96" y1="459.48" x2="682.53" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.56" y1="459.21" x2="687.9" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.84" y1="458.97" x2="682.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.7" x2="687.81" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.81" y1="458.46" x2="682.62" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.19" x2="687.78" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.75" y1="457.95" x2="682.62" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.68" x2="687.75" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="457.44" x2="682.62" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.17" x2="687.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.93" x2="682.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.66" x2="687.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.42" x2="682.62" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.15" x2="687.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.91" x2="682.62" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.64" x2="687.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.4" x2="682.62" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.13" x2="687.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.89" x2="682.62" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.62" x2="687.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.38" x2="682.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.11" x2="687.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.87" x2="682.62" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.6" x2="687.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.36" x2="682.62" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.09" x2="687.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.85" x2="682.62" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.58" x2="687.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.34" x2="682.62" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.07" x2="687.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.83" x2="682.62" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.56" x2="687.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.32" x2="682.62" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.05" x2="687.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.81" x2="682.62" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.54" x2="687.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.3" x2="682.62" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.03" x2="687.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.79" x2="682.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.52" x2="687.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.28" x2="682.62" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.01" x2="687.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.77" x2="682.62" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="448.5" x2="687.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.26" x2="682.62" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.99" x2="687.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.75" x2="682.62" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.48" x2="687.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.24" x2="682.62" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.97" x2="687.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="446.73" x2="682.62" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.46" x2="687.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.46" x2="699.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="446.73" x2="694.71" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.97" x2="699.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.24" x2="694.71" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.48" x2="699.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.75" x2="694.71" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.99" x2="699.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.26" x2="694.71" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="448.5" x2="699.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.77" x2="694.71" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.01" x2="699.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.28" x2="694.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.52" x2="699.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.79" x2="694.71" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.03" x2="699.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.3" x2="694.71" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.54" x2="699.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.81" x2="694.71" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.05" x2="699.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.32" x2="694.71" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.56" x2="699.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.83" x2="694.71" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.07" x2="699.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.34" x2="694.71" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.58" x2="699.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.85" x2="694.71" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.09" x2="699.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.36" x2="694.71" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.6" x2="699.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.87" x2="694.71" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.11" x2="699.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.38" x2="694.71" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.62" x2="699.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.89" x2="694.71" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.13" x2="699.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.4" x2="694.71" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.64" x2="699.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.91" x2="694.71" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.15" x2="699.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.42" x2="694.71" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.66" x2="699.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.93" x2="694.71" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.17" x2="699.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.44" x2="694.71" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.68" x2="699.72" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.95" x2="694.71" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="458.19" x2="699.72" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.46" x2="694.71" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.68" y1="458.7" x2="699.72" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.97" x2="694.65" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.62" y1="459.21" x2="699.72" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.99" x2="694.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.29" y1="460.23" x2="699.69" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.63" y1="460.5" x2="694.2" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.02" y1="460.74" x2="699.6" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.57" y1="461.01" x2="693.81" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.54" y1="461.25" x2="699.51" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.42" y1="461.52" x2="693.15" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.43" y1="461.76" x2="699.33" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.24" y1="462.03" x2="670.59" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.27" x2="699.15" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.03" y1="462.54" x2="670.59" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.78" x2="675.3" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.05" x2="670.59" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.29" x2="675.3" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.56" x2="670.59" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.8" x2="675.3" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.07" x2="670.59" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.31" x2="675.3" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.58" x2="670.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.82" x2="675.3" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="465.09" x2="670.59" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="462.78" x2="686.79" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.64" y1="463.05" x2="675.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.08" y1="463.29" x2="686.49" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.34" y1="463.56" x2="676.32" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.56" y1="463.8" x2="686.1" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.89" y1="464.07" x2="676.8" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="464.31" x2="685.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.32" y1="464.58" x2="677.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.76" y1="464.82" x2="684.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="684.54" y1="465.09" x2="678.3" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="465.33" x2="684.03" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="683.22" y1="465.6" x2="679.98" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.21" y1="462.78" x2="698.85" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.7" y1="463.05" x2="687.45" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.69" y1="463.29" x2="698.55" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.37" y1="463.56" x2="687.96" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.2" y1="463.8" x2="698.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.89" y1="464.07" x2="688.47" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.8" y1="464.31" x2="697.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.26" y1="464.58" x2="689.16" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.49" y1="464.82" x2="696.87" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="696.33" y1="465.09" x2="689.94" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="690.48" y1="465.33" x2="695.61" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.32" y1="465.6" x2="691.32" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="457.26" x2="654.0" y2="456.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="649.35" y2="459.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="652.74" y2="447.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="657.75" y2="449.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.4" y1="450.0" x2="649.95" y2="450.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="659.85" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="654.93" y2="460.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.77" y1="462.12" x2="659.4" y2="462.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.62" y1="465.54" x2="662.43" y2="465.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.37" y1="463.56" x2="666.09" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="465.87" x2="657.48" y2="465.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="462.84" x2="606.66" y2="462.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.27" x2="581.13" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.03" x2="586.02" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.54" x2="581.13" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.78" x2="586.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.05" x2="581.13" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.29" x2="586.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.56" x2="581.13" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.8" x2="586.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.07" x2="581.13" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="464.31" x2="586.02" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.58" x2="581.13" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.31" y1="452.58" x2="557.7" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.85" y1="452.34" x2="563.46" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.64" y1="452.07" x2="558.0" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.18" y1="451.83" x2="563.82" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="451.56" x2="558.33" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.48" y1="451.32" x2="564.15" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.33" y1="451.05" x2="558.63" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.78" y1="450.81" x2="564.48" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.66" y1="450.54" x2="558.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.11" y1="450.3" x2="564.84" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.99" y1="450.03" x2="559.26" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.41" y1="449.79" x2="565.17" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.13" y1="452.85" x2="557.55" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.4" y1="453.09" x2="562.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.8" y1="453.36" x2="557.25" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.07" y1="453.6" x2="562.62" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.44" y1="453.87" x2="556.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.77" y1="454.11" x2="562.29" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.11" y1="454.38" x2="556.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.46" x2="549.36" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="458.7" x2="554.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.97" x2="549.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.21" x2="554.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.48" x2="549.36" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.72" x2="554.25" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.99" x2="549.36" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.23" x2="554.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="460.5" x2="549.36" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.74" x2="554.25" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.01" x2="549.36" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.25" x2="554.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.52" x2="549.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.76" x2="554.25" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.03" x2="549.36" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.27" x2="554.25" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.54" x2="549.36" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.78" x2="554.25" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.05" x2="549.36" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.29" x2="554.25" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.56" x2="549.36" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.8" x2="554.25" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.07" x2="549.36" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.31" x2="554.25" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.58" x2="549.36" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.82" x2="554.25" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.58" x2="539.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.31" x2="537.99" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.55" y1="464.07" x2="539.94" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.8" x2="535.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.56" x2="539.94" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.29" x2="535.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.05" x2="539.94" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.78" x2="535.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.54" x2="539.94" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.27" x2="535.38" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.03" x2="539.94" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="461.76" x2="535.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.52" x2="539.94" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.05" y2="461.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.57" y1="462.54" x2="516.72" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.96" y1="462.78" x2="531.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.18" y1="463.05" x2="517.2" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.47" y1="463.29" x2="530.88" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.61" y1="463.56" x2="517.83" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.19" y1="463.8" x2="530.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.65" y1="464.07" x2="518.67" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.24" y1="464.31" x2="529.17" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.45" y1="464.58" x2="519.84" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.77" y1="464.82" x2="527.61" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.02" y1="465.09" x2="522.39" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.59" y1="462.03" x2="531.84" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.93" y1="461.76" x2="525.96" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.41" y1="461.52" x2="532.02" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.08" y1="461.25" x2="526.71" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.89" y1="461.01" x2="532.11" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.74" x2="527.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.16" y1="460.5" x2="532.14" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.14" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.57" y1="455.13" x2="526.77" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.68" y1="455.1" x2="526.92" y2="455.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.4" x2="532.14" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="455.64" x2="517.29" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.77" y1="455.91" x2="532.14" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.15" x2="518.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.3" y1="456.42" x2="532.14" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.66" x2="520.5" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.27" y1="456.93" x2="532.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.17" x2="524.43" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.75" y1="457.44" x2="532.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.68" x2="526.35" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.74" y1="457.95" x2="532.14" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.19" x2="527.04" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.19" y1="458.46" x2="532.14" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.7" x2="527.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="458.97" x2="532.14" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.21" x2="527.34" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="459.48" x2="532.14" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.72" x2="527.34" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="459.99" x2="532.14" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.23" x2="527.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.13" x2="532.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.62" x2="527.34" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="454.38" x2="532.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.11" x2="527.34" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="453.87" x2="532.17" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.6" x2="527.34" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="453.36" x2="532.17" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.09" x2="527.31" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.28" y1="452.85" x2="532.17" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.58" x2="527.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.22" y1="452.34" x2="532.17" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.07" x2="527.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.13" y1="451.83" x2="532.17" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.56" x2="527.1" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.04" y1="451.32" x2="532.17" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.05" x2="526.98" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.86" y1="450.81" x2="532.17" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="450.54" x2="526.71" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.5" y1="450.3" x2="532.14" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="450.03" x2="526.23" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="449.79" x2="532.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="449.52" x2="525.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.27" y1="449.28" x2="532.17" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.95" y1="447.75" x2="516.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.27" y1="447.48" x2="526.65" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.35" y1="447.24" x2="516.54" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.87" y1="446.97" x2="525.96" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="446.73" x2="517.38" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.92" y1="446.46" x2="525.0" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.25" y1="446.22" x2="518.46" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.6" y1="445.95" x2="522.99" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="453.36" x2="520.77" y2="453.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.67" y1="454.11" x2="521.67" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.13" y1="453.87" x2="515.55" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="453.6" x2="520.74" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.66" y1="454.38" x2="524.37" y2="454.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="454.89" x2="516.27" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.06" y1="454.62" x2="524.79" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.35" y1="449.01" x2="499.59" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="448.77" x2="511.17" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.02" y1="448.5" x2="499.59" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.5" x2="494.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="448.26" x2="499.32" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.99" x2="494.43" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.75" x2="499.32" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.48" x2="494.43" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.24" x2="499.32" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.97" x2="494.43" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.73" x2="499.32" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.46" x2="494.43" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.22" x2="499.32" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.95" x2="494.43" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.71" x2="499.32" y2="445.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.44" x2="494.43" y2="445.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.2" x2="499.32" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.93" x2="494.43" y2="444.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.69" x2="499.32" y2="444.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.42" x2="494.43" y2="444.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.18" x2="499.32" y2="444.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.91" x2="494.43" y2="443.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.67" x2="499.32" y2="443.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.4" x2="494.43" y2="443.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.16" x2="499.32" y2="443.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.89" x2="494.43" y2="442.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.65" x2="499.32" y2="442.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.38" x2="494.43" y2="442.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.14" x2="499.32" y2="442.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.87" x2="494.43" y2="441.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.63" x2="499.32" y2="441.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.36" x2="494.43" y2="441.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.12" x2="499.32" y2="441.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.85" x2="494.43" y2="440.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.61" x2="499.32" y2="440.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.34" x2="494.43" y2="440.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.1" x2="499.32" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.83" x2="494.43" y2="439.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.49" y1="439.59" x2="499.32" y2="439.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.32" x2="494.76" y2="439.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.03" y1="439.08" x2="499.32" y2="439.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.81" x2="495.33" y2="438.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.6" y1="438.57" x2="499.32" y2="438.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.3" x2="495.9" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.17" y1="438.06" x2="499.32" y2="438.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.79" x2="496.47" y2="437.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.74" y1="437.55" x2="499.32" y2="437.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.28" x2="497.01" y2="437.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.31" y1="437.04" x2="499.32" y2="437.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.77" x2="497.58" y2="436.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.88" y1="436.53" x2="499.32" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.26" x2="498.15" y2="436.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.45" y1="436.02" x2="499.32" y2="436.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="435.75" x2="498.72" y2="435.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="435.51" x2="499.32" y2="435.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.29" y1="435.24" x2="499.32" y2="435.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.32" y1="446.22" x2="507.6" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.35" y1="446.46" x2="501.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.24" y1="446.73" x2="508.83" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.34" y1="446.97" x2="500.88" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.58" y1="447.24" x2="509.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.0" y1="447.48" x2="500.31" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.07" y1="447.75" x2="510.3" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.54" y1="447.99" x2="499.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="448.26" x2="510.78" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.34" y1="445.95" x2="503.52" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.77" x2="494.43" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.01" x2="499.32" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.28" x2="494.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.52" x2="499.32" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.79" x2="494.43" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.03" x2="499.32" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.3" x2="494.43" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.54" x2="499.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.81" x2="494.43" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.05" x2="499.32" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.32" x2="494.43" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.56" x2="499.32" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.52" y1="379.65" x2="524.52" y2="375.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.96" y1="378.9" x2="529.71" y2="379.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="327.06" x2="737.22" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="322.65" x2="740.97" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="324.06" x2="736.47" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="859.47" y2="334.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="858.72" y2="336.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.22" y1="339.06" x2="858.72" y2="340.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="863.22" y1="339.06" x2="863.22" y2="342.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="925.35" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="407.1" x2="929.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="407.1" x2="933.45" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="928.26" y1="409.35" x2="926.76" y2="409.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="926.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="922.35" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="929.76" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="410.1" x2="937.11" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="407.1" x2="938.61" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.86" y1="422.1" x2="936.36" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="424.35" x2="937.11" y2="425.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.2" y1="425.85" x2="934.2" y2="424.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.7" y1="423.6" x2="934.2" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="422.1" x2="931.2" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="436.8" x2="1027.77" y2="439.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="436.8" x2="1027.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.77" y1="438.3" x2="1032.27" y2="439.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.02" y1="441.24" x2="1030.02" y2="444.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="443.49" x2="1030.02" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="443.49" x2="1027.77" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="444.24" x2="1042.77" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="439.8" x2="1045.77" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1045.77" y1="439.05" x2="1045.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="436.8" x2="1042.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.96" y1="184.65" x2="549.96" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="180.15" x2="551.46" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="183.15" x2="549.96" y2="184.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.02" y1="184.65" x2="547.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="545.52" y1="182.4" x2="544.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.52" y1="174.24" x2="535.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="535.02" y2="171.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="169.8" x2="532.77" y2="169.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="532.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="173.49" x2="507.27" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="169.8" x2="505.77" y2="168.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="169.05" x2="505.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="166.8" x2="502.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.52" y1="171.24" x2="502.77" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.02" y1="173.49" x2="505.02" y2="172.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="470.97" y1="161.31" x2="466.47" y2="161.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.22" y1="157.65" x2="466.47" y2="156.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="178.11" x2="454.02" y2="178.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.02" x2="449.52" y2="185.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.77" x2="453.27" y2="184.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="186.96" x2="454.02" y2="189.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="188.46" x2="449.52" y2="188.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="226.8" x2="430.02" y2="226.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="229.8" x2="433.77" y2="229.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="231.24" x2="434.52" y2="231.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.27" y1="233.49" x2="431.52" y2="234.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.61" y1="242.85" x2="397.86" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.86" y1="244.35" x2="398.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.2" y1="242.85" x2="393.45" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.86" y1="171.6" x2="336.36" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.2" y1="170.85" x2="333.45" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.61" y1="167.1" x2="338.61" y2="170.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.61" y1="167.1" x2="335.61" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="154.65" x2="361.02" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.27" y1="154.65" x2="360.27" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="150.15" x2="361.02" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.49" y1="150.9" x2="363.24" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.9" y1="150.15" x2="369.9" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.4" y1="150.15" x2="368.4" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.49" y1="153.9" x2="364.74" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.93" y1="127.44" x2="327.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.68" y1="127.44" x2="324.93" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.18" y1="123.75" x2="323.43" y2="123.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.18" y1="125.19" x2="327.93" y2="125.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="291.15" y1="104.16" x2="291.15" y2="103.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="286.71" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="288.15" y1="104.16" x2="291.15" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="285.96" y2="99.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="117.09" x2="228.93" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="120.75" x2="228.93" y2="123.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="122.25" x2="224.43" y2="122.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.18" y1="119.34" x2="224.43" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.18" y1="125.19" x2="225.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="162.6" x2="250.95" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.11" y1="163.35" x2="253.86" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.7" y1="166.35" x2="250.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.77" y1="82.74" x2="384.27" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="79.8" x2="385.02" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="76.8" x2="382.77" y2="76.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="385.77" y1="78.3" x2="387.27" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="81.24" x2="387.27" y2="84.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="82.74" x2="382.77" y2="82.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="72.06" x2="380.97" y2="69.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.22" y1="67.65" x2="378.72" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.47" y1="66.15" x2="380.97" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="64.65" x2="376.47" y2="64.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="38.85" x2="351.36" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="34.35" x2="352.86" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="37.35" x2="351.36" y2="38.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.45" y1="38.1" x2="348.45" y2="35.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.95" y1="35.85" x2="348.45" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="34.56" x2="231.72" y2="37.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="36.06" x2="227.22" y2="36.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="33.15" x2="231.72" y2="30.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.2" y1="107.85" x2="451.95" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.61" y1="107.1" x2="458.61" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.11" y1="107.1" x2="457.11" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.2" y1="110.85" x2="453.45" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.75" y1="461.37" x2="611.07" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="519.9" x2="742.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="523.29" x2="752.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="530.94" x2="742.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="742.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="751.29" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="537.75" x2="742.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="530.94" x2="782.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="781.29" y1="542.01" x2="774.48" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="537.75" x2="782.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="526.71" x2="779.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="779.58" y1="525.0" x2="779.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="519.9" x2="772.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="523.29" x2="842.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="530.94" x2="832.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.48" y1="542.01" x2="832.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="537.75" x2="832.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="526.71" x2="832.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.77" y1="519.9" x2="862.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="519.9" x2="862.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.58" y1="523.29" x2="872.97" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="530.94" x2="862.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="864.48" y1="542.01" x2="862.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="537.75" x2="862.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.87" y1="545.4" x2="867.87" y2="547.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="547.11" x2="892.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="537.75" x2="902.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="537.75" x2="892.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="526.71" x2="892.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="523.29" x2="902.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="525.0" x2="924.48" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="519.9" x2="922.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="530.94" x2="932.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="926.16" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="537.75" x2="932.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="526.71" x2="929.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="523.29" x2="962.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="530.94" x2="952.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="956.16" y1="542.01" x2="952.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="542.01" x2="962.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="545.4" x2="992.97" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="542.01" x2="992.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="986.16" y1="542.01" x2="982.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="537.75" x2="992.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="526.71" x2="989.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.58" y1="525.0" x2="989.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="519.9" x2="982.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="530.94" x2="992.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="536.04" x2="1012.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1012.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="548.79" x2="1017.87" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1022.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1021.29" y1="526.71" x2="1022.97" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1017.87" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1016.16" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="525.0" x2="1042.77" y2="521.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="526.71" x2="1042.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="530.94" x2="1051.29" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1042.77" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="537.75" x2="1042.77" y2="536.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1052.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="547.5" x2="1131.87" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="570.0" x2="1124.37" y2="562.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="540.0" x2="1124.37" y2="532.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="510.0" x2="1184.37" y2="502.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="480.0" x2="1124.37" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="450.0" x2="1184.37" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="420.0" x2="1124.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="390.0" x2="1184.37" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="300.0" x2="1124.37" y2="292.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="270.0" x2="1184.37" y2="262.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="240.0" x2="1124.37" y2="232.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="210.0" x2="1184.37" y2="202.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="180.0" x2="1124.37" y2="172.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="150.0" x2="1184.37" y2="142.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1192.77" y1="105.72" x2="1192.77" y2="98.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.58" y1="105.72" x2="1197.87" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1210.65" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1214.88" y1="107.4" x2="1219.98" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1203.84" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="120.0" x2="1124.37" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="330.0" x2="1184.37" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="360.0" x2="1124.37" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="519.9" x2="952.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="530.94" x2="962.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="932.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="548.79" x2="902.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.87" y1="547.11" x2="837.87" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="570.0" x2="1184.37" y2="577.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="189.45" x2="446.19" y2="170.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.22" y1="170.55" x2="446.22" y2="169.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="167.01" x2="425.52" y2="167.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="166.98" x2="424.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.58" y1="170.55" x2="422.58" y2="189.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.55" y1="189.45" x2="422.55" y2="190.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="192.99" x2="443.25" y2="192.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="193.02" x2="443.82" y2="192.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.27" y1="171.3" x2="402.27" y2="128.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="121.2" x2="414.27" y2="114.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="117.81" x2="424.47" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="110.16" x2="424.47" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="106.74" x2="419.37" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="419.37" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="422.79" y2="99.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="88.05" x2="424.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="84.66" x2="419.37" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="77.01" x2="421.08" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="70.2" x2="414.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="73.59" x2="424.47" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="75.3" x2="444.27" y2="71.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="73.59" x2="449.37" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="75.3" x2="447.66" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="81.24" x2="452.79" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="86.76" x2="454.47" y2="88.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="91.89" x2="447.66" y2="93.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="97.83" x2="451.08" y2="97.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="88.05" x2="481.08" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="77.01" x2="474.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="71.91" x2="504.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="509.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="512.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="92.31" x2="504.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="92.31" x2="534.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.79" y1="77.01" x2="544.47" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="539.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="542.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.56" y1="82.95" x2="564.27" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="567.66" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="574.47" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="81.24" x2="574.47" y2="84.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="88.62" x2="567.66" y2="88.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="564.27" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="574.47" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="128.7" x2="346.47" y2="171.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="139.8" x2="579.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.87" y1="139.8" x2="1047.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.77" y1="90.0" x2="1184.37" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="89.4" x2="1169.37" y2="80.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.17" y1="150.0" x2="1048.17" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="630.9" x2="1139.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="638.4" x2="1169.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.87" y1="484.5" x2="737.37" y2="484.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="731.37" y1="523.5" x2="360.87" y2="523.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.72" y1="533.85" x2="375.72" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="533.85" x2="397.41" y2="538.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="549.15" x2="413.97" y2="544.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="533.85" x2="408.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="549.15" x2="392.31" y2="533.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.72" y1="504.6" x2="744.72" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.31" y1="494.4" x2="763.86" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="504.6" x2="752.4" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="507.15" x2="777.87" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.1" y1="491.85" x2="788.1" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="507.15" x2="799.56" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="494.4" x2="813.57" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="507.15" x2="837.81" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="507.15" x2="849.27" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="846.72" y1="507.15" x2="846.72" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="491.85" x2="849.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.21" y1="494.4" x2="857.79" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="871.8" y1="491.85" x2="871.8" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="882.0" y1="499.5" x2="871.8" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.44" y1="504.6" x2="862.89" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="491.85" x2="827.61" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="507.15" x2="811.02" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="491.85" x2="794.46" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.36" y1="507.15" x2="898.59" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="507.15" x2="893.49" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="491.85" x2="910.05" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="907.5" y1="491.85" x2="907.5" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="507.15" x2="910.05" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="915.99" y1="504.6" x2="915.99" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="942.78" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="932.58" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="252.96" x2="1073.52" y2="242.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="236.37" x2="1073.52" y2="236.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1065.87" y1="236.37" x2="1065.87" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1058.22" y2="231.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1073.52" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="214.71" x2="1058.22" y2="214.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="209.61" x2="1058.22" y2="219.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="203.64" x2="1058.22" y2="198.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="201.09" x2="1073.52" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="198.54" x2="1073.52" y2="203.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1070.97" y1="192.18" x2="1065.87" y2="192.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="192.18" x2="1058.22" y2="189.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="176.04" x2="1073.52" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="173.49" x2="1058.22" y2="173.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="176.04" x2="1058.22" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="164.55" x2="1058.22" y2="162.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.0" y1="127.65" x2="771.0" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.86" y1="112.35" x2="749.76" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.31" y1="112.35" x2="752.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.76" y1="127.65" x2="754.86" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.81" y1="125.1" x2="724.26" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="710.25" y1="114.9" x2="707.67" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.66" y1="112.35" x2="683.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="122.55" x2="677.1" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="120.0" x2="666.87" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="666.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="660.51" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="671.97" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="650.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="112.35" x2="643.95" y2="122.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="120.0" x2="643.95" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="120.0" x2="572.67" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.02" y1="112.35" x2="565.02" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.12" y1="117.45" x2="575.25" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.66" y1="112.35" x2="548.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.56" y1="120.0" x2="548.46" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.1" y1="112.35" x2="542.1" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.87" y1="127.65" x2="531.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="114.9" x2="525.51" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.95" y1="120.0" x2="508.95" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.72" y1="117.45" x2="506.4" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="105.0" x2="790.53" y2="106.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.47" y1="45.0" x2="1150.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="435.0" x2="790.53" y2="436.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.47" y1="615.0" x2="1075.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="615.0" x2="190.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="585.0" x2="81.15" y2="585.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="465.0" x2="81.15" y2="465.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="62.37" y1="135.0" x2="62.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.37" y1="135.0" x2="116.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.47" y1="45.0" x2="175.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="175.14" x2="246.87" y2="175.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="179.64" x2="329.37" y2="180.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="254.64" x2="269.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.37" y1="254.64" x2="239.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.01" y1="315.0" x2="344.73" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.37" y1="255.36" x2="389.37" y2="254.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.01" y1="165.0" x2="479.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="165.0" x2="524.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="120.36" x2="449.37" y2="119.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.37" y1="329.64" x2="224.37" y2="330.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="539.64" x2="344.37" y2="540.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.73" y1="570.0" x2="284.01" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.01" y1="330.0" x2="749.73" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="338.04" x2="449.91" y2="327.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="337.89" x2="420.78" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.35" y1="336.15" x2="449.91" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="334.44" x2="421.68" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.77" y1="332.7" x2="449.91" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="330.99" x2="421.59" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="329.25" x2="449.91" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="445.62" y1="327.54" x2="420.57" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.58" y1="325.8" x2="436.35" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.84" y1="324.06" x2="418.17" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="322.35" x2="435.18" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.46" y1="320.61" x2="414.0" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.72" y1="318.9" x2="433.5" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.62" y1="317.16" x2="415.44" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="315.45" x2="435.03" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.44" y1="313.71" x2="416.88" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.57" y1="312.0" x2="437.85" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="439.26" y1="310.26" x2="418.29" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.01" y1="308.52" x2="423.3" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.38" y1="308.52" x2="440.64" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.7" y1="306.81" x2="426.51" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.61" y1="305.07" x2="438.99" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.25" y1="303.36" x2="430.74" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.87" y1="301.62" x2="435.54" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.88" y1="306.81" x2="419.73" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.89" y1="313.71" x2="381.33" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.92" y1="312.0" x2="400.17" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.45" y1="310.26" x2="378.51" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.1" y1="308.52" x2="393.36" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.47" y1="308.52" x2="398.73" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.04" y1="306.81" x2="397.86" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.26" y1="306.81" x2="377.04" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.78" y1="305.07" x2="389.13" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.03" y1="303.36" x2="380.49" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.23" y1="301.62" x2="384.9" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.74" y1="315.45" x2="401.61" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.33" y1="317.16" x2="384.15" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.24" y1="318.9" x2="403.05" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.74" y1="320.61" x2="383.31" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.59" y1="322.35" x2="401.64" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.6" y1="324.06" x2="381.93" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.42" y1="325.8" x2="398.22" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.23" y1="327.54" x2="372.15" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="329.25" x2="396.54" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.12" y1="330.99" x2="367.86" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="332.7" x2="396.0" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.09" y1="334.44" x2="367.86" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="336.15" x2="396.39" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.93" y1="337.89" x2="367.86" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.24" y1="339.6" x2="397.8" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.06" y1="341.34" x2="381.75" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.32" y1="343.08" x2="400.83" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.68" y1="344.79" x2="383.04" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.94" y1="346.53" x2="433.83" y2="346.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.14" y1="348.24" x2="384.63" y2="348.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.22" y1="349.98" x2="434.55" y2="349.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.96" y1="351.69" x2="381.81" y2="351.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.4" y1="353.43" x2="437.37" y2="353.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="438.78" y1="355.14" x2="378.99" y2="355.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.58" y1="356.88" x2="440.16" y2="356.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.3" y1="358.62" x2="425.79" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.89" y1="360.33" x2="439.56" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="362.07" x2="430.02" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.15" y1="363.78" x2="436.11" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.4" y1="365.52" x2="434.25" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="358.62" x2="396.54" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.98" y1="358.62" x2="376.47" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.18" y1="360.33" x2="389.85" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.75" y1="362.07" x2="379.92" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.63" y1="363.78" x2="385.62" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="365.52" x2="383.37" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.25" y1="360.33" x2="416.52" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.14" y1="362.07" x2="402.63" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.81" y1="363.78" x2="414.96" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.78" y1="365.52" x2="402.99" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.14" y1="367.23" x2="414.6" y2="367.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.42" y1="368.97" x2="403.32" y2="368.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.5" y1="370.68" x2="414.27" y2="370.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.09" y1="372.42" x2="403.68" y2="372.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.03" y1="344.79" x2="434.7" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.42" y1="343.08" x2="416.97" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="418.74" y1="341.34" x2="436.02" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.5" y1="339.6" x2="419.94" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.69" y1="77.73" x2="267.75" y2="78.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.07" y1="216.6" x2="291.0" y2="236.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="293.4" x2="367.77" y2="293.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="216.6" x2="311.07" y2="216.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="220.17" x2="316.23" y2="220.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="289.83" x2="342.51" y2="289.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="242.97" x2="350.88" y2="242.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="254.01" x2="352.74" y2="261.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="265.08" x2="352.74" y2="272.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="268.77" x2="341.64" y2="268.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.64" y1="257.73" x2="352.74" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.33" y1="254.01" x2="341.64" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="250.38" x2="341.64" y2="248.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.35" y1="410.85" x2="280.35" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="412.29" x2="272.97" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.15" y1="419.55" x2="267.15" y2="412.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.52" y1="473.1" x2="319.71" y2="473.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.04" y1="476.4" x2="326.34" y2="476.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.41" y1="479.7" x2="316.41" y2="474.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-</svg>
diff --git a/examples/board.png b/examples/board.png
deleted file mode 100644
index 948874d..0000000
--- a/examples/board.png
+++ /dev/null
Binary files differ
diff --git a/examples/board.svg b/examples/board.svg
deleted file mode 100644
index 97a3807..0000000
--- a/examples/board.svg
+++ /dev/null
@@ -1,5128 +0,0 @@
-<svg width="1280" height="720">
-<line x1="35.67" y1="21.3" x2="35.67" y2="638.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.81" y1="244.59" x2="253.29" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.2" y1="245.49" x2="272.34" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.42" y1="301.65" x2="353.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="354.18" y2="302.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="23.88" x2="182.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.62" y1="26.82" x2="35.67" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="29.79" x2="175.68" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.49" y1="32.73" x2="35.67" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="35.7" x2="172.26" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.03" y1="38.64" x2="35.67" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="41.61" x2="170.37" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.37" y1="44.55" x2="35.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="47.52" x2="170.37" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.67" y1="50.46" x2="166.29" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.56" y1="50.73" x2="167.16" y2="51.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="53.43" x2="171.9" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.1" y1="56.37" x2="167.46" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="59.34" x2="174.78" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.72" y1="62.28" x2="167.46" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="65.25" x2="180.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.65" y1="68.19" x2="147.93" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="65.25" x2="144.93" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="66.18" x2="144.93" y2="48.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="68.19" x2="75.87" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="69.18" x2="95.43" y2="69.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="71.16" x2="72.87" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="69.18" x2="72.87" y2="86.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="68.19" x2="35.67" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="65.25" x2="53.34" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="62.28" x2="35.67" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="59.34" x2="53.34" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="56.37" x2="35.67" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="53.43" x2="53.34" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="54.51" y1="50.46" x2="35.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="71.16" x2="53.34" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="74.1" x2="35.67" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="77.07" x2="53.34" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="80.01" x2="35.67" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="82.98" x2="53.49" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.89" y1="85.92" x2="35.67" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="88.89" x2="181.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="91.83" x2="35.67" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="94.8" x2="181.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="97.74" x2="35.67" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="100.71" x2="181.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="103.65" x2="54.39" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="52.59" y1="102.9" x2="56.67" y2="104.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="481.44" x2="146.97" y2="481.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="484.86" x2="63.24" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="66.18" y1="487.8" x2="126.63" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="475.98" x2="97.29" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.96" y1="476.34" x2="92.04" y2="478.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="100.26" y1="473.04" x2="126.36" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.7" y1="470.07" x2="101.76" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="467.13" x2="202.77" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="470.07" x2="168.18" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.88" y1="469.89" x2="168.9" y2="470.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.52" y1="473.04" x2="202.77" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="475.98" x2="170.64" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="481.89" x2="202.77" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="478.95" x2="149.88" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="478.95" x2="60.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="481.89" x2="78.48" y2="500.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="46.35" y1="103.65" x2="35.67" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="106.62" x2="42.09" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.2" y1="109.56" x2="35.67" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="112.53" x2="39.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="39.27" y1="115.47" x2="35.67" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="118.44" x2="40.2" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="121.38" x2="35.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="124.35" x2="40.47" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="127.29" x2="35.67" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="130.26" x2="40.47" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="133.2" x2="35.67" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="136.17" x2="40.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="139.11" x2="35.67" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="142.08" x2="40.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="145.02" x2="35.67" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="147.99" x2="40.47" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="150.93" x2="35.67" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="153.9" x2="40.47" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="156.84" x2="35.67" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="159.81" x2="40.47" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="162.75" x2="35.67" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="165.72" x2="40.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="168.66" x2="35.67" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="171.63" x2="40.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="174.57" x2="35.67" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="177.54" x2="40.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="180.48" x2="35.67" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="183.45" x2="40.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="186.39" x2="35.67" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="189.36" x2="40.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="192.3" x2="35.67" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="195.27" x2="40.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="198.21" x2="35.67" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="201.18" x2="40.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="204.12" x2="35.67" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="207.09" x2="40.47" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="210.03" x2="35.67" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="213.0" x2="40.47" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="215.94" x2="35.67" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="218.91" x2="40.47" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="221.85" x2="35.67" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="224.82" x2="40.47" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="227.76" x2="35.67" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="230.73" x2="40.47" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="233.67" x2="35.67" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="236.64" x2="40.47" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="239.58" x2="35.67" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="242.55" x2="40.47" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="245.49" x2="35.67" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="248.46" x2="40.47" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="251.4" x2="35.67" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="254.37" x2="40.47" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="257.31" x2="35.67" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="260.28" x2="40.47" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="263.22" x2="35.67" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="266.19" x2="40.47" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="269.13" x2="35.67" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="272.1" x2="40.47" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="275.04" x2="35.67" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="278.01" x2="40.47" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="280.95" x2="35.67" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="283.92" x2="40.47" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="286.86" x2="35.67" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="289.83" x2="40.47" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="292.77" x2="35.67" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="295.74" x2="40.47" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="298.68" x2="35.67" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="301.65" x2="40.47" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="304.59" x2="35.67" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="307.56" x2="40.47" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="310.5" x2="35.67" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="313.47" x2="40.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="316.41" x2="35.67" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="319.38" x2="40.47" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="322.32" x2="35.67" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="325.29" x2="40.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="328.23" x2="35.67" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="331.2" x2="40.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="334.14" x2="35.67" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="337.11" x2="40.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="340.05" x2="35.67" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="343.02" x2="40.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="345.96" x2="35.67" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="348.93" x2="40.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="351.87" x2="35.67" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="354.84" x2="40.47" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="357.78" x2="35.67" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="360.75" x2="40.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="363.69" x2="35.67" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="366.66" x2="40.47" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="369.6" x2="35.67" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="372.57" x2="40.47" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="375.51" x2="35.67" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="378.48" x2="40.47" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="381.42" x2="35.67" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="384.39" x2="40.47" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="387.33" x2="35.67" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="390.3" x2="40.47" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="393.24" x2="35.67" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="396.21" x2="40.47" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="399.15" x2="35.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="402.12" x2="40.47" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="405.06" x2="35.67" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="408.03" x2="40.47" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="410.97" x2="35.67" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="413.94" x2="40.47" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="416.88" x2="35.67" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="419.85" x2="40.47" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="422.79" x2="35.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="425.76" x2="40.47" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="428.7" x2="35.67" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="431.67" x2="40.47" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="434.61" x2="35.67" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="437.58" x2="40.47" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="440.52" x2="35.67" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="443.49" x2="40.47" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="446.43" x2="35.67" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="449.4" x2="40.47" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="452.34" x2="35.67" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="455.31" x2="40.47" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="458.25" x2="35.67" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="461.22" x2="40.47" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="464.16" x2="35.67" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="467.13" x2="40.47" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="470.07" x2="35.67" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="473.04" x2="40.47" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="475.98" x2="35.67" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="478.95" x2="40.47" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="481.89" x2="35.67" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="484.86" x2="40.47" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="487.8" x2="35.67" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="490.77" x2="41.64" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="44.1" y1="493.71" x2="35.67" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="496.68" x2="47.04" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.01" y1="499.62" x2="35.67" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="502.59" x2="52.95" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.92" y1="505.53" x2="35.67" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="508.5" x2="58.86" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.83" y1="511.44" x2="35.67" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="514.41" x2="64.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.74" y1="517.35" x2="35.67" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="520.32" x2="127.92" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.43" y1="529.17" x2="35.67" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="526.23" x2="202.77" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="529.17" x2="168.45" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="532.14" x2="202.77" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="535.08" x2="171.24" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="538.05" x2="202.77" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="540.99" x2="171.24" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="543.96" x2="202.77" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="546.9" x2="171.24" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="549.87" x2="202.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="552.81" x2="121.89" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="555.78" x2="202.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.76" y1="558.72" x2="119.97" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="561.69" x2="125.91" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="564.63" x2="119.97" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="567.6" x2="125.61" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="570.54" x2="119.97" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="121.71" y1="573.51" x2="125.61" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="576.45" x2="124.68" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.87" y1="585.0" x2="228.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="389.07" x2="475.83" y2="389.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.94" y1="561.69" x2="206.73" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="209.37" y2="450.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="447.45" x2="221.25" y2="447.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="449.4" x2="219.33" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.36" y1="452.34" x2="222.87" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.2" y1="455.31" x2="215.97" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="458.25" x2="335.79" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.87" y1="466.5" x2="317.37" y2="466.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.87" y1="519.15" x2="276.87" y2="487.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.49" y1="461.22" x2="281.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.68" y1="464.16" x2="285.09" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.87" y1="469.5" x2="255.87" y2="469.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.87" y1="519.15" x2="261.87" y2="489.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="487.8" x2="215.97" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="484.86" x2="240.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="481.89" x2="215.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="478.95" x2="240.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="475.98" x2="215.97" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="473.04" x2="243.03" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.97" y1="470.07" x2="215.97" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="467.13" x2="248.94" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.88" y1="464.16" x2="215.97" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="461.22" x2="266.49" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="440.85" x2="246.87" y2="430.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.43" y1="401.34" x2="296.43" y2="414.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="519.33" x2="336.69" y2="486.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="351.15" x2="250.02" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.49" y1="325.29" x2="246.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="328.23" x2="245.43" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="322.32" x2="241.05" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="319.38" x2="206.94" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="322.32" x2="208.74" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.08" y1="325.29" x2="206.94" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.19" y1="331.5" x2="188.37" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="163.92" y1="328.23" x2="60.27" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="325.29" x2="161.31" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="322.32" x2="60.27" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="319.38" x2="161.31" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="316.41" x2="60.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="313.47" x2="161.31" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.58" y1="310.5" x2="60.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="307.56" x2="216.57" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="304.59" x2="60.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="301.65" x2="216.21" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="298.68" x2="60.27" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="295.74" x2="162.24" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.21" y1="295.71" x2="161.91" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="292.77" x2="60.27" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="289.83" x2="182.97" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="289.83" x2="216.36" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="292.77" x2="206.34" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.04" y1="295.74" x2="216.21" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.34" y1="286.86" x2="246.27" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="283.92" x2="206.34" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="205.65" y1="280.95" x2="217.14" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="278.01" x2="60.27" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="280.95" x2="162.6" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="283.92" x2="60.27" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="286.86" x2="161.91" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="286.86" x2="185.28" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="283.92" x2="182.97" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="280.95" x2="185.28" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="292.77" x2="182.97" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="295.74" x2="185.28" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.67" y1="310.5" x2="246.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="313.47" x2="206.94" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="316.41" x2="246.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.87" y1="315.0" x2="258.87" y2="298.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="286.86" x2="316.62" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="284.85" x2="327.87" y2="284.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="280.95" x2="291.63" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="278.01" x2="316.62" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="275.04" x2="292.56" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="272.1" x2="316.62" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="269.13" x2="292.56" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="266.19" x2="316.62" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.31" y1="263.22" x2="292.56" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.01" y1="260.28" x2="373.08" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="257.31" x2="285.69" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.69" y1="254.37" x2="373.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="254.43" x2="373.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="242.55" x2="377.79" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.98" y1="245.19" x2="381.15" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="251.4" x2="285.69" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="248.46" x2="317.97" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="245.49" x2="282.93" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="245.49" x2="276.48" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="248.46" x2="277.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="251.4" x2="276.48" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="254.37" x2="277.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.69" y1="255.0" x2="258.87" y2="257.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="283.92" x2="327.87" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="286.86" x2="330.87" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="283.92" x2="375.15" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.18" y1="286.86" x2="342.15" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="289.83" x2="369.24" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.27" y1="292.77" x2="342.15" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="295.74" x2="363.33" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="353.31" y2="300.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="301.65" x2="344.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.94" y1="304.59" x2="343.8" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="307.56" x2="324.39" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="310.5" x2="334.56" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.01" y1="313.47" x2="326.64" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="316.41" x2="333.99" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="319.38" x2="326.64" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="322.32" x2="333.96" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="325.29" x2="326.64" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.95" y1="328.23" x2="333.96" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.24" y1="331.2" x2="259.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="259.47" y1="328.23" x2="272.82" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.1" y1="325.29" x2="259.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="258.87" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="278.7" y2="318.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="268.32" y1="334.14" x2="330.45" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="337.11" x2="269.88" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="339.33" x2="253.2" y2="339.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="272.1" x2="149.76" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.41" y1="273.42" x2="139.29" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.51" y1="275.04" x2="216.21" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="269.13" x2="152.7" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.49" y1="266.19" x2="216.21" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="263.22" x2="156.72" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.92" y1="260.28" x2="218.76" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="257.31" x2="159.12" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="254.37" x2="223.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="254.43" x2="223.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="248.46" x2="223.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="251.4" x2="159.12" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.05" y1="242.55" x2="316.02" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="239.58" x2="155.85" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="153.57" y1="236.64" x2="202.23" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.35" y1="233.67" x2="150.6" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.58" y1="230.73" x2="184.41" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.44" y1="227.76" x2="139.44" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.3" y1="227.76" x2="60.27" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="224.82" x2="178.5" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.53" y1="221.85" x2="60.27" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="230.73" x2="122.19" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="118.17" y1="233.67" x2="60.27" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="236.64" x2="115.2" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.92" y1="239.58" x2="60.27" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="242.55" x2="111.69" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.46" y1="245.49" x2="60.27" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="248.46" x2="109.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="251.4" x2="60.27" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="254.37" x2="109.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="257.31" x2="60.27" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="260.28" x2="110.82" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.05" y1="263.22" x2="60.27" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="266.19" x2="113.28" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.07" y1="269.13" x2="60.27" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="272.1" x2="119.01" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.23" y1="275.04" x2="60.27" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.73" y1="218.91" x2="125.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="218.61" x2="124.8" y2="186.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="215.94" x2="96.03" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="213.0" x2="124.8" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="210.03" x2="96.03" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="207.09" x2="124.8" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="204.12" x2="96.03" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="201.18" x2="124.8" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="198.21" x2="96.03" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="195.27" x2="124.8" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="192.3" x2="96.03" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="189.36" x2="124.8" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="186.39" x2="96.03" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="93.42" y1="183.45" x2="127.38" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.28" y1="174.57" x2="168.27" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="171.63" x2="158.46" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.43" y1="168.66" x2="167.34" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="177.54" x2="92.55" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.61" y1="180.48" x2="168.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="183.45" x2="165.45" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="186.39" x2="168.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="189.36" x2="168.27" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="192.3" x2="168.27" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="195.27" x2="168.27" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="198.21" x2="168.27" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="201.18" x2="168.27" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="204.12" x2="168.27" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="207.09" x2="168.27" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="210.03" x2="168.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="213.0" x2="168.6" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="215.94" x2="169.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.79" y1="218.91" x2="172.59" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.15" y1="207.09" x2="253.68" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="210.03" x2="195.12" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.06" y1="213.0" x2="202.62" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="204.12" x2="253.68" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="201.18" x2="190.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="198.21" x2="252.39" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="195.27" x2="190.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="192.3" x2="247.35" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="189.36" x2="190.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="186.39" x2="246.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="183.45" x2="238.65" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="180.48" x2="239.76" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="177.54" x2="238.65" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.93" x2="230.58" y2="174.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.57" x2="239.76" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="171.63" x2="238.65" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="168.66" x2="239.76" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="165.72" x2="238.65" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.39" y1="165.72" x2="190.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="168.66" x2="230.82" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="171.63" x2="190.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="174.57" x2="230.58" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="177.54" x2="190.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="180.48" x2="230.58" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.39" y1="183.45" x2="190.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="162.75" x2="250.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.35" y1="159.81" x2="189.24" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.93" y1="156.84" x2="250.47" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.71" y1="153.9" x2="183.96" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.02" y1="150.93" x2="204.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.0" y1="147.99" x2="180.57" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.85" y1="145.02" x2="194.01" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.04" y1="142.08" x2="178.62" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.4" y1="139.11" x2="188.1" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.13" y1="136.17" x2="173.28" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.74" y1="133.2" x2="182.64" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="130.26" x2="176.19" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.17" y1="127.29" x2="181.47" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="124.35" x2="179.37" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="121.38" x2="165.87" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="118.44" x2="162.87" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="121.38" x2="138.93" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="138.06" y1="120.51" x2="142.89" y2="125.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="141.9" y1="124.35" x2="149.4" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.6" y1="127.29" x2="143.7" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="130.26" x2="152.55" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.0" y1="133.2" x2="145.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="145.47" y1="136.17" x2="155.46" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="152.37" y1="139.11" x2="145.2" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="143.97" y1="142.08" x2="150.12" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.92" y1="145.02" x2="142.53" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="139.59" y1="147.99" x2="148.17" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.75" y1="150.93" x2="134.61" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.81" y1="153.9" x2="60.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="156.84" x2="81.84" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.9" y1="159.81" x2="60.27" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="162.75" x2="75.93" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.99" y1="165.72" x2="60.27" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="168.66" x2="70.02" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.08" y1="171.63" x2="60.27" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="174.57" x2="64.62" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.39" y1="177.54" x2="60.27" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="180.48" x2="63.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="150.93" x2="68.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.18" y1="147.99" x2="60.27" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.61" y1="150.93" x2="122.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.18" y1="147.99" x2="85.59" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="88.53" y1="145.02" x2="114.21" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.8" y1="142.08" x2="89.97" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.2" y1="139.11" x2="111.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.27" y1="136.17" x2="91.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.47" y1="133.2" x2="111.27" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.84" y1="130.26" x2="90.93" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.7" y1="127.29" x2="113.07" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="114.87" y1="124.35" x2="87.9" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="84.93" y1="121.38" x2="117.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.72" y1="118.44" x2="79.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.72" y1="118.44" x2="60.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="121.38" x2="63.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.87" y1="124.35" x2="60.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.47" y1="115.47" x2="149.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.83" y1="118.44" x2="133.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.69" y1="112.53" x2="61.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.57" y1="109.56" x2="152.76" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.3" y1="106.62" x2="58.68" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="85.92" x2="75.87" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="82.98" x2="72.87" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="80.01" x2="75.87" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="77.07" x2="72.87" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="74.1" x2="75.87" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="65.25" x2="72.87" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="62.28" x2="75.87" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="59.34" x2="72.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="56.37" x2="75.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="53.43" x2="72.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="50.46" x2="75.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="94.23" y1="50.46" x2="126.57" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="53.43" x2="95.43" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="56.37" x2="125.4" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="59.34" x2="95.43" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="62.28" x2="125.4" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="65.25" x2="95.43" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="71.16" x2="125.4" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="74.1" x2="95.43" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="77.07" x2="125.4" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="80.01" x2="95.43" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.28" y1="82.98" x2="125.52" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.95" y1="85.92" x2="92.88" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="85.92" x2="147.93" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="82.98" x2="144.93" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="80.01" x2="147.93" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="77.07" x2="144.93" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="74.1" x2="147.93" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="71.16" x2="144.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="62.28" x2="147.93" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="59.34" x2="144.93" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="56.37" x2="147.93" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="53.43" x2="144.93" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="50.46" x2="147.93" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="71.16" x2="195.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.99" y1="74.1" x2="167.46" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="77.07" x2="190.02" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.08" y1="80.01" x2="167.46" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.31" y1="82.98" x2="184.11" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.22" y1="85.92" x2="164.91" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="106.62" x2="162.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="109.56" x2="165.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="112.53" x2="162.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="115.47" x2="165.87" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.44" y1="106.62" x2="181.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="109.56" x2="176.01" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.08" y1="112.53" x2="181.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="115.47" x2="179.31" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.91" y1="118.44" x2="181.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="118.44" x2="237.66" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.42" y1="118.65" x2="238.26" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="130.26" x2="236.52" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="131.16" x2="245.76" y2="131.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="121.38" x2="201.27" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.33" y1="124.35" x2="236.52" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="123.48" x2="245.76" y2="123.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.85" y1="127.29" x2="236.52" y2="126.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="124.35" x2="245.76" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="127.29" x2="245.76" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="130.26" x2="245.76" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="121.38" x2="245.76" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="118.44" x2="245.76" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="115.47" x2="201.27" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="112.53" x2="205.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="204.84" y1="112.38" x2="203.82" y2="111.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.29" y1="109.56" x2="201.27" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="106.62" x2="202.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="103.65" x2="201.27" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="100.71" x2="216.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="103.65" x2="219.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="102.6" x2="219.87" y2="112.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="100.71" x2="258.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="103.65" x2="257.85" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="106.62" x2="257.85" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="109.56" x2="257.85" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="109.56" x2="234.48" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="106.62" x2="251.31" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="103.65" x2="234.69" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="97.74" x2="253.26" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="94.8" x2="234.69" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.12" y1="91.83" x2="252.48" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="88.89" x2="206.22" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.16" y1="85.92" x2="252.48" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="82.98" x2="212.13" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.07" y1="80.01" x2="252.48" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="77.07" x2="218.04" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="220.98" y1="74.1" x2="229.62" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.44" y1="71.16" x2="223.95" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.89" y1="68.19" x2="229.44" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="68.19" x2="286.14" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="65.25" x2="252.63" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="62.28" x2="286.14" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="59.34" x2="252.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="56.37" x2="286.14" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="53.43" x2="252.63" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="50.46" x2="286.14" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="47.52" x2="252.63" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.1" y1="44.55" x2="287.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.97" y1="41.61" x2="301.17" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="50.46" x2="310.05" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="53.43" x2="312.99" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.96" y1="56.37" x2="309.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="59.34" x2="318.9" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.87" y1="62.28" x2="309.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="65.25" x2="323.25" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.25" y1="68.19" x2="309.33" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="71.16" x2="323.25" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="74.1" x2="309.15" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="77.07" x2="283.62" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="80.01" x2="324.12" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="82.98" x2="286.29" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="85.92" x2="328.35" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="88.89" x2="286.29" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="91.83" x2="301.62" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="94.8" x2="286.29" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="97.74" x2="301.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="102.6" x2="315.87" y2="102.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="103.65" x2="286.32" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.56" y1="103.89" x2="287.16" y2="104.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="106.62" x2="301.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.29" y1="109.56" x2="287.46" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="112.53" x2="304.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.11" y1="118.44" x2="328.35" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="121.38" x2="302.22" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.22" y1="124.35" x2="328.35" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="115.47" x2="287.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="118.44" x2="293.01" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="121.38" x2="293.01" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.82" y1="127.29" x2="302.88" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="112.53" x2="318.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="109.56" x2="315.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="106.62" x2="318.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="103.65" x2="315.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="100.71" x2="280.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="103.65" x2="280.89" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="106.62" x2="280.89" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="109.56" x2="280.89" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="108.84" x2="269.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="111.39" x2="273.21" y2="108.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="112.53" x2="231.42" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="112.53" x2="216.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="109.56" x2="219.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="106.62" x2="216.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="97.74" x2="219.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="94.8" x2="216.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="91.83" x2="219.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="94.8" x2="201.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="97.74" x2="202.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="74.1" x2="286.32" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="71.16" x2="252.63" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.8" y1="41.61" x2="236.7" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.55" y1="21.3" x2="285.0" y2="21.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.46" y1="23.88" x2="1157.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.62" y1="26.82" x2="314.4" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.37" y1="29.79" x2="413.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.75" y1="32.73" x2="392.34" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.36" y1="35.7" x2="405.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.49" y1="38.64" x2="398.13" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.97" y1="41.61" x2="403.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.17" y1="44.55" x2="398.97" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.98" y1="47.52" x2="403.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.1" y1="50.46" x2="396.03" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.5" y1="53.43" x2="405.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.85" y1="56.37" x2="383.73" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="59.34" x2="389.94" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.94" y1="62.28" x2="388.8" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="65.25" x2="389.94" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.99" y1="59.34" x2="411.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="62.28" x2="399.12" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="65.25" x2="412.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="68.19" x2="399.18" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="71.16" x2="412.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="74.1" x2="398.37" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="77.07" x2="412.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.05" y1="80.01" x2="399.78" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="82.98" x2="418.02" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.64" y1="81.6" x2="416.64" y2="81.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.96" y1="85.92" x2="399.78" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="88.89" x2="423.27" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="91.83" x2="396.9" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.53" y1="94.8" x2="423.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="97.74" x2="391.56" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.8" y1="97.5" x2="391.8" y2="97.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.62" y1="100.71" x2="423.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="103.65" x2="404.28" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="106.62" x2="423.27" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="109.56" x2="404.97" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="112.53" x2="423.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="115.47" x2="404.97" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="118.44" x2="423.27" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="121.38" x2="404.97" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="119.4" x2="404.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="124.35" x2="423.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="127.29" x2="404.97" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="130.26" x2="423.27" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="133.2" x2="404.85" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.54" y1="136.17" x2="423.27" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="139.11" x2="402.81" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.78" y1="142.08" x2="423.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.56" y1="145.02" x2="408.72" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.9" y1="147.99" x2="427.53" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.19" y1="150.93" x2="421.02" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.4" y1="153.9" x2="425.01" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.57" y1="156.84" x2="422.97" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.97" y1="159.27" x2="422.97" y2="159.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.07" y1="164.7" x2="411.87" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.87" y1="119.1" x2="381.87" y2="98.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="103.65" x2="397.17" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="106.62" x2="396.57" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="109.56" x2="397.17" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="112.53" x2="396.57" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="115.47" x2="397.17" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="118.44" x2="396.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="121.38" x2="397.17" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="124.35" x2="396.57" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="127.29" x2="397.17" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="130.26" x2="396.57" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="133.2" x2="397.17" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="136.17" x2="396.57" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.23" y1="136.17" x2="388.68" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.64" y1="150.6" x2="372.24" y2="150.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.21" y1="163.65" x2="402.51" y2="163.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.97" y1="150.93" x2="345.75" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="147.99" x2="369.63" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.66" y1="145.02" x2="345.75" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="142.08" x2="363.72" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.75" y1="139.11" x2="345.75" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="358.68" y1="136.17" x2="360.06" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="153.9" x2="398.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.77" y1="156.84" x2="345.75" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="159.81" x2="400.83" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="402.21" y2="163.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="397.17" y2="163.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="165.72" x2="382.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="168.66" x2="381.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="171.63" x2="382.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="174.57" x2="381.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="177.54" x2="382.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="180.48" x2="381.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="183.45" x2="382.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="186.39" x2="381.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="189.36" x2="382.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="192.3" x2="381.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="195.27" x2="382.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="198.21" x2="381.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.8" y1="198.21" x2="373.44" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.79" y1="204.12" x2="419.76" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.82" y1="201.18" x2="360.57" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="201.18" x2="275.88" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="204.12" x2="318.72" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="207.09" x2="275.88" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="210.03" x2="316.02" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="213.0" x2="276.15" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="198.21" x2="343.17" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="195.27" x2="275.88" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.7" y1="192.3" x2="343.17" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.73" y1="189.36" x2="327.87" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="189.36" x2="321.15" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="186.39" x2="322.26" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="183.45" x2="321.15" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="180.48" x2="294.69" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.66" y1="177.54" x2="313.08" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="179.43" x2="313.08" y2="174.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="183.45" x2="290.97" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.93" y1="177.24" x2="297.93" y2="177.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.48" y1="174.57" x2="313.08" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.28" y1="171.63" x2="301.71" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="168.66" x2="328.35" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="165.72" x2="322.05" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.44" y1="162.75" x2="328.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="159.81" x2="326.91" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.57" y1="156.84" x2="328.35" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="153.9" x2="327.57" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="171.63" x2="321.15" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="174.57" x2="322.26" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="177.54" x2="321.15" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.2" y1="186.39" x2="271.98" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.5" y1="189.36" x2="315.54" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.05" y1="204.12" x2="343.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="207.09" x2="343.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="210.03" x2="344.34" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="213.0" x2="347.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="350.01" y1="215.94" x2="342.75" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="218.91" x2="352.98" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.73" y1="221.85" x2="342.75" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="224.82" x2="377.43" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.43" y1="227.76" x2="342.75" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="230.73" x2="376.98" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="233.67" x2="342.75" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="236.64" x2="376.83" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="239.58" x2="342.75" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.77" y1="248.46" x2="373.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.84" y1="245.49" x2="376.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="245.49" x2="382.26" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="248.46" x2="381.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="251.4" x2="382.26" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="254.37" x2="381.15" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="257.31" x2="382.26" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="260.28" x2="381.15" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="263.22" x2="382.26" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.1" y1="263.22" x2="341.46" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="266.19" x2="392.88" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.91" y1="269.13" x2="342.15" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="272.1" x2="386.97" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.0" y1="275.04" x2="342.15" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="278.01" x2="381.06" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.09" y1="280.95" x2="342.15" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="280.95" x2="327.87" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="278.01" x2="330.87" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="275.04" x2="327.87" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="272.1" x2="330.87" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="269.13" x2="327.87" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="266.19" x2="330.87" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="263.22" x2="327.87" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="289.83" x2="330.87" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="292.77" x2="327.87" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="295.74" x2="330.87" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="298.68" x2="327.87" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="301.65" x2="330.87" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="304.59" x2="327.87" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.27" y1="304.59" x2="292.56" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="301.65" x2="316.62" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="298.68" x2="292.56" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="295.74" x2="316.62" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="292.77" x2="292.56" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.38" y1="289.83" x2="316.62" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.18" y1="304.59" x2="354.45" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="310.5" x2="419.37" y2="249.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="168.66" x2="404.97" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="171.63" x2="412.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="174.57" x2="404.97" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="177.54" x2="412.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="180.48" x2="404.97" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="181.2" x2="404.97" y2="194.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="183.45" x2="412.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="186.39" x2="404.97" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="189.36" x2="412.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="192.3" x2="404.97" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.79" y1="195.27" x2="412.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.85" y1="198.21" x2="401.97" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="198.21" x2="396.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="195.27" x2="397.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="192.3" x2="396.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="189.36" x2="397.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="186.39" x2="396.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="183.45" x2="397.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="180.48" x2="396.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="177.54" x2="397.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="174.57" x2="396.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="171.63" x2="397.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="168.66" x2="396.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="165.72" x2="397.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.17" y1="162.75" x2="359.37" y2="164.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.17" y1="162.75" x2="345.75" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="310.92" y1="165.72" x2="301.71" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="162.75" x2="307.53" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.03" y1="159.81" x2="301.71" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="156.84" x2="305.37" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.37" y1="153.9" x2="301.71" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.58" y1="150.93" x2="303.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="158.61" x2="273.21" y2="158.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.68" y1="165.72" x2="243.99" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="150.93" x2="245.76" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="147.99" x2="245.76" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.18" y1="150.93" x2="232.47" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="147.99" x2="236.52" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="97.74" x2="318.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="94.8" x2="315.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="91.83" x2="318.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="68.19" x2="345.78" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.78" y1="65.25" x2="343.05" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="62.28" x2="347.88" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="59.34" x2="365.73" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.96" y1="62.28" x2="363.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.77" y1="56.37" x2="357.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.68" y1="53.43" x2="368.04" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.33" y1="50.46" x2="370.98" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.82" y1="47.52" x2="373.95" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.77" y1="44.55" x2="370.05" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="41.61" x2="376.77" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.64" y1="38.64" x2="369.69" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.46" y1="35.7" x2="379.41" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.43" y1="32.73" x2="365.52" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.65" y1="32.73" x2="320.31" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.28" y1="35.7" x2="349.71" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.49" y1="38.64" x2="326.22" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.19" y1="41.61" x2="334.56" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.56" y1="44.55" x2="332.13" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="387.87" y2="42.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="374.37" y2="67.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="75.0" x2="419.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="32.73" x2="438.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.78" y1="35.7" x2="432.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.28" y1="38.64" x2="434.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="51.12" x2="433.11" y2="54.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.44" y1="53.43" x2="435.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="56.37" x2="430.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.14" y1="59.34" x2="441.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="62.28" x2="425.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="65.25" x2="442.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="68.19" x2="425.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="71.16" x2="442.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="74.1" x2="427.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.77" y1="77.07" x2="442.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="80.01" x2="433.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="82.98" x2="442.77" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="85.92" x2="436.47" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="88.89" x2="442.77" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.37" y1="91.83" x2="436.47" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="94.8" x2="446.34" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.28" y1="97.74" x2="436.47" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="100.71" x2="450.45" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="103.65" x2="436.47" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="106.62" x2="450.45" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="109.56" x2="436.47" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="112.53" x2="442.26" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="115.47" x2="441.15" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="118.44" x2="442.26" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="120.57" x2="441.15" y2="120.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="121.38" x2="441.15" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="124.35" x2="442.26" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="127.29" x2="441.15" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="130.26" x2="450.63" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.47" y1="130.26" x2="475.62" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.59" y1="133.2" x2="436.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="136.17" x2="483.6" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="139.11" x2="437.31" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.28" y1="142.08" x2="484.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="145.02" x2="466.89" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="461.88" y1="145.02" x2="443.22" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="147.99" x2="456.72" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.47" y1="150.93" x2="449.13" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.1" y1="153.9" x2="453.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.37" y1="156.0" x2="465.69" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="147.99" x2="472.05" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="147.99" x2="598.08" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.11" y1="150.93" x2="575.88" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.8" y1="149.85" x2="577.8" y2="152.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="153.9" x2="592.17" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.2" y1="156.84" x2="577.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="159.81" x2="586.26" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.29" y1="162.75" x2="577.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="165.72" x2="580.35" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.56" y1="165.0" x2="568.56" y2="176.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="235.5" x2="566.67" y2="188.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.74" y1="183.45" x2="1223.07" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="186.39" x2="1183.68" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="189.36" x2="1223.07" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="192.3" x2="1185.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="195.27" x2="1223.07" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="198.21" x2="1185.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="201.18" x2="1223.07" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="204.12" x2="1183.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.2" y1="207.09" x2="1223.07" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="210.03" x2="1177.32" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.29" y1="213.0" x2="1223.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="215.94" x2="1183.23" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="218.91" x2="1223.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="221.85" x2="1185.57" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="224.82" x2="1223.07" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="227.76" x2="1185.57" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="230.73" x2="1223.07" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="233.67" x2="1183.62" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.65" y1="236.64" x2="1223.07" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="239.58" x2="1177.71" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.84" y1="242.55" x2="1223.07" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="245.49" x2="1182.78" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="248.46" x2="1223.07" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="251.4" x2="1185.57" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="254.37" x2="1223.07" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="257.31" x2="1185.57" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="260.28" x2="1223.07" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="263.22" x2="1184.07" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.1" y1="266.19" x2="1223.07" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="269.13" x2="1178.16" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.39" y1="272.1" x2="1223.07" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="275.04" x2="1182.33" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.3" y1="278.01" x2="1223.07" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="280.95" x2="1185.57" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="283.92" x2="1223.07" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="286.86" x2="1185.57" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="289.83" x2="1223.07" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="292.77" x2="1184.52" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.55" y1="295.74" x2="1223.07" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="298.68" x2="1178.61" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.94" y1="301.65" x2="1223.07" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="304.59" x2="1181.88" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.85" y1="307.56" x2="1223.07" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="310.5" x2="1185.57" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="313.47" x2="1223.07" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="316.41" x2="1185.57" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="319.38" x2="1223.07" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="322.32" x2="1184.97" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.0" y1="325.29" x2="1223.07" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="328.23" x2="1179.06" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.49" y1="331.2" x2="1223.07" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="334.14" x2="1181.43" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="337.11" x2="1223.07" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="340.05" x2="1185.57" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="343.02" x2="1223.07" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="345.96" x2="1185.57" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="348.93" x2="1223.07" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="351.87" x2="1185.42" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.45" y1="354.84" x2="1223.07" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="357.78" x2="1179.51" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.04" y1="360.75" x2="1223.07" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="363.69" x2="1180.98" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.95" y1="366.66" x2="1223.07" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="369.6" x2="1185.57" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="372.57" x2="1223.07" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="375.51" x2="1185.57" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="378.48" x2="1223.07" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="381.42" x2="1185.57" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.9" y1="384.39" x2="1223.07" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="387.33" x2="1179.96" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.59" y1="390.3" x2="1223.07" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="393.24" x2="1180.53" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.5" y1="396.21" x2="1223.07" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="399.15" x2="1185.57" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="402.12" x2="1223.07" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="405.06" x2="1185.57" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="408.03" x2="1223.07" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="410.97" x2="1185.57" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.35" y1="413.94" x2="1223.07" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="416.88" x2="1180.41" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.44" y1="419.85" x2="1223.07" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="422.79" x2="1180.08" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="425.76" x2="1223.07" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="428.7" x2="1185.57" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="431.67" x2="1223.07" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="434.61" x2="1185.57" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="437.58" x2="1223.07" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="440.52" x2="1185.57" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.8" y1="443.49" x2="1223.07" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="446.43" x2="1180.86" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.89" y1="449.4" x2="1223.07" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="452.34" x2="1179.63" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.6" y1="455.31" x2="1223.07" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="458.25" x2="1185.54" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="461.22" x2="1223.07" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1221.3" y1="464.16" x2="1185.57" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="467.13" x2="1218.36" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1215.39" y1="470.07" x2="1185.57" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.25" y1="473.04" x2="1212.45" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1209.48" y1="475.98" x2="1181.31" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.34" y1="478.95" x2="1206.54" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.57" y1="481.89" x2="1179.18" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.15" y1="484.86" x2="1200.63" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.66" y1="487.8" x2="1185.09" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="490.77" x2="1194.72" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="493.71" x2="1185.57" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="496.68" x2="1193.07" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="499.62" x2="1185.57" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="502.59" x2="1193.07" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="505.53" x2="1181.76" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.79" y1="508.5" x2="1193.07" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="511.44" x2="1178.73" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.7" y1="514.41" x2="1193.07" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="517.35" x2="1184.64" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="520.32" x2="1193.07" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="523.26" x2="1185.57" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="526.23" x2="1193.07" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="529.17" x2="1185.57" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.15" y1="532.14" x2="1193.07" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="535.08" x2="1182.21" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.24" y1="538.05" x2="1193.07" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="540.99" x2="1178.28" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.25" y1="543.96" x2="1193.07" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="546.9" x2="1184.19" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="549.87" x2="1193.07" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="552.81" x2="1185.57" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="555.78" x2="1193.07" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="558.72" x2="1185.57" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="561.69" x2="1193.07" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="564.63" x2="1182.66" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.69" y1="567.6" x2="1193.07" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="570.54" x2="1177.83" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.8" y1="573.51" x2="1193.07" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="576.45" x2="1183.74" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="579.42" x2="1193.07" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="582.36" x2="1185.57" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="585.33" x2="1193.07" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="588.27" x2="1185.57" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="591.24" x2="1193.07" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="594.18" x2="1183.11" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.14" y1="597.15" x2="1193.07" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="600.09" x2="1177.2" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.35" y1="603.06" x2="1193.07" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="606.0" x2="1183.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="608.97" x2="1193.07" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="611.91" x2="1185.57" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="614.88" x2="1190.61" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1187.64" y1="617.82" x2="1185.57" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="620.79" x2="1184.52" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="585.0" x2="1154.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="424.5" x2="655.26" y2="454.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1154.37" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1056.87" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="394.95" x2="694.35" y2="394.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1154.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1073.37" y2="459.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="383.16" x2="703.53" y2="383.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1128.87" y1="480.0" x2="1053.87" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="371.34" x2="714.21" y2="371.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="427.32" x2="998.55" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="921.87" y1="435.18" x2="878.55" y2="435.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="874.47" y1="419.85" x2="919.65" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="919.65" y1="419.13" x2="911.31" y2="419.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="416.88" x2="874.11" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.88" y1="413.94" x2="911.49" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="422.79" x2="875.49" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="878.46" y1="425.76" x2="911.4" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="938.25" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="937.05" y2="435.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.37" y1="439.5" x2="1007.55" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="442.68" x2="1055.19" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="427.32" x2="1019.37" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="495.0" x2="1109.37" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="495.0" x2="1154.37" y2="480.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="1139.37" y2="465.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="956.37" y2="297.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="306.39" x2="719.01" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="435.0" x2="1154.37" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="300.48" x2="715.92" y2="300.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="405.0" x2="1124.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="282.75" x2="706.62" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="375.0" x2="1154.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="265.05" x2="697.35" y2="265.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1169.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1094.37" y2="300.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.89" y1="252.27" x2="689.85" y2="252.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.79" y1="254.37" x2="549.63" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="257.31" x2="664.92" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="260.28" x2="549.63" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="263.22" x2="664.92" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="266.19" x2="549.63" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="269.13" x2="664.92" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="272.1" x2="550.8" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.74" y1="275.04" x2="664.92" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="278.01" x2="556.71" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.37" y1="285.0" x2="543.03" y2="273.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="539.97" y2="193.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.94" y1="235.5" x2="548.94" y2="249.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="251.4" x2="692.64" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.61" y1="248.46" x2="660.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.13" y1="245.49" x2="698.55" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="701.52" y1="242.55" x2="662.13" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="239.58" x2="704.46" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="707.43" y1="236.64" x2="670.59" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="669.87" y2="228.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.6" y1="257.4" x2="1087.44" y2="257.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.51" y1="257.31" x2="1087.35" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1084.41" y1="254.37" x2="1080.57" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.44" y1="251.4" x2="1077.6" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1078.5" y1="248.46" x2="1074.66" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.53" y1="245.49" x2="1071.69" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.59" y1="242.55" x2="1068.75" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.62" y1="239.58" x2="1065.78" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.68" y1="236.64" x2="1062.84" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.71" y1="233.67" x2="1059.87" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="230.73" x2="1056.93" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.8" y1="227.76" x2="1053.96" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.86" y1="224.82" x2="1051.02" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1051.89" y1="221.85" x2="1048.05" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.95" y1="218.91" x2="981.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="983.94" y1="215.94" x2="1045.98" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1043.04" y1="213.0" x2="985.17" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="985.47" y1="210.03" x2="1040.07" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1037.13" y1="207.09" x2="985.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.37" y1="210.0" x2="959.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="235.5" x2="625.71" y2="219.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.37" y1="183.0" x2="1004.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="195.0" x2="1001.37" y2="177.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="619.8" y1="235.5" x2="619.8" y2="216.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1010.37" y1="171.0" x2="647.37" y2="171.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="235.5" x2="602.1" y2="207.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="285.0" x2="1124.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1028.37" y1="159.0" x2="641.37" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="235.5" x2="590.28" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="255.0" x2="1124.37" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1046.37" y1="147.0" x2="635.37" y2="147.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="235.5" x2="578.46" y2="194.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="225.0" x2="1124.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.37" y1="135.0" x2="629.37" y2="135.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="219.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="88.5" x2="449.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.28" y1="38.64" x2="464.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.78" y1="35.7" x2="462.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.02" y1="32.73" x2="468.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="473.79" y1="29.79" x2="454.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.79" y1="29.79" x2="424.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.14" y1="59.34" x2="469.47" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="62.28" x2="455.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="65.25" x2="469.47" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="68.19" x2="455.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="71.16" x2="469.47" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="74.1" x2="455.97" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="77.07" x2="469.47" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="80.01" x2="455.97" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="82.98" x2="469.47" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="85.92" x2="456.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.09" y1="88.89" x2="469.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="91.83" x2="462.03" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="94.8" x2="469.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="97.74" x2="463.65" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="100.71" x2="469.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="103.65" x2="463.65" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="106.62" x2="469.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="109.56" x2="463.65" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.23" y1="112.53" x2="469.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="115.47" x2="466.29" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="118.44" x2="469.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="121.38" x2="466.29" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="124.35" x2="470.46" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="472.68" y1="127.29" x2="466.29" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.05" y1="120.0" x2="457.05" y2="96.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="88.89" x2="501.18" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.21" y1="91.83" x2="489.27" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="94.8" x2="490.02" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="85.92" x2="504.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.09" y1="82.98" x2="489.27" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="80.01" x2="510.03" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="77.07" x2="489.27" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="74.1" x2="515.94" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.91" y1="71.16" x2="489.27" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="68.19" x2="521.85" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.82" y1="65.25" x2="489.27" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="62.28" x2="527.76" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.73" y1="59.34" x2="515.64" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="59.34" x2="507.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="56.37" x2="510.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="53.43" x2="507.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="50.46" x2="510.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="47.52" x2="507.87" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="44.55" x2="537.87" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="41.61" x2="540.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="38.64" x2="537.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="35.7" x2="540.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="32.73" x2="537.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="29.79" x2="540.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.97" y1="29.79" x2="563.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.75" y1="32.73" x2="549.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.88" y1="35.7" x2="555.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.49" y1="38.64" x2="553.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.77" y1="29.79" x2="512.97" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="29.79" x2="507.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="29.79" x2="484.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.02" y1="32.73" x2="499.74" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.86" y1="35.7" x2="492.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.28" y1="38.64" x2="495.12" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.64" y1="50.46" x2="494.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="493.44" y1="53.43" x2="496.2" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.69" y1="56.37" x2="490.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="59.34" x2="503.13" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.08" y1="56.37" x2="528.69" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.2" y1="53.43" x2="522.54" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="50.46" x2="524.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.12" y1="38.64" x2="523.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.88" y1="35.7" x2="526.86" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.74" y1="32.73" x2="519.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="32.73" x2="507.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="35.7" x2="510.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="38.64" x2="507.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="41.61" x2="510.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="60.0" x2="494.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="105.0" x2="548.37" y2="66.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1119.87" y2="150.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="105.0" x2="564.87" y2="79.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1169.37" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.19" y1="153.9" x2="1223.07" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="156.84" x2="1184.13" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="159.81" x2="1223.07" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="162.75" x2="1185.57" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="165.72" x2="1223.07" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="168.66" x2="1185.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="171.63" x2="1223.07" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="174.57" x2="1182.72" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.75" y1="177.54" x2="1223.07" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="180.48" x2="1177.77" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="195.0" x2="1124.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1109.37" y1="120.0" x2="1049.37" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.64" y1="50.46" x2="614.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="47.52" x2="585.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.57" y1="44.55" x2="613.17" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.26" y1="41.61" x2="585.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.28" y1="38.64" x2="614.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.78" y1="35.7" x2="582.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.02" y1="32.73" x2="618.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.79" y1="29.79" x2="574.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="29.79" x2="653.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.75" y1="32.73" x2="640.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.99" y1="35.7" x2="645.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.49" y1="38.64" x2="644.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.95" y1="29.79" x2="683.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.75" y1="32.73" x2="670.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="672.99" y1="35.7" x2="675.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="674.49" y1="38.64" x2="674.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.95" y1="29.79" x2="713.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="708.75" y1="32.73" x2="700.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="702.99" y1="35.7" x2="705.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="704.49" y1="38.64" x2="704.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.95" y1="29.79" x2="743.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="738.75" y1="32.73" x2="730.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="732.99" y1="35.7" x2="735.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.49" y1="38.64" x2="734.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="29.79" x2="773.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="768.75" y1="32.73" x2="760.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.99" y1="35.7" x2="765.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="764.49" y1="38.64" x2="764.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="784.95" y1="29.79" x2="803.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="798.75" y1="32.73" x2="790.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="792.99" y1="35.7" x2="795.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.49" y1="38.64" x2="794.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="814.95" y1="29.79" x2="833.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="828.75" y1="32.73" x2="820.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.99" y1="35.7" x2="825.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="824.49" y1="38.64" x2="824.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.95" y1="29.79" x2="893.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.75" y1="32.73" x2="850.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.99" y1="35.7" x2="885.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.49" y1="38.64" x2="854.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.51" y1="41.61" x2="883.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="883.17" y1="44.55" x2="855.57" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.57" y1="47.52" x2="883.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.1" y1="50.46" x2="854.64" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="29.79" x2="923.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.75" y1="32.73" x2="910.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="912.99" y1="35.7" x2="915.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.49" y1="38.64" x2="914.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.95" y1="29.79" x2="953.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.75" y1="32.73" x2="940.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="942.99" y1="35.7" x2="945.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="944.49" y1="38.64" x2="944.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.95" y1="29.79" x2="983.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="978.75" y1="32.73" x2="970.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="972.99" y1="35.7" x2="975.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.49" y1="38.64" x2="974.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="994.95" y1="29.79" x2="1013.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1008.75" y1="32.73" x2="1000.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1002.99" y1="35.7" x2="1005.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.49" y1="38.64" x2="1004.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1024.95" y1="29.79" x2="1043.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.75" y1="32.73" x2="1030.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.99" y1="35.7" x2="1035.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.49" y1="38.64" x2="1034.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.95" y1="29.79" x2="1073.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1068.75" y1="32.73" x2="1060.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1062.99" y1="35.7" x2="1065.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.49" y1="38.64" x2="1064.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.44" y1="53.43" x2="1065.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1067.85" y1="56.37" x2="1060.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.04" y1="59.34" x2="1071.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.95" y1="65.25" x2="1155.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1152.72" y1="62.28" x2="1060.98" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.89" y1="68.19" x2="1162.65" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.09" y1="68.19" x2="1196.04" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.63" y1="68.85" x2="1194.36" y2="67.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.73" y1="68.19" x2="1223.07" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="65.25" x2="1206.66" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.01" y1="62.28" x2="1222.74" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.8" y1="59.34" x2="1208.22" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1207.47" y1="56.37" x2="1216.83" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.89" y1="53.43" x2="1205.31" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.92" y1="50.46" x2="1193.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="47.52" x2="1207.98" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1205.01" y1="44.55" x2="1193.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="41.61" x2="1202.07" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.1" y1="38.64" x2="1192.71" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.51" y1="35.7" x2="1196.16" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.19" y1="32.73" x2="1190.28" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.09" y1="29.79" x2="1193.07" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="26.82" x2="1185.15" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.07" y1="23.88" x2="1193.07" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.68" y1="29.79" x2="1114.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.02" y1="32.73" x2="1148.49" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.26" y1="35.7" x2="1122.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.28" y1="38.64" x2="1146.03" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="41.61" x2="1125.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="44.55" x2="1145.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="47.52" x2="1125.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.64" y1="50.46" x2="1145.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1146.9" y1="53.43" x2="1123.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.92" y1="56.37" x2="1148.1" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1149.78" y1="59.34" x2="1117.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.63" y1="59.34" x2="1087.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.92" y1="56.37" x2="1097.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.33" y1="53.43" x2="1093.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.28" y1="38.64" x2="1094.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.78" y1="35.7" x2="1092.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.02" y1="32.73" x2="1098.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1103.79" y1="29.79" x2="1084.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.86" y1="71.16" x2="1223.07" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="74.1" x2="1072.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.77" y1="77.07" x2="1223.07" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="80.01" x2="1078.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.68" y1="82.98" x2="1223.07" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="85.92" x2="1084.62" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.59" y1="88.89" x2="1223.07" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="91.83" x2="1177.8" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.22" y1="94.8" x2="1223.07" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="97.74" x2="1183.2" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.37" y1="100.71" x2="1223.07" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="103.65" x2="1170.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="100.71" x2="1167.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="103.65" x2="1140.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="100.71" x2="1137.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="103.65" x2="1102.35" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.41" y1="100.71" x2="1124.37" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="97.74" x2="1096.44" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1093.5" y1="94.8" x2="1127.52" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1130.97" y1="91.83" x2="1090.53" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.32" y1="106.62" x2="1123.83" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.46" y1="109.56" x2="1108.26" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1111.23" y1="112.53" x2="1125.69" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="97.74" x2="1140.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="94.8" x2="1137.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="91.83" x2="1140.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.8" y1="91.83" x2="1160.97" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1157.52" y1="94.8" x2="1151.22" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.2" y1="97.74" x2="1155.57" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="97.74" x2="1170.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="94.8" x2="1167.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="91.83" x2="1170.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.91" y1="106.62" x2="1223.07" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="109.56" x2="1184.31" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="112.53" x2="1223.07" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="115.47" x2="1180.98" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.38" y1="118.44" x2="1223.07" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="121.38" x2="1178.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.64" y1="124.35" x2="1223.07" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="127.29" x2="1184.58" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="130.26" x2="1223.07" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="133.2" x2="1185.57" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="136.17" x2="1223.07" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="139.11" x2="1185.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.21" y1="142.08" x2="1223.07" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="145.02" x2="1182.27" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.3" y1="147.99" x2="1223.07" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="150.93" x2="1178.22" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="135.0" x2="1154.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.08" y1="65.25" x2="1192.11" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.76" y1="62.28" x2="1186.05" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.99" y1="59.34" x2="1190.52" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.64" y1="56.37" x2="1191.3" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.87" y1="53.43" x2="1193.46" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1031.22" y1="201.18" x2="1028.85" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1025.97" y1="204.12" x2="1034.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.8" y1="204.12" x2="1010.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.8" y1="204.12" x2="995.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.59" y1="218.91" x2="644.82" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.76" y1="215.94" x2="964.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="963.6" y1="213.0" x2="650.73" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.67" y1="210.03" x2="963.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.13" y1="207.09" x2="656.64" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.58" y1="204.12" x2="959.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="1124.37" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="722.37" y2="258.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="280.95" x2="649.65" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="283.92" x2="664.92" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="286.86" x2="655.56" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="289.83" x2="664.92" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="292.77" x2="661.47" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.44" y1="295.74" x2="664.92" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="659.37" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.94" y1="392.4" x2="758.64" y2="389.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="354.84" x2="744.24" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="745.47" y1="357.78" x2="745.47" y2="362.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="759.84" y1="390.3" x2="742.5" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.53" y1="387.33" x2="756.87" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="384.39" x2="736.59" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="733.62" y1="381.42" x2="754.77" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="378.48" x2="730.68" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="727.71" y1="375.51" x2="754.77" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="372.57" x2="724.77" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="725.22" y1="369.6" x2="728.55" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="369.6" x2="754.77" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="366.66" x2="743.43" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.87" y1="363.69" x2="754.77" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="360.75" x2="745.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.37" y1="360.0" x2="704.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="713.46" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.84" y1="334.14" x2="739.56" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="337.11" x2="720.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.75" y1="340.05" x2="739.56" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="338.25" x2="748.8" y2="338.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.74" y1="343.02" x2="726.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="729.66" y1="345.96" x2="742.26" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="741.96" y1="351.87" x2="754.77" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="348.93" x2="736.62" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="345.96" x2="749.94" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.94" y1="343.02" x2="748.8" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="340.05" x2="749.94" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="331.2" x2="714.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.93" y1="328.23" x2="725.91" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.94" y1="325.29" x2="708.99" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="719.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="678.87" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="341.82" x2="656.58" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="348.93" x2="627.63" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.57" y1="351.87" x2="637.86" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="351.72" x2="637.77" y2="347.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="354.84" x2="633.54" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.48" y1="357.78" x2="641.4" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="360.75" x2="638.22" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="631.62" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="424.5" x2="625.71" y2="412.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.7" y1="410.52" x2="624.3" y2="411.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.15" y1="410.97" x2="625.02" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="408.03" x2="520.11" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.42" y1="409.95" x2="524.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="405.06" x2="625.02" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="402.12" x2="520.11" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="399.15" x2="625.02" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="396.21" x2="520.11" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="393.24" x2="625.02" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="390.3" x2="520.11" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="387.33" x2="625.02" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="384.39" x2="520.11" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="381.42" x2="625.02" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="378.48" x2="520.11" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="375.51" x2="625.02" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="372.57" x2="520.11" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="369.6" x2="625.02" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="366.66" x2="520.11" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="363.69" x2="623.73" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="620.79" y1="360.75" x2="520.11" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="357.78" x2="617.82" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="614.88" y1="354.84" x2="520.11" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.87" y1="347.73" x2="513.27" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="341.82" x2="477.78" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.09" y1="342.6" x2="466.68" y2="342.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="343.02" x2="451.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="345.96" x2="475.92" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.92" y1="348.93" x2="451.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="351.87" x2="475.92" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="359.52" x2="461.85" y2="359.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="450.87" y2="384.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="601.17" y2="590.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="377.25" x2="475.65" y2="377.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="657.57" y2="554.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="532.17" y2="545.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="407.73" x2="496.5" y2="447.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="408.03" x2="506.91" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="410.97" x2="496.5" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="413.94" x2="506.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="416.88" x2="496.5" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="419.85" x2="506.64" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="422.79" x2="496.5" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="425.76" x2="506.64" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="428.7" x2="496.5" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="431.67" x2="506.64" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="434.61" x2="496.5" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="437.58" x2="508.74" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="442.5" x2="515.07" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="410.97" x2="521.01" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="405.06" x2="503.55" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="402.12" x2="506.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="399.15" x2="503.85" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="396.21" x2="506.91" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="393.24" x2="503.85" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="390.3" x2="506.91" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="387.33" x2="503.85" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="384.39" x2="506.91" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="381.42" x2="503.85" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="378.48" x2="506.91" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="375.51" x2="503.85" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="372.57" x2="506.91" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="369.6" x2="503.85" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="366.66" x2="506.91" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="363.69" x2="503.85" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="360.75" x2="506.91" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="357.78" x2="503.85" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="354.84" x2="506.91" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.27" y1="347.73" x2="513.51" y2="347.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.33" y1="424.5" x2="525.33" y2="449.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.66" y1="449.4" x2="516.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="446.43" x2="496.5" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="443.49" x2="518.73" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="440.52" x2="496.5" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.87" y1="439.2" x2="502.77" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.24" y1="424.5" x2="531.24" y2="473.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.37" y1="495.0" x2="537.15" y2="482.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.03" y1="424.5" x2="543.03" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.27" y1="525.0" x2="548.94" y2="507.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="424.5" x2="554.85" y2="513.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.87" y1="525.0" x2="560.76" y2="523.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="424.5" x2="566.67" y2="515.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.37" y1="525.0" x2="572.58" y2="513.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="424.5" x2="578.46" y2="499.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="599.37" y1="498.0" x2="599.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="424.5" x2="590.28" y2="473.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.87" y1="498.0" x2="620.37" y2="496.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="424.5" x2="602.1" y2="461.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.37" y1="498.0" x2="641.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="424.5" x2="613.92" y2="452.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.87" y1="510.0" x2="675.87" y2="505.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.44" y1="424.5" x2="643.44" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.37" y1="330.0" x2="794.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="313.5" x2="812.37" y2="316.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="316.41" x2="852.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="313.47" x2="826.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="310.5" x2="852.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="307.56" x2="825.48" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.54" y1="304.59" x2="853.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.62" y1="314.25" x2="862.62" y2="315.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="313.47" x2="897.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="316.41" x2="870.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="319.38" x2="897.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="322.32" x2="870.87" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="310.5" x2="897.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="307.56" x2="870.87" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.66" y1="304.59" x2="897.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="906.87" y1="315.0" x2="906.87" y2="325.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="322.32" x2="825.63" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="319.38" x2="852.87" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="663.96" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.52" y1="325.29" x2="613.44" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.47" y1="328.23" x2="664.92" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="331.2" x2="609.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.84" y1="334.14" x2="664.92" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.96" y1="337.11" x2="615.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="340.05" x2="642.69" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.69" y1="343.02" x2="621.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.66" y1="345.96" x2="638.34" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="599.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.03" y1="351.87" x2="611.91" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.97" y1="348.93" x2="534.0" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.94" y1="345.96" x2="606.0" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.06" y1="343.02" x2="539.91" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.85" y1="340.05" x2="600.09" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="597.15" y1="337.11" x2="545.82" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="503.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="335.91" x2="473.28" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.77" y1="331.2" x2="453.03" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="334.14" x2="457.95" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.18" y1="337.11" x2="451.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="340.05" x2="461.73" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.22" y1="328.23" x2="455.97" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.94" y1="325.29" x2="459.45" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.69" y1="318.18" x2="444.87" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.47" y1="609.0" x2="599.37" y2="608.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.37" y1="615.0" x2="551.97" y2="597.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="306.39" x2="450.51" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="492.27" y1="614.1" x2="491.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="294.57" x2="437.94" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.87" y1="285.0" x2="420.87" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="431.37" y1="615.0" x2="414.87" y2="598.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="270.93" x2="434.94" y2="270.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="279.0" x2="408.87" y2="607.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.37" y1="615.0" x2="366.69" y2="610.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="644.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="292.5" x2="501.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="276.84" x2="510.03" y2="276.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="288.66" x2="453.03" y2="288.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="408.87" y2="279.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="281.43" x2="364.47" y2="313.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="283.92" x2="393.81" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="286.86" x2="390.84" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.9" y1="289.83" x2="396.27" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="292.77" x2="384.93" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.99" y1="295.74" x2="396.27" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="298.68" x2="379.02" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.08" y1="301.65" x2="396.27" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="304.59" x2="373.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="307.56" x2="396.27" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="310.5" x2="367.2" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="313.47" x2="396.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="316.41" x2="364.47" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="319.38" x2="396.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="322.32" x2="364.47" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="325.29" x2="396.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="328.23" x2="364.47" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="331.2" x2="396.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="334.14" x2="364.47" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="337.11" x2="396.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="340.05" x2="364.47" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="343.02" x2="396.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="345.96" x2="364.47" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="348.93" x2="396.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="351.87" x2="364.47" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="354.84" x2="396.27" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="357.78" x2="364.47" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="360.75" x2="396.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="363.69" x2="364.47" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="366.66" x2="396.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="369.6" x2="364.47" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="372.57" x2="396.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="375.51" x2="364.47" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="378.48" x2="396.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="381.42" x2="364.47" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.95" y1="384.39" x2="396.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="387.33" x2="367.56" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.76" y1="390.3" x2="396.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="393.24" x2="368.97" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.58" y1="396.21" x2="396.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="399.15" x2="367.35" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="402.12" x2="396.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="405.06" x2="364.47" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="408.03" x2="396.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="410.97" x2="364.47" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="413.94" x2="396.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="416.88" x2="364.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="419.85" x2="396.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="422.79" x2="364.47" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="425.76" x2="396.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="428.7" x2="364.47" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="431.67" x2="396.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="434.61" x2="364.47" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="437.58" x2="396.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="440.52" x2="364.47" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="443.49" x2="396.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="446.43" x2="364.47" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="449.4" x2="396.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="452.34" x2="364.47" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="455.31" x2="396.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="458.25" x2="364.47" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="461.22" x2="396.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="464.16" x2="364.47" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="467.13" x2="396.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="470.07" x2="362.13" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.19" y1="473.04" x2="396.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="475.98" x2="356.22" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.28" y1="478.95" x2="396.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="481.89" x2="350.31" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.37" y1="484.86" x2="396.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="487.8" x2="392.7" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="490.77" x2="396.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="493.71" x2="393.06" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="496.68" x2="396.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="499.62" x2="393.06" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="502.59" x2="396.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="505.53" x2="391.29" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="508.5" x2="396.27" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.1" y1="511.44" x2="391.29" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="514.41" x2="392.16" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.05" y1="510.0" x2="382.05" y2="496.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="493.71" x2="364.65" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="494.13" x2="364.65" y2="485.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="490.77" x2="366.39" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="487.8" x2="364.65" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.03" y1="487.8" x2="344.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="490.77" x2="356.31" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="493.71" x2="343.29" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="496.68" x2="356.31" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="499.62" x2="343.29" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.41" y1="502.59" x2="357.3" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="505.53" x2="345.87" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="508.5" x2="357.48" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="511.44" x2="345.87" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="514.41" x2="357.48" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="517.35" x2="345.87" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="520.32" x2="360.09" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="523.26" x2="345.87" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="526.23" x2="360.09" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="529.17" x2="345.87" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="532.14" x2="352.62" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="535.08" x2="351.48" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="538.05" x2="352.62" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="540.99" x2="351.48" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="543.96" x2="352.62" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="546.9" x2="351.48" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.5" y1="549.87" x2="360.09" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="552.81" x2="216.54" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="549.87" x2="329.91" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="546.9" x2="215.97" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="543.96" x2="327.48" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="540.99" x2="215.97" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="538.05" x2="327.48" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="540.0" x2="336.69" y2="519.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.91" y1="532.14" x2="360.09" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.69" y1="523.5" x2="366.69" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.7" y1="535.08" x2="314.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="299.7" y1="535.08" x2="299.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.7" y1="535.08" x2="284.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.7" y1="535.08" x2="269.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.7" y1="535.08" x2="254.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.7" y1="535.08" x2="237.96" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="535.08" x2="231.42" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="535.65" x2="227.4" y2="535.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="532.14" x2="232.32" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="529.17" x2="231.42" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="526.23" x2="232.32" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="523.26" x2="231.42" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="520.32" x2="232.32" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="517.35" x2="231.42" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="514.41" x2="232.32" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="511.44" x2="231.42" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="508.5" x2="232.32" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="505.53" x2="231.42" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.74" y1="505.53" x2="215.97" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="502.59" x2="240.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="499.62" x2="215.97" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="496.68" x2="240.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="493.71" x2="215.97" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="490.77" x2="240.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="508.5" x2="215.97" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="511.44" x2="223.47" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="514.41" x2="215.97" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="517.35" x2="223.47" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="520.32" x2="215.97" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="523.26" x2="223.47" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="526.23" x2="215.97" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="529.17" x2="223.47" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.59" y1="532.14" x2="215.97" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="535.08" x2="225.78" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="224.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.52" y1="561.69" x2="225.39" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.45" y1="558.72" x2="274.56" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.56" y1="561.69" x2="269.25" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.68" y1="564.63" x2="274.56" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.71" y1="567.6" x2="272.88" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="570.54" x2="274.86" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="573.51" x2="272.46" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.14" y1="576.45" x2="273.96" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="579.42" x2="268.17" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="582.36" x2="261.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.03" y1="585.33" x2="275.37" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="588.27" x2="267.0" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.94" y1="591.24" x2="277.77" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="594.18" x2="272.91" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.85" y1="597.15" x2="277.77" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="600.0" x2="299.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.42" y1="603.06" x2="296.76" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.82" y1="600.09" x2="305.04" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.73" y1="600.09" x2="336.78" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="600.09" x2="342.87" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="603.06" x2="339.87" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="606.0" x2="342.87" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="608.97" x2="339.87" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="611.91" x2="342.87" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="603.06" x2="360.09" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="600.09" x2="345.99" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.12" y1="606.0" x2="357.57" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.34" y1="608.97" x2="355.8" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="597.15" x2="290.97" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="594.18" x2="360.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="591.24" x2="290.97" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="588.27" x2="360.09" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="585.33" x2="293.4" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="582.36" x2="360.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="579.42" x2="294.78" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="576.45" x2="360.09" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="573.51" x2="294.78" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.91" y1="570.54" x2="360.09" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="567.6" x2="294.06" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="564.63" x2="360.09" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="561.69" x2="294.18" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="558.72" x2="360.09" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="555.78" x2="293.49" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="555.78" x2="283.8" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.8" y1="558.72" x2="284.94" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="561.69" x2="283.8" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.28" y1="555.78" x2="219.48" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="523.26" x2="35.67" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="532.14" x2="125.61" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="120.96" y1="535.08" x2="35.67" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="538.05" x2="118.02" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.05" y1="540.99" x2="35.67" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="543.96" x2="112.11" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.14" y1="546.9" x2="35.67" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="549.87" x2="106.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="552.81" x2="35.67" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="555.78" x2="106.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="558.72" x2="35.67" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="561.69" x2="106.77" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="564.63" x2="35.67" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="567.6" x2="106.77" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="570.54" x2="35.67" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="573.51" x2="82.23" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.81" y1="573.66" x2="86.73" y2="571.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.02" y1="576.45" x2="35.67" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="579.42" x2="77.22" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="582.36" x2="35.67" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="585.33" x2="76.02" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.26" y1="588.27" x2="35.67" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="591.24" x2="77.49" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.65" y1="594.18" x2="35.67" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="597.15" x2="83.76" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.01" y1="597.15" x2="125.61" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="600.09" x2="35.67" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="603.06" x2="125.61" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="606.0" x2="35.67" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="608.97" x2="126.57" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="594.18" x2="99.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.28" y1="591.24" x2="120.78" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.81" y1="588.27" x2="102.48" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="585.33" x2="114.87" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.9" y1="582.36" x2="102.75" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.52" y1="579.42" x2="108.96" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="576.45" x2="99.75" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.54" y1="573.51" x2="106.77" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="123.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="113.37" y2="552.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.47" y1="549.87" x2="124.86" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.96" y1="520.32" x2="202.77" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="517.35" x2="171.24" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="514.41" x2="202.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="511.44" x2="171.24" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="508.5" x2="202.77" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="505.53" x2="171.24" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="502.59" x2="202.77" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="499.62" x2="168.9" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.25" y1="487.8" x2="202.77" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="484.86" x2="170.64" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="484.86" x2="146.97" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="487.8" x2="149.88" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="481.89" x2="146.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="475.98" x2="149.88" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="473.04" x2="146.97" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="470.07" x2="149.88" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="460.41" x2="166.74" y2="460.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="443.49" x2="170.34" y2="442.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="458.25" x2="146.97" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="455.31" x2="149.88" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="452.34" x2="146.97" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="449.4" x2="60.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="452.34" x2="85.02" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.19" y1="455.31" x2="60.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="458.25" x2="77.7" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.47" y1="461.22" x2="60.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="464.16" x2="76.02" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="467.13" x2="60.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="470.07" x2="77.01" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.51" y1="473.04" x2="60.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="475.98" x2="81.45" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.15" y1="490.77" x2="202.77" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="493.71" x2="72.09" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.06" y1="496.68" x2="202.77" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="464.16" x2="102.75" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.27" y1="461.22" x2="202.77" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="458.25" x2="169.98" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="455.31" x2="202.77" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="452.34" x2="170.64" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="446.43" x2="177.45" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="440.52" x2="168.93" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.44" y1="437.58" x2="60.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="440.52" x2="127.92" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.24" y1="443.49" x2="60.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="446.43" x2="126.21" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="452.34" x2="93.75" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.58" y1="455.31" x2="126.21" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.87" y1="458.25" x2="101.04" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="446.43" x2="149.88" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="443.49" x2="146.97" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="440.52" x2="149.88" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="449.4" x2="202.77" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="437.58" x2="212.49" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="434.61" x2="215.43" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="431.67" x2="222.87" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="428.7" x2="210.12" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.33" y1="425.76" x2="223.11" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.97" y1="422.79" x2="179.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.35" y1="419.85" x2="217.17" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="416.88" x2="175.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.08" y1="413.94" x2="158.52" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="412.47" x2="155.37" y2="421.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="410.97" x2="178.65" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="408.03" x2="159.12" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="405.06" x2="178.65" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="402.12" x2="158.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.68" y1="399.15" x2="178.65" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="396.21" x2="156.48" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.07" y1="393.24" x2="180.87" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.16" y1="390.3" x2="152.13" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.16" y1="387.33" x2="176.22" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="174.72" y1="384.39" x2="143.1" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.64" y1="384.39" x2="60.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="387.33" x2="119.61" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.64" y1="390.3" x2="60.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="393.24" x2="113.7" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.29" y1="396.21" x2="60.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="399.15" x2="111.06" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.86" y1="402.12" x2="60.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="405.06" x2="109.62" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="408.03" x2="60.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="410.97" x2="109.62" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.22" y1="413.94" x2="60.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="416.88" x2="111.45" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.68" y1="419.85" x2="60.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="422.79" x2="114.63" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.57" y1="425.76" x2="60.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="428.7" x2="120.78" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.89" y1="431.67" x2="60.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="434.61" x2="161.79" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.21" y1="431.67" x2="140.85" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.99" y1="428.7" x2="157.98" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.77" y1="425.76" x2="151.2" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="154.14" y1="422.79" x2="158.19" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.42" y1="419.85" x2="156.09" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.29" y1="416.88" x2="162.3" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.66" y1="413.94" x2="216.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.23" y1="410.97" x2="210.12" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="408.03" x2="219.18" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.74" y1="405.06" x2="210.12" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="402.12" x2="215.76" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.77" y1="399.15" x2="212.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.87" y1="397.5" x2="232.05" y2="391.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="368.85" x2="266.52" y2="368.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="363.69" x2="328.86" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="360.75" x2="269.88" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="357.78" x2="328.86" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="354.84" x2="269.88" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="351.87" x2="329.46" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.46" y1="351.84" x2="269.88" y2="351.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="327.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="340.71" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="345.0" x2="357.87" y2="322.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.0" y1="334.14" x2="351.27" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="322.5" x2="357.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="366.66" x2="269.82" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.28" y1="369.6" x2="328.86" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="372.57" x2="269.88" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="375.51" x2="328.86" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="378.48" x2="269.88" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="380.67" x2="258.03" y2="384.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.87" y1="417.0" x2="271.53" y2="401.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.61" y1="401.34" x2="284.61" y2="412.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="418.65" x2="296.37" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.35" y1="461.22" x2="302.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="304.68" y1="464.16" x2="310.38" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="307.44" y1="467.13" x2="305.91" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="308.37" y1="492.0" x2="306.87" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="577.68" x2="284.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.35" y1="603.06" x2="331.29" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.65" y1="606.0" x2="325.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.4" y1="608.97" x2="326.94" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.67" y1="552.6" x2="475.17" y2="584.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.37" y1="555.0" x2="692.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.87" y1="510.0" x2="711.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="719.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="413.94" x2="350.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="410.97" x2="325.89" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="408.03" x2="351.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="405.06" x2="326.64" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="402.12" x2="351.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.42" y1="399.15" x2="326.64" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="396.21" x2="347.19" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.77" y1="393.24" x2="326.64" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.45" y1="390.3" x2="346.98" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.21" y1="387.33" x2="308.94" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.09" y1="384.39" x2="328.95" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="381.42" x2="303.12" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="401.34" x2="290.52" y2="418.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="216.69" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="209.37" y2="388.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.29" y1="360.75" x2="60.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="363.69" x2="161.52" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="366.66" x2="60.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="369.6" x2="161.31" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="372.57" x2="60.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="375.51" x2="161.31" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="378.48" x2="60.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="381.42" x2="163.98" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.32" y1="357.78" x2="60.27" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="354.84" x2="181.38" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="185.37" y2="343.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="195.87" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.05" y1="360.0" x2="235.02" y2="362.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="357.06" x2="246.93" y2="357.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="345.0" x2="203.19" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="328.23" x2="217.26" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.26" y1="325.29" x2="216.15" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="322.32" x2="217.26" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.74" y1="331.2" x2="60.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="334.14" x2="161.55" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="337.11" x2="60.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="340.05" x2="161.31" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="343.02" x2="60.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="345.96" x2="161.31" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="348.93" x2="60.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="351.87" x2="163.95" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.87" y1="270.0" x2="252.87" y2="260.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="240.81" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="238.59" y2="246.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="245.49" x2="231.15" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="231.15" y2="254.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="254.37" x2="232.26" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="251.4" x2="231.15" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="248.46" x2="232.26" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="226.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.75" y1="236.64" x2="253.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="233.67" x2="226.59" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="230.73" x2="252.18" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="227.76" x2="226.59" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="224.82" x2="252.18" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="221.85" x2="226.59" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="218.91" x2="252.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="215.94" x2="226.59" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.36" y1="213.0" x2="253.38" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.54" y1="236.64" x2="316.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.55" y1="245.49" x2="254.22" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="386.97" y1="198.21" x2="391.8" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="406.86" y1="207.09" x2="408.9" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.87" y1="225.0" x2="404.37" y2="226.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="489.9" y2="259.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="456.87" y2="238.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="501.87" y2="208.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.27" y1="222.0" x2="434.37" y2="200.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="175.14" x2="434.37" y2="160.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="145.02" x2="601.02" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.99" y1="142.08" x2="504.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="139.11" x2="606.93" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.9" y1="136.17" x2="556.77" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.78" y1="133.2" x2="612.84" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.81" y1="130.26" x2="564.75" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.69" y1="127.29" x2="618.75" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.72" y1="124.35" x2="570.66" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.6" y1="121.38" x2="791.82" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.97" y1="118.44" x2="576.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.51" y1="115.47" x2="787.74" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="786.51" y1="112.53" x2="582.48" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.42" y1="109.56" x2="785.37" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="106.62" x2="589.65" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.04" y1="103.65" x2="785.37" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="100.71" x2="594.51" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.17" y1="97.74" x2="786.42" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="787.65" y1="94.8" x2="595.17" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="594.0" y1="91.83" x2="788.85" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="791.58" y1="88.89" x2="591.75" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.24" y1="150.93" x2="560.52" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="150.93" x2="553.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="153.9" x2="554.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="156.84" x2="553.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="159.81" x2="554.94" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="162.75" x2="553.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.57" x2="553.8" y2="179.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.72" x2="554.94" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="168.66" x2="553.8" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="171.63" x2="554.94" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="174.57" x2="553.8" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="177.54" x2="554.94" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.06" y1="180.48" x2="546.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="183.45" x2="554.16" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="186.39" x2="546.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="189.36" x2="554.16" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="192.3" x2="548.4" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.37" y1="195.27" x2="554.16" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.22" y1="150.93" x2="547.53" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.94" y1="150.93" x2="523.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="153.9" x2="524.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="156.84" x2="513.72" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.56" y1="153.9" x2="510.78" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.81" y1="150.93" x2="515.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.43" y1="221.85" x2="666.69" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="224.82" x2="662.13" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="655.26" y2="235.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="318.18" x2="611.19" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.87" y1="366.0" x2="667.17" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="512.07" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="318.18" x2="456.69" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="489.9" y2="365.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.98" y1="499.62" x2="78.0" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="600.0" x2="173.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.56" y1="614.88" x2="35.67" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="617.82" x2="185.37" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.79" y1="620.79" x2="35.67" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="623.73" x2="128.13" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.18" y1="626.7" x2="35.67" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="629.64" x2="125.52" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.88" y1="632.61" x2="35.67" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="635.55" x2="127.41" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="131.79" y1="638.52" x2="35.67" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="611.91" x2="169.8" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.02" y1="623.73" x2="140.64" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.59" y1="626.7" x2="188.25" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.08" y1="629.64" x2="143.22" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.89" y1="632.61" x2="193.05" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="196.29" y1="635.55" x2="141.33" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="136.98" y1="638.52" x2="203.43" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.92" y1="56.37" x2="467.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.33" y1="53.43" x2="463.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="92.73" x2="249.3" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.64" y1="95.07" x2="202.17" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="97.44" x2="254.01" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.57" y1="99.0" x2="242.37" y2="85.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="99.78" x2="202.17" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="102.15" x2="258.57" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="104.49" x2="202.17" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="106.86" x2="258.57" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="109.2" x2="202.17" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.64" y1="111.57" x2="258.57" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="113.91" x2="205.98" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.35" y1="116.28" x2="258.57" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="118.62" x2="210.69" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.06" y1="120.99" x2="258.57" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="123.33" x2="215.4" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.77" y1="125.7" x2="258.57" y2="125.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="128.04" x2="232.11" y2="128.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.48" y1="130.41" x2="257.85" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="256.29" y1="132.75" x2="236.82" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.87" y1="144.9" x2="233.79" y2="145.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.79" y1="146.88" x2="256.47" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="149.25" x2="233.67" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="151.59" x2="252.78" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="153.96" x2="233.67" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="156.3" x2="251.37" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="158.67" x2="233.43" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.06" y1="161.01" x2="251.37" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="163.38" x2="228.72" y2="163.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="165.72" x2="249.45" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.11" y1="168.09" x2="227.07" y2="168.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="170.43" x2="244.74" y2="170.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="172.8" x2="227.07" y2="172.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="175.14" x2="243.87" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="177.51" x2="227.07" y2="177.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="179.85" x2="243.87" y2="179.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="182.22" x2="227.07" y2="182.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="184.56" x2="243.87" y2="184.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="241.77" y1="186.93" x2="228.0" y2="186.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="162.9" x2="282.87" y2="162.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="161.01" x2="282.87" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="158.67" x2="263.97" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="156.3" x2="282.87" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="153.96" x2="263.97" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="151.59" x2="282.87" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="149.25" x2="261.27" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.27" y1="146.88" x2="281.85" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.51" y1="144.54" x2="261.27" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.9" y1="142.17" x2="277.14" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="142.17" x2="296.97" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="139.83" x2="289.17" y2="139.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="137.46" x2="296.97" y2="137.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="135.12" x2="289.17" y2="135.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="132.75" x2="296.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="130.41" x2="289.17" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="130.2" x2="289.17" y2="148.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="124.8" x2="324.57" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="123.33" x2="326.34" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.71" y1="120.99" x2="279.87" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="118.62" x2="329.1" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.13" y1="116.28" x2="279.87" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="113.91" x2="329.16" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.16" y1="111.57" x2="279.87" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="109.2" x2="329.19" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.22" y1="106.86" x2="279.87" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="104.49" x2="329.25" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.28" y1="102.15" x2="279.87" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="99.78" x2="329.28" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.31" y1="97.44" x2="283.86" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.2" y1="95.07" x2="329.34" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="92.73" x2="288.57" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.77" y1="93.3" x2="264.27" y2="93.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="95.07" x2="264.27" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="97.44" x2="274.47" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="99.78" x2="264.27" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="102.15" x2="274.47" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="104.49" x2="264.27" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="106.86" x2="274.47" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="109.2" x2="264.27" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="111.57" x2="274.47" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="113.91" x2="264.27" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.93" y1="90.36" x2="203.91" y2="90.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.28" y1="88.02" x2="244.59" y2="88.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="144.54" x2="296.97" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="146.88" x2="289.17" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="399.75" y2="236.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="540.21" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="226.65" x2="327.72" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.99" y1="225.0" x2="194.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="105.0" x2="269.37" y2="88.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.15" y1="71.82" x2="337.05" y2="75.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.13" y1="213.9" x2="401.37" y2="213.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="287.37" y2="175.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="293.01" y2="146.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.87" y1="119.1" x2="351.87" y2="75.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="138.84" x2="218.43" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="158.61" x2="257.85" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="403.47" x2="192.87" y2="404.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.87" y1="426.0" x2="179.43" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="510.0" x2="74.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.37" y1="128.4" x2="191.37" y2="89.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="47.01" x2="354.06" y2="47.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="45.0" x2="479.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.37" y1="126.3" x2="554.67" y2="126.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="397.05" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.47" y1="156.0" x2="317.37" y2="155.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.43" y1="138.84" x2="201.81" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="161.25" x2="650.34" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.88" y1="161.25" x2="666.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.45" y1="161.25" x2="663.45" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.34" y1="182.58" x2="636.12" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="171.9" x2="643.23" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="675.72" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.94" y1="168.36" x2="675.72" y2="168.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="679.29" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.48" y1="171.9" x2="699.48" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="730.35" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="726.78" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.24" y1="175.47" x2="730.35" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="175.47" x2="739.08" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="168.36" x2="746.19" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="175.47" x2="762.42" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="161.25" x2="765.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="778.26" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="774.72" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.42" y1="182.58" x2="762.42" y2="186.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="713.7" y1="175.47" x2="703.02" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="825.78" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="822.21" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="182.58" x2="845.97" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="171.9" x2="849.54" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="869.73" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="873.3" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="893.49" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="897.03" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="917.25" y1="161.25" x2="927.9" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="29.37" y1="15.0" x2="29.37" y2="645.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="31.8" x2="76.17" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="36.0" x2="78.27" y2="40.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.9" y1="36.0" x2="96.3" y2="36.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="38.1" x2="105.9" y2="42.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="29.7" x2="110.1" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.53" y1="31.8" x2="117.63" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.33" y1="42.3" x2="129.33" y2="33.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="122.82" y1="81.84" x2="98.01" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.76" y1="81.84" x2="33.03" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="33.03" y1="164.52" x2="33.03" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.01" y1="188.16" x2="122.82" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="188.16" x2="190.14" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.04" y1="101.1" x2="203.04" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.73" y1="138.9" x2="233.73" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="245.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="251.67" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="89.22" x2="240.48" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.78" y1="46.08" x2="255.15" y2="31.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.32" y1="31.68" x2="298.29" y2="45.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="327.84" y2="61.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="334.92" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.82" y1="51.72" x2="360.93" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.37" y1="52.5" x2="411.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="332.73" y1="101.1" x2="332.73" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="138.3" x2="351.42" y2="138.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.04" y1="138.9" x2="302.04" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="293.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="287.07" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.62" y1="88.92" x2="298.59" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.67" y1="151.2" x2="293.67" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="159.0" x2="245.07" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="207.87" x2="212.22" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="212.22" y1="236.82" x2="212.22" y2="242.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.19" y1="236.82" x2="251.19" y2="213.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="213.18" x2="266.55" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.48" y1="266.1" x2="247.29" y2="266.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.85" y1="281.46" x2="224.85" y2="288.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.29" y1="303.9" x2="261.48" y2="303.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.92" y1="288.54" x2="283.92" y2="281.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.3" y1="241.8" x2="409.44" y2="241.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.94" y1="228.18" x2="413.94" y2="221.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="409.44" y1="208.2" x2="399.3" y2="208.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.13" y1="172.68" x2="533.13" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.64" y1="157.32" x2="575.64" y2="172.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.17" y1="95.58" x2="634.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.17" y1="80.1" x2="627.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="70.5" x2="629.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="75.3" x2="654.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="85.98" x2="664.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="90.78" x2="649.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.97" y1="80.1" x2="656.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="649.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="664.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="60.0" x2="651.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.77" y1="75.3" x2="687.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.97" y1="70.5" x2="689.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="697.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="687.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="682.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="697.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="712.77" y1="93.18" x2="712.77" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="712.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="70.5" x2="719.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="727.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.77" y1="85.98" x2="727.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="93.18" x2="717.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="93.18" x2="749.97" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="757.17" y1="93.18" x2="742.77" y2="93.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="80.1" x2="757.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.97" y1="80.1" x2="749.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="742.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="757.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.27" y1="75.3" x2="776.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="783.27" y1="85.98" x2="785.67" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="778.47" y1="80.1" x2="778.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="785.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="771.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="801.27" y1="80.1" x2="803.67" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="75.3" x2="837.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="839.97" y1="70.5" x2="839.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="847.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.17" y1="85.98" x2="844.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="832.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.37" y1="52.5" x2="891.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="892.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.77" y1="85.98" x2="902.37" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="88.38" x2="897.57" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="80.1" x2="899.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="907.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="75.3" x2="927.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.77" y1="85.98" x2="937.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="929.97" y1="80.1" x2="929.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="922.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="937.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="75.3" x2="957.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="959.97" y1="70.5" x2="959.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="967.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="85.98" x2="967.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="90.78" x2="952.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="952.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="75.3" x2="987.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="85.98" x2="997.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="90.78" x2="982.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.97" y1="80.1" x2="989.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="982.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="997.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="75.3" x2="1017.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.97" y1="70.5" x2="1019.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1027.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="85.98" x2="1027.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="90.78" x2="1012.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1012.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="75.3" x2="1047.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="70.5" x2="1049.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1057.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="85.98" x2="1057.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="90.78" x2="1042.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1042.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.77" y1="75.3" x2="1077.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="85.98" x2="1087.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="90.78" x2="1072.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1079.97" y1="80.1" x2="1079.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1072.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1087.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.27" y1="75.3" x2="1106.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="85.98" x2="1115.67" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="90.78" x2="1101.27" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1108.47" y1="80.1" x2="1108.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1101.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1115.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="90.0" x2="1176.87" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1113.27" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1115.67" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="108.63" x2="1072.77" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1089.87" y2="129.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1097.1" y2="127.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="139.2" x2="1107.75" y2="141.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="157.2" x2="1107.75" y2="157.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="159.6" x2="1105.35" y2="169.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="171.6" x2="1089.87" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="187.2" x2="1097.1" y2="201.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="192.0" x2="1107.75" y2="194.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="194.4" x2="1105.35" y2="196.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="217.2" x2="1107.75" y2="217.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="224.4" x2="1110.15" y2="229.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="224.4" x2="1089.87" y2="224.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="247.2" x2="1097.1" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="254.4" x2="1114.95" y2="254.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="247.2" x2="1112.55" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="286.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="284.4" x2="1089.87" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="307.2" x2="1107.75" y2="307.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="309.6" x2="1105.35" y2="319.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="314.4" x2="1089.87" y2="314.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="337.2" x2="1092.27" y2="337.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="344.4" x2="1097.1" y2="344.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="344.4" x2="1099.5" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="349.2" x2="1105.35" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="344.4" x2="1114.95" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="367.2" x2="1112.55" y2="367.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="374.4" x2="1110.15" y2="379.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1099.5" y2="376.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="374.4" x2="1097.1" y2="374.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1097.1" y2="381.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1089.87" y2="399.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1097.1" y2="397.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="404.4" x2="1099.5" y2="406.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="404.4" x2="1114.95" y2="404.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="397.2" x2="1112.55" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1099.5" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="434.4" x2="1097.1" y2="434.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1097.1" y2="441.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1089.87" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1097.1" y2="457.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="464.4" x2="1099.5" y2="466.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1105.35" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1107.75" y2="471.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="487.2" x2="1107.75" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="494.4" x2="1114.95" y2="496.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1089.87" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1099.5" y2="499.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1089.87" y1="517.2" x2="1099.5" y2="526.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="524.4" x2="1112.55" y2="524.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="547.2" x2="1112.55" y2="561.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1099.5" y2="559.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1089.87" y2="547.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="517.2" x2="1089.87" y2="517.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1043.07" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1052.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="585.18" x2="1052.67" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="589.98" x2="1038.27" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1041.87" y1="600.0" x2="1056.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="592.38" x2="1022.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1020.27" y1="585.18" x2="1010.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="990.27" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="992.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="579.3" x2="992.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="574.5" x2="978.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="569.7" x2="962.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="574.5" x2="948.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="953.07" y1="585.18" x2="950.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="955.47" y1="587.58" x2="957.87" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="585.18" x2="930.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.27" y1="574.5" x2="932.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="569.7" x2="932.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="923.07" y1="569.7" x2="918.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="574.5" x2="888.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="569.7" x2="902.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="900.27" y1="585.18" x2="902.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.47" y1="585.18" x2="890.67" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="592.38" x2="872.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="863.07" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="858.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="592.38" x2="828.27" y2="592.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="579.3" x2="842.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="574.5" x2="828.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="863.07" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="872.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="569.7" x2="872.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.37" y1="607.5" x2="786.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="589.8" x2="770.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="580.2" x2="770.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="589.8" x2="752.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="585.0" x2="738.27" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="753.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="741.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="747.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.87" y1="561.0" x2="777.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="555.0" x2="777.87" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="713.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="722.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.67" y1="587.4" x2="692.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="585.0" x2="685.47" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="587.4" x2="683.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.67" y1="587.4" x2="648.27" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.67" y1="587.4" x2="632.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="623.07" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="618.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.67" y1="587.4" x2="602.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.47" y1="580.2" x2="590.67" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="580.2" x2="570.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.67" y1="582.6" x2="525.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.47" y1="582.6" x2="518.07" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.87" y1="600.0" x2="528.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="495.27" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="497.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="583.08" x2="465.27" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.27" y1="580.68" x2="455.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="590.28" x2="437.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="585.48" x2="423.27" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="574.8" x2="437.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="570.0" x2="423.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="565.2" x2="407.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="570.0" x2="393.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.67" y1="580.68" x2="393.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="587.88" x2="377.67" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="574.8" x2="377.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="570.0" x2="363.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.97" y1="564.27" x2="333.57" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="579.72" x2="333.57" y2="586.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="579.72" x2="305.07" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="584.52" x2="312.27" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.07" y1="573.87" x2="305.07" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="569.07" x2="312.27" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="558.39" x2="307.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="548.79" x2="314.67" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="553.59" x2="319.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="555.99" x2="333.57" y2="551.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.97" y1="558.39" x2="333.57" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="542.94" x2="309.87" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="533.31" x2="312.27" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.27" y1="583.08" x2="363.27" y2="587.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.47" y1="587.88" x2="370.47" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.67" y1="580.68" x2="363.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="570.0" x2="467.67" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="565.2" x2="467.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.07" y1="565.2" x2="453.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="497.76" x2="372.36" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="492.42" x2="372.54" y2="494.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.36" y1="495.0" x2="372.36" y2="500.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="499.68" x2="346.47" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="487.8" x2="344.97" y2="487.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="472.8" x2="346.47" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.5" y1="462.69" x2="346.53" y2="461.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="457.02" x2="226.77" y2="457.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.6" y1="502.98" x2="341.97" y2="502.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="503.01" x2="342.6" y2="503.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.1" y1="485.7" x2="209.1" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="487.8" x2="195.3" y2="475.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="477.3" x2="181.5" y2="481.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="485.7" x2="173.07" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="485.7" x2="179.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="173.07" y2="507.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="179.4" y2="505.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="517.8" x2="186.9" y2="509.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="535.2" x2="186.9" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="545.7" x2="181.5" y2="541.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="535.2" x2="173.07" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="539.4" x2="181.5" y2="535.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="535.2" x2="195.3" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="200.7" y2="537.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="202.8" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.0" y1="565.2" x2="202.8" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="567.3" x2="200.7" y2="575.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="577.8" x2="186.9" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="565.2" x2="186.9" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="577.8" x2="173.07" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="577.8" x2="177.27" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="620.7" x2="105.6" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="633.3" x2="105.6" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="620.7" x2="97.2" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.8" y1="631.2" x2="91.8" y2="627.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.6" y1="624.9" x2="91.8" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="620.7" x2="83.4" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="631.2" x2="75.9" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="457.8" x2="173.07" y2="455.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="455.7" x2="179.4" y2="457.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="195.3" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="457.8" x2="200.7" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="186.9" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="427.5" x2="185.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.37" y1="412.5" x2="203.37" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="430.8" x2="97.2" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="99.3" y1="424.5" x2="105.6" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="418.2" x2="97.2" y2="430.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="430.8" x2="83.4" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="420.3" x2="78.0" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.57" y1="418.2" x2="75.9" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.9" y1="424.5" x2="78.0" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.91" y1="382.5" x2="761.91" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="765.87" y1="367.5" x2="773.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.37" y1="326.82" x2="854.37" y2="363.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="375.0" x2="899.04" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.37" y1="363.18" x2="914.37" y2="326.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.04" y1="315.0" x2="869.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.4" y1="295.8" x2="862.5" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.07" y1="283.2" x2="854.07" y2="295.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="287.4" x2="862.5" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="867.9" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="870.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="881.7" y1="283.2" x2="888.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="289.5" x2="897.63" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="895.53" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="897.63" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="913.53" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="911.43" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="909.33" y1="291.6" x2="913.53" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.37" y1="345.0" x2="869.43" y2="346.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="818.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="825.87" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="773.37" y1="360.0" x2="765.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="292.8" x2="784.77" y2="292.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.67" y1="292.8" x2="782.67" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="280.2" x2="784.77" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="789.78" y1="282.3" x2="791.88" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="292.8" x2="803.61" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="284.4" x2="809.91" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="414.57" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="425.43" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.54" y1="419.7" x2="931.02" y2="417.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.57" y1="417.9" x2="954.9" y2="417.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.4" y1="415.8" x2="964.5" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="415.8" x2="978.3" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="420.0" x2="992.13" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="990.03" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="992.13" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="413.7" x2="1003.83" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="417.9" x2="1008.03" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="422.1" x2="976.2" y2="415.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="427.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="429.9" x2="1195.47" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="434.7" x2="1202.7" y2="437.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="439.5" x2="1210.95" y2="441.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="434.7" x2="1215.75" y2="434.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="411.9" x2="1208.55" y2="411.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="399.9" x2="1200.3" y2="397.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="404.7" x2="1200.3" y2="404.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="404.7" x2="1202.7" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="381.9" x2="1200.3" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="374.7" x2="1200.3" y2="374.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="379.5" x2="1195.47" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="381.9" x2="1218.15" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="351.9" x2="1208.55" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="339.9" x2="1218.15" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1202.7" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="344.7" x2="1200.3" y2="344.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1200.3" y2="351.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="339.9" x2="1210.95" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="321.9" x2="1208.55" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="314.7" x2="1193.07" y2="314.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="307.5" x2="1218.15" y2="307.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="307.5" x2="1213.35" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1208.55" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1215.75" y2="291.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="284.7" x2="1215.75" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="284.7" x2="1193.07" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1193.07" y2="254.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1213.35" y2="257.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1208.55" y2="261.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1200.3" y2="247.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1193.07" y2="224.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1208.55" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1218.15" y2="229.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1200.3" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="201.9" x2="1193.07" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="197.1" x2="1210.95" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="189.9" x2="1218.15" y2="199.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="189.9" x2="1210.95" y2="187.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="187.5" x2="1200.3" y2="201.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="171.9" x2="1193.07" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="157.5" x2="1218.15" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="157.5" x2="1213.35" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1208.55" y2="139.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1215.75" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="129.9" x2="1200.3" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1197.87" y2="137.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1193.07" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="134.7" x2="1215.75" y2="134.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="108.63" x2="1057.17" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="106.23" x2="1049.97" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="108.63" x2="1047.57" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="101.43" x2="1027.17" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="111.06" x2="1027.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1015.17" y1="101.43" x2="1012.77" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="111.06" x2="997.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="106.23" x2="982.77" y2="106.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="103.83" x2="964.77" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.77" y1="101.43" x2="955.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1193.07" y2="459.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1200.3" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="464.7" x2="1202.7" y2="467.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="467.1" x2="1213.35" y2="471.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="457.5" x2="1218.15" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1114.95" y1="577.2" x2="1105.35" y2="577.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1097.1" y2="591.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1099.5" y2="586.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="607.5" x2="1131.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="579.3" x2="1022.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1110.12" y1="632.25" x2="1111.62" y2="630.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1119.81" y1="639.75" x2="1119.81" y2="633.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="385.95" x2="847.62" y2="376.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="381.45" x2="834.12" y2="381.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="372.12" x2="834.12" y2="367.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="369.87" x2="845.37" y2="369.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.72" y1="590.25" x2="193.02" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="592.95" x2="190.32" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.32" y1="590.25" x2="190.32" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.87" y1="598.35" x2="181.47" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.17" y1="598.35" x2="184.17" y2="590.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.02" y1="591.6" x2="178.02" y2="597.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="403.83" x2="501.69" y2="250.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="400.86" x2="510.63" y2="401.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.92" y1="389.52" x2="328.92" y2="330.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.19" y1="342.27" x2="311.25" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.77" y1="324.24" x2="352.77" y2="321.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="319.8" x2="357.27" y2="316.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="318.3" x2="352.77" y2="318.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.52" y1="315.39" x2="352.77" y2="314.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="261.6" x2="282.36" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="278.7" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="277.2" y2="260.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.2" y1="260.1" x2="275.7" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="270.87" y1="263.4" x2="267.87" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.96" y1="267.9" x2="264.96" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="263.4" x2="266.46" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="266.4" x2="264.96" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.02" y1="267.15" x2="261.27" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.11" y1="257.85" x2="283.11" y2="260.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="257.85" x2="280.11" y2="257.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="248.61" y1="245.85" x2="248.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="244.2" y1="242.1" x2="241.2" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.7" y1="242.1" x2="242.7" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="245.85" x2="239.01" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.61" y1="245.85" x2="246.36" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.86" y1="244.35" x2="247.11" y2="244.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.96" y1="244.65" x2="216.96" y2="244.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="244.65" x2="218.46" y2="249.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.52" y1="248.4" x2="215.52" y2="245.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.51" y1="317.1" x2="221.76" y2="317.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="320.1" x2="227.7" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="317.1" x2="229.2" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="319.35" x2="233.61" y2="319.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="317.1" x2="232.86" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.76" y1="317.85" x2="224.01" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="332.1" x2="226.2" y2="336.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.7" y1="333.6" x2="229.2" y2="332.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="332.85" x2="230.61" y2="333.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.36" y1="334.35" x2="230.61" y2="335.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="233.61" y2="347.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="231.36" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.2" y1="347.1" x2="227.7" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.45" y1="348.6" x2="226.2" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="347.1" x2="226.2" y2="351.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.12" y1="383.4" x2="223.62" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="384.15" x2="222.87" y2="387.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="221.46" y1="383.4" x2="218.46" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.02" y1="383.4" x2="215.52" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="384.9" x2="214.02" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.02" y1="383.4" x2="214.02" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="386.4" x2="219.96" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="402.15" x2="174.72" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.22" y1="406.56" x2="174.72" y2="408.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="406.56" x2="179.22" y2="409.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.97" y1="403.65" x2="176.97" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="370.35" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="482.1" x2="374.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="482.1" x2="378.45" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.26" y1="484.35" x2="371.76" y2="484.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="371.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="367.35" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="374.76" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="485.85" x2="381.36" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="497.1" x2="380.61" y2="497.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.2" y1="500.85" x2="379.2" y2="499.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.7" y1="498.6" x2="379.2" y2="497.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="497.1" x2="376.2" y2="501.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.12" y1="548.4" x2="345.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="550.65" x2="344.37" y2="552.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.96" y1="552.9" x2="339.96" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="548.4" x2="341.46" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="551.4" x2="339.96" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.02" y1="552.15" x2="336.27" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.27" y1="572.55" x2="297.27" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.52" y1="576.24" x2="297.27" y2="576.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.52" y1="574.8" x2="292.77" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.01" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="478.68" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.65" y1="446.73" x2="488.61" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.12" y1="446.97" x2="490.11" y2="447.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.77" y1="461.76" x2="481.32" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.87" y1="461.52" x2="478.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.86" y1="461.25" x2="480.63" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="461.01" x2="478.89" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.95" y1="460.74" x2="480.36" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="460.5" x2="478.98" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="460.23" x2="480.27" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="459.99" x2="479.07" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="459.72" x2="480.33" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="459.48" x2="479.16" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.22" y1="459.21" x2="480.6" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.84" y1="458.97" x2="479.25" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.31" y1="458.7" x2="481.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.62" y1="458.46" x2="479.52" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.76" y1="458.7" x2="475.53" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="458.46" x2="480.21" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.94" y1="458.19" x2="482.22" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.95" y1="457.44" x2="475.86" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.71" y1="457.68" x2="481.53" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.23" y1="457.44" x2="485.64" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="457.17" x2="481.68" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.1" y1="456.93" x2="487.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.31" y1="456.66" x2="482.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="456.93" x2="476.19" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.98" y1="457.17" x2="482.4" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.94" y1="456.42" x2="489.0" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.48" y1="456.15" x2="483.39" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.72" y1="456.42" x2="476.7" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.4" y1="456.66" x2="483.27" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.81" y1="455.91" x2="489.96" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.32" y1="455.64" x2="484.23" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.59" y1="455.91" x2="477.39" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.03" y1="456.15" x2="484.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.68" y1="455.4" x2="490.65" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.95" y1="455.13" x2="485.16" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.46" y1="455.4" x2="478.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.84" y1="455.64" x2="485.01" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.61" y1="454.89" x2="491.19" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="454.62" x2="486.09" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.33" y1="454.89" x2="480.09" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="455.13" x2="485.91" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.54" y1="454.38" x2="491.49" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.58" y1="454.11" x2="487.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.23" y1="454.38" x2="482.25" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.33" y1="454.11" x2="487.65" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.5" y1="453.87" x2="491.64" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="453.6" x2="487.95" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.1" y1="453.87" x2="484.29" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.07" y1="453.6" x2="488.52" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.43" y1="453.36" x2="491.82" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.88" y1="453.09" x2="488.88" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.97" y1="453.36" x2="485.67" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.21" y1="453.09" x2="489.42" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.36" y1="452.85" x2="491.91" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="452.58" x2="489.45" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.6" y1="452.58" x2="486.78" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="452.34" x2="489.54" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.39" y1="452.34" x2="491.94" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.97" y1="452.07" x2="489.3" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.45" y1="452.07" x2="487.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.14" y1="451.83" x2="489.36" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.21" y1="451.83" x2="491.97" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="451.56" x2="489.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="451.56" x2="487.2" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.2" y1="451.32" x2="489.18" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.03" y1="451.32" x2="491.94" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.91" y1="451.05" x2="488.94" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.09" y1="451.05" x2="487.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.11" y1="450.81" x2="489.0" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.85" y1="450.81" x2="491.88" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.85" y1="450.54" x2="488.79" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.94" y1="450.54" x2="487.05" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.9" y1="450.3" x2="488.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.7" y1="450.3" x2="491.79" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="450.03" x2="488.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.76" y1="450.03" x2="486.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.45" y1="449.79" x2="488.67" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.52" y1="449.79" x2="491.64" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.55" y1="449.52" x2="488.43" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.58" y1="449.52" x2="486.09" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.58" y1="449.28" x2="488.49" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.34" y1="449.28" x2="491.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.28" y1="449.01" x2="488.25" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.4" y1="449.01" x2="484.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.17" y1="447.99" x2="490.41" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.17" y1="447.75" x2="477.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.76" y1="447.99" x2="483.3" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.3" y1="447.75" x2="483.84" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="447.99" x2="485.01" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="448.26" x2="490.65" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="448.5" x2="486.42" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.15" y1="448.26" x2="482.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.28" y1="448.5" x2="476.28" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.49" y1="448.26" x2="482.79" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.64" y1="449.01" x2="480.87" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.75" y1="449.28" x2="475.8" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.68" y1="449.52" x2="480.21" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.39" y1="449.28" x2="481.56" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.26" y1="449.01" x2="475.92" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.07" y1="448.77" x2="481.77" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.83" y1="448.5" x2="487.29" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.56" y1="448.77" x2="491.1" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.84" y1="447.48" x2="477.42" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.81" y1="447.24" x2="489.48" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.07" y1="446.46" x2="479.19" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.91" y1="446.22" x2="487.23" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.82" y1="445.95" x2="481.77" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.35" y1="448.77" x2="488.34" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.54" y1="452.85" x2="486.57" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="454.62" x2="481.17" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.58" y1="452.07" x2="475.05" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.02" y1="452.07" x2="475.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.05" y1="451.83" x2="475.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.56" y1="451.83" x2="479.61" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.61" y1="451.56" x2="476.04" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="451.56" x2="475.08" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.11" y1="451.32" x2="476.61" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="451.32" x2="479.67" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.73" y1="451.05" x2="477.0" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.12" y1="451.05" x2="475.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.23" y1="450.81" x2="477.63" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.48" y1="450.81" x2="479.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.0" y1="450.54" x2="477.96" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.17" y1="450.54" x2="475.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.41" y1="450.3" x2="478.68" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.44" y1="450.3" x2="480.15" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.42" y1="450.03" x2="478.95" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="450.03" x2="475.5" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="449.79" x2="479.7" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.43" y1="449.79" x2="480.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.08" y1="449.52" x2="479.91" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.81" y1="457.68" x2="484.41" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.15" y1="457.95" x2="480.39" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.63" y1="458.19" x2="475.56" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.65" y1="457.95" x2="481.08" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.64" y1="458.97" x2="475.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.21" x2="479.61" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.55" y1="459.48" x2="475.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.72" x2="479.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.46" y1="459.99" x2="475.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="460.23" x2="479.43" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="460.5" x2="475.56" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="460.74" x2="479.34" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.28" y1="461.01" x2="475.65" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.74" y1="461.25" x2="479.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="461.52" x2="475.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.89" y1="461.76" x2="479.16" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="462.03" x2="475.98" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="462.27" x2="480.06" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.06" y1="462.54" x2="486.84" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="462.27" x2="490.65" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.8" y1="462.03" x2="487.71" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.74" y1="462.27" x2="479.1" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.9" y1="462.54" x2="476.25" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.85" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.61" y1="463.05" x2="482.58" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.0" y1="463.29" x2="484.23" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.53" y1="463.05" x2="490.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="462.78" x2="485.31" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.1" y1="463.05" x2="482.01" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.74" y1="462.78" x2="476.4" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.18" y1="463.56" x2="489.39" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.72" y1="463.29" x2="483.72" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="489.0" y2="461.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.05" y1="462.78" x2="485.97" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.12" y1="462.54" x2="490.47" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="461.76" x2="488.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.61" y1="462.03" x2="484.35" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="461.76" x2="489.24" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.88" y1="461.52" x2="491.01" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="461.25" x2="489.24" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.57" y1="461.01" x2="491.25" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="460.74" x2="489.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="460.5" x2="491.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.25" y1="460.5" x2="486.72" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.81" y1="460.23" x2="491.46" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.49" y1="459.99" x2="486.9" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="459.72" x2="491.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="460.23" x2="490.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.86" y1="460.74" x2="486.57" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.39" y1="461.01" x2="490.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.05" y1="461.25" x2="486.12" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.76" y1="461.52" x2="489.63" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.06" y1="463.8" x2="477.54" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.05" y1="464.07" x2="488.64" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.13" y1="464.31" x2="478.53" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="464.58" x2="487.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.66" y1="464.82" x2="480.0" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.38" y1="465.09" x2="485.28" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.92" x2="499.02" y2="464.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.8" x2="499.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.56" x2="494.43" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.29" x2="499.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.05" x2="494.43" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.78" x2="499.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="462.54" x2="494.43" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.27" x2="511.02" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.26" y1="462.03" x2="494.43" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.76" x2="511.41" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.53" y1="461.52" x2="504.78" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="461.25" x2="511.68" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="461.01" x2="505.92" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.22" y1="460.74" x2="511.98" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.04" y1="460.5" x2="506.52" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.82" y1="460.23" x2="512.13" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.22" y1="459.99" x2="507.0" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="459.72" x2="512.28" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.37" y1="459.48" x2="507.39" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="459.21" x2="512.46" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="458.97" x2="507.66" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.78" y1="458.7" x2="512.61" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.7" y1="458.46" x2="507.9" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.99" y1="458.19" x2="512.76" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="457.95" x2="508.05" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.08" y1="457.68" x2="512.82" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.85" y1="457.44" x2="508.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="457.17" x2="512.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.94" y1="456.93" x2="508.2" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.66" x2="512.97" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="456.42" x2="508.2" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.15" x2="513.03" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.91" x2="508.2" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.64" x2="513.09" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.4" x2="508.2" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.13" x2="513.06" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="454.89" x2="508.2" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="454.62" x2="513.03" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.03" y1="454.38" x2="508.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.11" y1="454.11" x2="513.0" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="453.87" x2="508.08" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.05" y1="453.6" x2="512.97" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.97" y1="453.36" x2="507.99" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.96" y1="453.09" x2="512.94" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.91" y1="452.85" x2="507.93" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="452.58" x2="512.85" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="452.34" x2="507.84" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.72" y1="452.07" x2="512.73" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.67" y1="451.83" x2="507.63" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="451.56" x2="512.61" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="451.32" x2="507.39" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="451.05" x2="512.4" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.31" y1="450.81" x2="507.03" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.79" y1="450.54" x2="512.19" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="450.3" x2="506.49" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.16" y1="450.03" x2="511.98" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="449.79" x2="505.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.84" y1="449.52" x2="511.68" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.5" y1="449.28" x2="499.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="449.52" x2="502.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="449.79" x2="499.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.03" x2="501.21" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="450.3" x2="499.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.54" x2="500.58" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.34" y1="450.81" x2="499.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.05" x2="500.16" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.01" y1="451.32" x2="499.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.56" x2="499.89" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="451.83" x2="499.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.83" x2="494.43" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.07" x2="499.32" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.53" y1="452.34" x2="494.43" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.58" x2="499.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="452.85" x2="494.43" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.09" x2="499.29" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="453.36" x2="494.43" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.6" x2="499.2" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="453.87" x2="494.43" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.11" x2="499.14" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.38" x2="494.43" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.62" x2="499.14" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.89" x2="494.43" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.13" x2="499.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.4" x2="494.43" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.64" x2="499.14" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.91" x2="494.43" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.15" x2="499.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="456.42" x2="494.43" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.66" x2="499.11" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.11" y1="456.93" x2="494.43" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.17" x2="499.14" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="457.44" x2="494.43" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.68" x2="499.2" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="457.95" x2="494.43" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.19" x2="499.32" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.41" y1="458.46" x2="494.43" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.7" x2="499.5" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.62" y1="458.97" x2="494.43" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.21" x2="499.74" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.89" y1="459.48" x2="494.43" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.72" x2="500.04" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.25" y1="459.99" x2="494.43" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.23" x2="500.49" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.7" y1="460.5" x2="494.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.74" x2="501.0" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.33" y1="461.01" x2="494.43" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.25" x2="501.66" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.26" y1="461.52" x2="494.43" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.21" y1="464.07" x2="499.02" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="464.31" x2="496.56" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.91" y1="464.58" x2="499.02" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.31" y1="463.56" x2="509.7" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="463.8" x2="500.55" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="464.07" x2="508.95" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.53" y1="464.31" x2="501.27" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.84" y1="464.58" x2="507.99" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.36" y1="464.82" x2="502.5" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.31" y1="465.09" x2="506.19" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.03" y1="463.29" x2="500.07" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.83" y1="463.05" x2="510.33" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="462.78" x2="499.59" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="462.54" x2="510.81" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.73" y1="460.74" x2="520.89" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.74" y1="460.5" x2="515.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.26" x2="515.4" y2="459.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.94" y1="461.25" x2="521.37" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.55" y1="461.43" x2="522.12" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.51" y1="462.27" x2="531.75" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.72" y1="462.3" x2="531.21" y2="463.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.23" x2="520.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.53" y1="459.99" x2="515.52" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.49" y1="459.72" x2="520.47" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="459.48" x2="515.46" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="459.21" x2="520.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.07" y1="461.01" x2="521.55" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.7" y1="461.52" x2="516.06" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.21" y1="461.76" x2="522.18" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.53" y1="462.03" x2="525.15" y2="461.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.78" y2="451.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="453.09" x2="520.26" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.14" y1="452.85" x2="515.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.07" y1="452.58" x2="520.02" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.93" y1="452.34" x2="515.01" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="452.07" x2="519.87" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.81" y1="451.83" x2="514.95" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.56" x2="519.78" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="451.32" x2="514.95" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.05" x2="519.78" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.87" y2="450.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.01" y1="450.54" x2="519.87" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.96" y1="450.3" x2="515.04" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.1" y1="450.03" x2="520.11" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.29" y1="449.79" x2="515.13" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="449.52" x2="520.62" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.04" y1="449.28" x2="515.28" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.4" y1="449.01" x2="522.39" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.98" y1="449.01" x2="532.2" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.23" y1="448.77" x2="515.49" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="448.5" x2="532.23" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.26" y1="448.26" x2="515.7" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.88" y1="447.99" x2="527.25" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.46" y1="447.99" x2="532.29" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.35" y1="447.75" x2="527.55" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.61" y1="447.48" x2="532.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.5" y1="447.24" x2="527.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.73" y1="446.97" x2="532.56" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.62" y1="446.73" x2="527.79" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.85" y1="446.46" x2="532.71" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.46" x2="540.27" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.28" x2="535.35" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.73" x2="535.35" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.97" x2="540.27" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.24" x2="535.35" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.48" x2="540.27" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.75" x2="535.35" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.99" x2="540.27" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.26" x2="535.35" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="448.5" x2="540.27" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.77" x2="535.35" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="449.01" x2="540.27" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.28" x2="535.35" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="449.52" x2="540.27" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.79" x2="535.38" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.03" x2="540.27" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.3" x2="535.38" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.54" x2="540.27" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.81" x2="535.38" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.05" x2="540.27" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.32" x2="535.38" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.56" x2="540.27" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.83" x2="535.38" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.07" x2="540.27" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.34" x2="535.38" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.58" x2="540.27" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.85" x2="535.38" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.09" x2="540.27" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.36" x2="535.38" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.6" x2="540.27" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.87" x2="535.38" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.11" x2="540.27" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.38" x2="535.38" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.62" x2="540.27" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.89" x2="535.38" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.13" x2="540.27" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="455.4" x2="535.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.64" x2="540.3" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.3" y1="455.91" x2="535.38" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.15" x2="540.33" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.36" y1="456.42" x2="535.38" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.66" x2="540.39" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.45" y1="456.93" x2="535.38" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.17" x2="540.51" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.6" y1="457.44" x2="535.38" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.68" x2="540.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.81" y1="457.95" x2="535.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.19" x2="540.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.02" y1="458.46" x2="535.38" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.7" x2="541.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.41" y1="458.97" x2="535.38" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.21" x2="541.59" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.86" y1="459.48" x2="535.38" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.72" x2="542.16" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.46" y1="459.99" x2="535.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.23" x2="542.91" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.54" y1="460.5" x2="535.38" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.74" x2="547.14" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.01" x2="535.38" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.25" x2="539.97" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.21" y1="461.25" x2="547.14" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.52" x2="540.42" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.57" y1="461.76" x2="547.14" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.03" x2="540.75" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.9" y1="462.27" x2="547.14" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.54" x2="541.08" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.26" y1="462.78" x2="547.14" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.05" x2="541.44" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.65" y1="463.29" x2="547.14" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.56" x2="541.98" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.34" y1="463.8" x2="547.14" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.07" x2="542.73" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.12" y1="464.31" x2="547.14" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.58" x2="543.54" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="544.05" y1="464.82" x2="547.14" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.66" y1="465.09" x2="545.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.09" x2="554.25" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.33" x2="549.36" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.6" x2="554.25" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.84" x2="549.36" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.11" x2="554.25" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.35" x2="549.36" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.62" x2="554.25" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.86" x2="549.36" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.13" x2="554.25" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.37" x2="549.36" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.64" x2="554.25" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.88" x2="549.36" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.15" x2="554.25" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.39" x2="549.36" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.66" x2="554.25" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.9" x2="549.36" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="469.02" x2="554.25" y2="471.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="469.17" x2="554.25" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.41" x2="550.08" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="550.53" y1="469.68" x2="554.25" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.92" x2="550.98" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.43" y1="470.19" x2="554.25" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.43" x2="551.85" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="552.3" y1="470.7" x2="554.25" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.94" x2="552.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.2" y1="471.21" x2="554.25" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="471.45" x2="553.65" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.1" y1="471.72" x2="554.25" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.72" x2="562.41" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.62" y1="471.96" x2="560.04" y2="471.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.23" x2="562.86" y2="472.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.07" y1="472.47" x2="560.04" y2="472.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.74" x2="563.31" y2="472.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.52" y1="472.98" x2="560.04" y2="472.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.25" x2="563.76" y2="473.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="473.49" x2="560.04" y2="473.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.76" x2="564.21" y2="473.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.42" y1="474.0" x2="560.04" y2="474.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.27" x2="564.66" y2="474.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.9" y1="474.51" x2="560.04" y2="474.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.78" x2="565.11" y2="474.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.35" y1="475.02" x2="560.04" y2="475.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.29" x2="565.56" y2="475.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.53" x2="560.04" y2="475.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.8" x2="566.07" y2="475.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.56" x2="566.82" y2="476.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="490.32" x2="571.05" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="490.08" x2="571.05" y2="489.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.34" y1="476.04" x2="560.04" y2="476.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.31" x2="566.64" y2="476.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="476.55" x2="560.04" y2="476.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.82" x2="567.36" y2="476.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.81" y1="477.06" x2="560.04" y2="477.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.33" x2="568.35" y2="477.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.09" y1="477.57" x2="560.04" y2="477.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.84" x2="574.11" y2="477.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.92" y1="478.08" x2="560.04" y2="478.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.35" x2="575.46" y2="478.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="478.59" x2="560.04" y2="478.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.86" x2="576.42" y2="478.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.78" y1="479.1" x2="560.04" y2="479.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.37" x2="577.14" y2="479.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.5" y1="479.61" x2="560.04" y2="479.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.88" x2="577.8" y2="479.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.07" y1="480.12" x2="560.04" y2="480.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.39" x2="578.34" y2="480.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.61" y1="480.63" x2="560.04" y2="480.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.9" x2="578.88" y2="480.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.09" y1="481.14" x2="560.04" y2="481.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.41" x2="579.27" y2="481.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.48" y1="481.65" x2="560.04" y2="481.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.92" x2="579.69" y2="481.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.9" y1="482.16" x2="560.04" y2="482.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.43" x2="580.02" y2="482.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.17" y1="482.67" x2="560.04" y2="482.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.94" x2="580.32" y2="482.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.47" y1="483.18" x2="560.04" y2="483.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.45" x2="580.62" y2="483.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.74" y1="483.69" x2="560.04" y2="483.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.96" x2="580.89" y2="483.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.01" y1="484.2" x2="560.04" y2="484.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.47" x2="581.1" y2="484.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="484.71" x2="560.04" y2="484.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.98" x2="581.28" y2="484.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.37" y1="485.22" x2="560.04" y2="485.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="485.49" x2="581.46" y2="485.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.55" y1="485.73" x2="560.04" y2="485.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.0" x2="581.64" y2="486.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.73" y1="486.24" x2="560.04" y2="486.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.51" x2="581.76" y2="486.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="486.75" x2="560.04" y2="486.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="487.02" x2="567.18" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.93" y1="487.02" x2="581.85" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.88" y1="487.26" x2="568.98" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.55" y1="487.53" x2="581.94" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.97" y1="487.77" x2="569.97" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.27" y1="488.04" x2="582.0" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="488.28" x2="570.51" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.69" y1="488.55" x2="582.09" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="488.79" x2="570.84" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="489.06" x2="582.06" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="489.3" x2="571.02" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.05" y1="489.57" x2="582.06" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="489.81" x2="571.08" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="490.59" x2="582.03" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.0" y1="490.83" x2="570.93" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.81" y1="491.1" x2="581.97" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.91" y1="491.34" x2="570.69" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.51" y1="491.61" x2="581.85" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.79" y1="491.85" x2="570.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.06" y1="492.12" x2="581.73" y2="492.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.64" y1="492.36" x2="569.82" y2="492.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.58" y1="492.63" x2="581.55" y2="492.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="492.87" x2="569.34" y2="492.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.1" y1="493.14" x2="581.37" y2="493.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.25" y1="493.38" x2="568.86" y2="493.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.62" y1="493.65" x2="581.13" y2="493.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.98" y1="493.89" x2="568.41" y2="493.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.23" y1="494.16" x2="580.86" y2="494.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.68" y1="494.4" x2="568.05" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.9" y1="494.67" x2="575.73" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="494.91" x2="567.72" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.54" y1="495.18" x2="574.89" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.53" y1="495.42" x2="567.36" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="495.69" x2="574.17" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.87" y1="495.93" x2="567.06" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="496.2" x2="573.6" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="496.44" x2="566.85" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.76" y1="496.71" x2="573.21" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.03" y1="496.95" x2="566.73" y2="496.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.7" y1="497.22" x2="572.88" y2="497.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.79" y1="497.46" x2="566.67" y2="497.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="497.73" x2="572.67" y2="497.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.61" y1="497.97" x2="566.7" y2="497.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.73" y1="498.24" x2="572.58" y2="498.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.58" y1="498.48" x2="566.79" y2="498.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="498.75" x2="572.64" y2="498.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.73" y1="498.99" x2="567.0" y2="498.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.12" y1="499.26" x2="572.82" y2="499.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.97" y1="499.5" x2="567.3" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="499.77" x2="573.12" y2="499.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="500.01" x2="567.69" y2="500.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.96" y1="500.28" x2="573.66" y2="500.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.14" y1="500.52" x2="568.23" y2="500.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.53" y1="500.79" x2="575.19" y2="500.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.52" y1="501.3" x2="569.22" y2="501.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.89" y1="501.03" x2="575.91" y2="501.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.18" y1="500.82" x2="576.18" y2="500.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.95" y1="501.54" x2="569.7" y2="501.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.21" y1="501.81" x2="574.35" y2="501.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="502.05" x2="571.14" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.71" x2="578.43" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.44" x2="578.73" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.06" y1="496.2" x2="578.34" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="495.93" x2="579.36" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.66" y1="495.69" x2="578.34" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.28" y1="495.42" x2="579.87" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.08" y1="495.18" x2="578.1" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.86" y1="494.91" x2="580.29" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.5" y1="494.67" x2="577.5" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.92" y1="491.34" x2="562.95" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.41" y1="491.1" x2="565.56" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.23" y1="490.83" x2="561.99" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.66" y1="490.59" x2="564.87" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.69" y1="490.32" x2="561.36" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.15" y1="490.08" x2="564.6" y2="490.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.54" y1="489.81" x2="560.94" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.76" y1="489.57" x2="564.51" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.51" y1="489.3" x2="560.64" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="489.06" x2="564.54" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.6" y1="488.79" x2="560.37" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.31" y1="488.55" x2="564.69" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.84" y1="488.28" x2="560.22" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.16" y1="488.04" x2="565.02" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.26" y1="487.77" x2="560.13" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.1" y1="487.53" x2="565.65" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.1" y1="487.26" x2="560.07" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.45" y1="491.61" x2="565.17" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.17" y1="471.45" x2="560.04" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.21" x2="561.93" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.72" y1="470.94" x2="560.04" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.7" x2="561.48" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="470.43" x2="560.04" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.19" x2="561.03" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.82" y1="469.92" x2="560.04" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.68" x2="560.58" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="469.41" x2="560.04" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.17" x2="560.13" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.88" y1="464.58" x2="566.4" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.16" y1="464.31" x2="560.64" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="464.07" x2="565.89" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.62" y1="463.8" x2="560.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="463.56" x2="565.35" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.11" y1="463.29" x2="559.62" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.35" y1="463.05" x2="564.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.57" y1="462.78" x2="559.11" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.84" y1="462.54" x2="564.33" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.06" y1="462.27" x2="558.6" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.33" y1="462.03" x2="563.79" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.55" y1="461.76" x2="558.09" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.82" y1="461.52" x2="563.28" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.01" y1="461.25" x2="557.58" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.31" y1="461.01" x2="562.77" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.5" y1="460.74" x2="557.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.8" y1="460.5" x2="562.23" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.96" y1="460.23" x2="556.56" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.29" y1="459.99" x2="561.72" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.45" y1="459.72" x2="556.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.78" y1="459.48" x2="561.18" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.94" y1="459.21" x2="555.54" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.27" y1="458.97" x2="560.67" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.4" y1="458.7" x2="555.03" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.76" y1="458.46" x2="560.16" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="458.19" x2="554.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.19" x2="549.36" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.95" x2="559.74" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="457.68" x2="549.36" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.44" x2="560.07" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.25" y1="457.17" x2="549.36" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.93" x2="560.4" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.58" y1="456.66" x2="549.36" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.42" x2="560.76" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.91" y1="456.15" x2="549.36" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.91" x2="561.09" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="455.64" x2="549.36" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.4" x2="561.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.6" y1="455.13" x2="549.36" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.89" x2="561.78" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.93" y1="454.62" x2="556.47" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.44" y1="454.62" x2="549.36" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.38" x2="556.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.9" y1="454.11" x2="549.36" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.87" x2="555.66" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.39" y1="453.6" x2="549.36" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.36" x2="555.12" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="453.09" x2="549.36" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.85" x2="554.61" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.34" y1="452.58" x2="549.36" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.34" x2="554.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="452.07" x2="549.36" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.83" x2="554.31" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.56" x2="549.36" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.32" x2="554.31" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.05" x2="549.36" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.81" x2="554.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.54" x2="549.36" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.3" x2="554.31" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.03" x2="549.36" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.79" x2="554.31" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.52" x2="549.36" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.28" x2="554.31" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.01" x2="549.36" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.77" x2="554.31" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="448.5" x2="549.36" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.26" x2="554.31" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.99" x2="549.36" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.75" x2="554.31" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.48" x2="549.36" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.24" x2="554.31" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.97" x2="549.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.73" x2="554.31" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.46" x2="549.36" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.22" x2="554.31" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.56" y1="449.52" x2="565.35" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.5" y1="449.28" x2="559.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="449.01" x2="565.68" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.86" y1="448.77" x2="560.01" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.19" y1="448.5" x2="566.01" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.19" y1="448.26" x2="560.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="447.99" x2="566.37" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.52" y1="447.75" x2="560.64" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.79" y1="447.48" x2="566.7" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="447.24" x2="560.94" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.12" y1="446.97" x2="567.03" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="446.73" x2="561.27" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.42" y1="446.46" x2="567.39" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.46" x2="575.85" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.22" x2="570.93" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.16" x2="575.85" y2="446.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.73" x2="575.85" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.97" x2="570.93" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.24" x2="575.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.48" x2="570.93" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.75" x2="575.85" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.99" x2="570.93" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.26" x2="575.85" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="448.5" x2="570.93" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.77" x2="575.85" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.01" x2="570.93" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.28" x2="575.85" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.52" x2="570.93" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.79" x2="575.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.03" x2="570.93" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.3" x2="575.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.54" x2="570.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.81" x2="575.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.05" x2="570.93" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.32" x2="575.85" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.56" x2="570.93" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.83" x2="575.85" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.07" x2="570.93" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.34" x2="575.85" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.58" x2="570.93" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.85" x2="575.85" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.09" x2="570.93" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.36" x2="575.85" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.6" x2="570.93" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.87" x2="575.85" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.11" x2="570.93" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.38" x2="575.85" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.62" x2="570.93" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.89" x2="575.85" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.13" x2="570.93" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.4" x2="575.85" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.64" x2="570.93" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.91" x2="575.85" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.15" x2="570.93" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.42" x2="575.85" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.66" x2="570.93" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.93" x2="575.85" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.17" x2="570.93" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.44" x2="575.85" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.68" x2="570.93" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.95" x2="575.85" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.19" x2="570.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.46" x2="575.85" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.7" x2="570.93" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.97" x2="575.85" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.21" x2="570.93" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.48" x2="575.85" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.72" x2="570.93" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.99" x2="575.85" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.23" x2="570.93" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="460.5" x2="575.85" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.74" x2="570.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.01" x2="575.85" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="461.25" x2="570.93" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.52" x2="575.85" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="464.82" x2="570.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.99" y1="465.09" x2="575.88" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.33" x2="571.02" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="465.6" x2="575.88" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.84" x2="571.05" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="466.11" x2="575.88" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="466.35" x2="571.08" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="466.62" x2="575.94" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="466.86" x2="571.14" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.17" y1="467.13" x2="576.06" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.15" y1="467.37" x2="571.17" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.2" y1="467.64" x2="576.33" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.6" y1="467.88" x2="571.23" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.32" y1="468.15" x2="577.41" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.0" y1="468.15" x2="579.72" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.39" x2="571.38" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.5" y1="468.66" x2="579.72" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.9" x2="571.62" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.77" y1="469.17" x2="579.72" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.41" x2="571.95" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.13" y1="469.68" x2="579.72" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.92" x2="572.4" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="470.19" x2="579.72" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.43" x2="572.94" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="470.7" x2="579.72" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.94" x2="573.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.23" y1="471.21" x2="579.72" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="471.45" x2="574.89" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.12" y1="471.72" x2="578.7" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.58" x2="569.25" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.01" y1="464.31" x2="579.39" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.07" x2="568.74" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.5" y1="463.8" x2="579.39" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.56" x2="568.23" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.99" y1="463.29" x2="579.39" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.05" x2="567.72" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="462.78" x2="579.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.54" x2="567.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.97" y1="462.27" x2="579.39" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.03" x2="566.7" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.46" y1="461.76" x2="579.39" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.76" x2="586.02" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.52" x2="581.13" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.25" x2="586.02" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.01" x2="581.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.74" x2="586.02" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="460.5" x2="581.13" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.23" x2="586.02" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.99" x2="581.13" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.72" x2="586.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.48" x2="581.13" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.21" x2="586.02" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.97" x2="581.13" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.7" x2="586.02" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.46" x2="581.13" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.19" x2="586.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.95" x2="581.13" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.68" x2="586.02" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.44" x2="581.13" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.17" x2="586.02" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.93" x2="581.13" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.66" x2="586.02" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.42" x2="581.13" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.15" x2="586.02" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.91" x2="581.13" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.64" x2="586.02" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.4" x2="581.13" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.13" x2="586.02" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.89" x2="581.13" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.62" x2="586.02" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.38" x2="581.13" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.11" x2="586.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.87" x2="581.13" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.6" x2="586.02" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.36" x2="581.13" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.09" x2="586.02" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="452.94" x2="586.02" y2="464.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.05" y1="452.85" x2="581.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.58" x2="586.08" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.14" y1="452.34" x2="581.13" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.07" x2="586.17" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.26" y1="451.83" x2="581.16" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="451.56" x2="586.38" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.47" y1="451.32" x2="581.19" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.22" y1="451.05" x2="586.59" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.77" y1="450.81" x2="581.25" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.31" y1="450.54" x2="586.95" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="587.25" y1="450.3" x2="581.37" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="450.03" x2="587.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="588.18" y1="449.79" x2="581.52" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.58" y1="449.52" x2="589.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.86" y1="449.52" x2="598.5" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="449.28" x2="581.7" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="449.01" x2="593.7" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="449.01" x2="598.5" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.77" x2="593.76" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="448.5" x2="598.5" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.26" x2="593.76" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.99" x2="598.5" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.75" x2="593.76" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.48" x2="598.5" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.24" x2="593.76" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.97" x2="598.5" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="446.73" x2="593.76" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.46" x2="598.5" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.46" x2="606.42" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.22" x2="601.44" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.16" x2="601.44" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.25" x2="609.09" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.43" y1="461.01" x2="607.86" y2="460.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.95" x2="606.51" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.54" y1="458.19" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="456.66" x2="606.42" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.93" x2="601.44" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.17" x2="606.42" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.45" y1="457.44" x2="601.44" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.68" x2="606.48" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.6" y1="458.46" x2="601.44" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="458.7" x2="606.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.75" y1="458.97" x2="601.44" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.21" x2="606.87" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="459.48" x2="601.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.72" x2="607.14" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.29" y1="459.99" x2="601.44" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.23" x2="607.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.77" y1="460.5" x2="601.44" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.74" x2="608.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.57" y1="462.27" x2="618.0" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.12" y1="462.03" x2="601.44" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.27" x2="606.21" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.3" y2="462.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.21" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.73" x2="606.42" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.97" x2="601.44" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.24" x2="606.42" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.48" x2="601.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.75" x2="606.42" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.99" x2="601.44" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.26" x2="606.42" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="448.5" x2="601.44" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.77" x2="606.42" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.01" x2="601.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.28" x2="606.42" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.52" x2="601.44" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.79" x2="606.42" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.03" x2="601.44" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.3" x2="606.42" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.54" x2="601.44" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.81" x2="606.42" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.05" x2="601.44" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.32" x2="606.42" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.56" x2="601.44" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.83" x2="606.42" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.07" x2="601.44" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.34" x2="606.42" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.58" x2="601.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.85" x2="606.42" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.09" x2="601.44" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.36" x2="606.42" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.6" x2="601.44" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.87" x2="606.42" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.11" x2="601.44" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.38" x2="606.42" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.62" x2="601.44" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.89" x2="606.42" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.13" x2="601.44" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.4" x2="606.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.64" x2="601.44" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.91" x2="606.42" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.15" x2="601.44" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.15" x2="593.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.91" x2="598.5" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.64" x2="593.52" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.4" x2="598.5" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.13" x2="593.52" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="454.89" x2="598.5" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.62" x2="593.52" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="454.38" x2="598.5" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.11" x2="593.49" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.46" y1="453.87" x2="598.5" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.6" x2="593.46" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.43" y1="453.36" x2="598.5" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.09" x2="593.37" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.34" y1="452.85" x2="598.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.58" x2="593.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.25" y1="452.34" x2="598.5" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.07" x2="593.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="451.83" x2="598.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.56" x2="593.01" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.92" y1="451.32" x2="598.5" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.05" x2="592.74" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.59" y1="450.81" x2="598.5" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.54" x2="592.35" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="450.3" x2="598.5" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.03" x2="591.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.15" y1="449.79" x2="598.5" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="448.77" x2="581.94" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.09" y1="448.5" x2="593.31" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="448.26" x2="582.21" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.39" y1="447.99" x2="592.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.62" y1="447.75" x2="582.6" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.78" y1="447.48" x2="592.35" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="447.24" x2="582.96" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.26" y1="446.97" x2="591.78" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.42" y1="446.73" x2="583.68" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.13" y1="446.46" x2="591.06" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.64" y1="446.22" x2="584.7" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.45" y1="445.95" x2="589.53" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.42" x2="598.5" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.66" x2="593.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.93" x2="598.5" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.17" x2="593.52" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.44" x2="598.5" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.68" x2="593.52" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.95" x2="598.5" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.19" x2="593.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.46" x2="598.5" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.7" x2="593.52" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.97" x2="598.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.21" x2="593.52" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.48" x2="598.5" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.72" x2="593.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.99" x2="598.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.23" x2="593.52" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="460.5" x2="598.5" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.74" x2="593.52" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.01" x2="598.5" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.25" x2="593.52" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.52" x2="598.5" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.76" x2="593.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.03" x2="598.5" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.27" x2="593.52" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.54" x2="598.5" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.78" x2="593.52" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.05" x2="598.5" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.29" x2="593.52" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.56" x2="598.5" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.8" x2="593.52" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.07" x2="598.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="464.31" x2="593.52" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.58" x2="598.5" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.58" x2="606.21" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="464.31" x2="601.44" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.07" x2="606.21" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.8" x2="601.44" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.56" x2="606.21" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.29" x2="601.44" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.05" x2="606.21" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.78" x2="601.44" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.54" x2="606.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.3" y1="462.12" x2="606.42" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="462.54" x2="617.85" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.7" y1="462.78" x2="606.96" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.17" y1="463.05" x2="617.52" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.31" y1="463.29" x2="607.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.65" y1="463.56" x2="617.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.8" y1="463.8" x2="607.92" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.31" y1="464.07" x2="616.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.17" y1="464.31" x2="608.7" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.12" y1="464.58" x2="615.66" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.12" y1="464.82" x2="609.81" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.89" y1="465.09" x2="614.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.94" y1="461.25" x2="618.39" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.45" y1="461.01" x2="612.45" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.75" y1="460.74" x2="618.51" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.57" y1="460.5" x2="612.99" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="460.23" x2="618.6" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.66" y1="459.99" x2="613.32" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.01" y1="463.65" x2="617.46" y2="463.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.3" y1="461.52" x2="601.44" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.76" x2="618.21" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.69" y1="459.72" x2="613.44" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.59" y1="459.48" x2="618.69" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.72" y1="459.21" x2="613.65" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.74" y1="458.97" x2="618.75" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.73" x2="618.75" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="457.44" x2="613.92" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.17" x2="618.75" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.93" x2="613.92" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.66" x2="618.75" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.42" x2="613.92" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.15" x2="618.75" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.91" x2="613.92" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.64" x2="618.75" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.4" x2="613.92" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.13" x2="618.75" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.89" x2="613.92" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.62" x2="618.75" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.38" x2="613.92" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.11" x2="618.75" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.87" x2="613.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.6" x2="618.75" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.36" x2="613.92" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.09" x2="618.75" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.85" x2="613.92" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.58" x2="618.75" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.34" x2="613.92" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.07" x2="618.75" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.83" x2="613.92" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.56" x2="618.75" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.32" x2="613.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.05" x2="618.75" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.81" x2="613.92" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.54" x2="618.75" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.3" x2="613.92" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.03" x2="618.75" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.79" x2="613.92" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.52" x2="618.75" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.28" x2="613.92" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.01" x2="618.75" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.77" x2="613.92" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="448.5" x2="618.75" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.26" x2="613.92" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.99" x2="618.75" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.75" x2="613.92" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.48" x2="618.75" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.24" x2="613.92" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.97" x2="618.75" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="446.73" x2="613.92" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.46" x2="618.75" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="465.15" x2="612.69" y2="465.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.89" y1="465.09" x2="614.58" y2="464.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.7" x2="613.8" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="458.46" x2="618.75" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.19" x2="613.89" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.95" x2="618.75" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="459.09" x2="606.6" y2="458.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.78" y1="458.73" x2="618.72" y2="459.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.52" y1="465.18" x2="610.77" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.69" y1="462.36" x2="606.54" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="608.31" y2="460.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.07" y1="461.43" x2="611.46" y2="461.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.01" y1="463.89" x2="607.47" y2="463.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="613.53" y2="459.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="612.96" y2="460.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="607.44" y2="460.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="457.38" x2="629.22" y2="459.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.89" y1="457.44" x2="633.81" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="457.17" x2="628.86" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="456.93" x2="633.78" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.75" y1="456.66" x2="628.86" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="456.42" x2="633.72" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="456.15" x2="628.83" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="455.91" x2="633.72" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="455.64" x2="628.83" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="455.4" x2="633.75" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="455.13" x2="628.8" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.89" x2="633.81" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.81" y1="454.62" x2="628.8" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.38" x2="633.84" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.87" y1="454.11" x2="628.83" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="453.87" x2="633.93" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.99" y1="453.6" x2="628.89" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="453.36" x2="634.05" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="453.09" x2="628.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.01" y1="452.85" x2="634.14" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.2" y1="452.58" x2="629.07" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="452.34" x2="634.26" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.38" y1="452.07" x2="629.22" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.28" y1="451.83" x2="634.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.62" y1="451.56" x2="629.37" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.49" y1="451.32" x2="634.77" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="451.05" x2="629.61" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.73" y1="450.81" x2="635.16" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.43" y1="450.54" x2="629.85" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="450.3" x2="635.73" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="450.03" x2="630.12" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.3" y1="449.79" x2="636.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.56" y1="449.52" x2="630.48" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.63" y1="449.28" x2="645.81" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.99" y1="449.52" x2="639.54" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.29" y1="449.79" x2="646.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.32" y1="450.03" x2="640.8" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.13" y1="450.3" x2="646.47" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.62" y1="450.54" x2="641.43" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.64" y1="450.81" x2="646.74" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.83" y1="451.05" x2="641.85" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.0" y1="451.32" x2="646.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.04" y1="451.56" x2="642.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.24" y1="451.83" x2="647.13" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.22" y1="452.07" x2="642.33" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.42" y1="452.34" x2="647.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.34" y1="452.58" x2="642.51" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.54" y1="452.85" x2="647.37" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.4" y1="453.09" x2="642.57" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.63" y1="449.01" x2="630.84" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.08" y1="448.77" x2="645.39" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.12" y1="448.5" x2="631.32" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.56" y1="448.26" x2="644.88" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.61" y1="447.99" x2="631.83" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.16" y1="447.75" x2="644.34" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="447.48" x2="632.49" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.88" y1="447.24" x2="643.56" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.2" y1="446.97" x2="633.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.84" y1="446.73" x2="642.72" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.12" y1="446.46" x2="634.59" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.52" y1="446.22" x2="641.4" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.38" y1="445.95" x2="636.93" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.45" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="457.68" x2="633.9" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.96" y1="457.95" x2="628.98" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.04" y1="458.19" x2="634.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="458.46" x2="629.1" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="458.7" x2="634.17" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.29" y1="458.97" x2="629.19" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.25" y1="459.21" x2="634.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.56" y1="459.48" x2="629.37" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.46" y1="459.72" x2="634.68" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.8" y1="459.99" x2="629.58" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.67" y1="460.23" x2="635.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.19" y1="460.5" x2="629.79" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.88" y1="460.74" x2="635.37" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.58" y1="461.01" x2="630.03" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.21" y1="461.25" x2="635.85" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.24" y1="461.52" x2="630.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.54" y1="461.76" x2="637.05" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.9" y1="461.76" x2="646.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.53" y1="461.52" x2="640.62" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.04" y1="461.25" x2="646.65" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.74" y1="461.01" x2="641.37" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.61" y1="460.74" x2="646.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.92" y1="460.5" x2="641.82" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.97" y1="460.23" x2="647.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.1" y1="459.99" x2="642.12" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.21" y1="459.72" x2="647.13" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.19" y1="459.48" x2="642.3" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.33" y1="459.21" x2="647.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.28" y1="458.97" x2="642.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="458.7" x2="647.34" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="458.19" x2="654.09" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.03" y1="457.95" x2="649.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.32" y1="457.68" x2="654.0" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="457.44" x2="649.26" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="457.17" x2="653.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="457.14" x2="653.82" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="459.72" x2="654.6" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.48" y1="459.48" x2="649.71" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.68" y1="459.21" x2="654.36" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="458.97" x2="649.62" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.56" y1="458.7" x2="654.18" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="653.88" y2="457.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.93" x2="649.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.08" y1="456.66" x2="653.88" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.64" y1="456.36" x2="668.58" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.44" y1="451.32" x2="662.79" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.91" y1="451.56" x2="667.5" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.83" x2="663.03" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.15" y1="452.07" x2="667.65" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.71" y1="452.34" x2="663.24" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.36" y1="452.58" x2="667.8" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="452.85" x2="663.45" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.51" y1="453.09" x2="667.92" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.01" y1="453.36" x2="663.57" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.63" y1="453.6" x2="668.07" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.13" y1="453.87" x2="663.69" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="454.11" x2="668.16" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="454.38" x2="663.81" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="454.62" x2="668.25" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.28" y1="454.89" x2="663.84" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.13" x2="668.31" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.34" y1="455.4" x2="663.84" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.64" x2="668.37" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.4" y1="455.91" x2="663.84" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="456.15" x2="668.43" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.43" y1="456.42" x2="663.84" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.78" y1="456.66" x2="668.4" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.37" y1="456.93" x2="663.75" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.72" y1="457.17" x2="668.34" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.31" y1="457.44" x2="663.69" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.66" y1="457.68" x2="668.28" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="457.95" x2="663.63" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.6" y1="458.19" x2="668.19" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.16" y1="458.46" x2="663.57" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.48" y1="458.7" x2="668.13" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.07" y1="458.97" x2="663.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.24" y1="459.21" x2="667.98" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="459.48" x2="663.12" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.0" y1="459.72" x2="667.74" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="459.99" x2="662.88" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="460.23" x2="667.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.41" y1="460.5" x2="662.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.4" y1="460.74" x2="667.29" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.17" y1="461.01" x2="662.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.86" y1="461.25" x2="667.05" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.96" y1="461.52" x2="661.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.11" y1="461.76" x2="666.78" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.57" y1="462.03" x2="660.63" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.89" y1="462.27" x2="666.36" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.12" y1="462.54" x2="658.92" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="462.78" x2="665.91" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="463.05" x2="658.92" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.29" x2="665.4" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.04" y1="463.56" x2="658.92" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.8" x2="664.65" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.29" y1="464.07" x2="658.92" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.31" x2="663.93" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.57" y1="464.58" x2="658.95" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.82" x2="663.12" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="465.09" x2="658.95" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.33" x2="661.65" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.15" y1="465.6" x2="658.95" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="658.77" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.26" y2="462.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.27" x2="651.42" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.21" y1="462.03" x2="656.97" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.49" y1="461.76" x2="651.03" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.82" y1="461.52" x2="656.04" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.62" y1="461.25" x2="650.61" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.43" y1="461.01" x2="655.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="460.74" x2="650.22" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.01" y1="460.5" x2="655.08" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="460.23" x2="649.89" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.5" y1="458.46" x2="654.15" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="654.69" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.42" x2="649.02" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.96" y1="456.15" x2="653.85" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.91" x2="649.02" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.05" y1="455.64" x2="653.85" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.4" x2="649.08" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="455.13" x2="653.85" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.82" y1="454.89" x2="649.17" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="454.62" x2="653.88" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.91" y1="454.38" x2="649.26" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.29" y1="454.11" x2="653.94" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.97" y1="453.87" x2="649.32" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.38" y1="453.6" x2="654.0" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="453.36" x2="649.41" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="453.09" x2="654.15" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="452.85" x2="649.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.53" y1="452.58" x2="654.3" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.39" y1="452.34" x2="649.56" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.62" y1="452.07" x2="654.48" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.6" y1="451.83" x2="649.65" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.71" y1="451.56" x2="654.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.32" x2="649.86" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.04" y1="451.05" x2="654.99" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.14" y1="450.81" x2="650.19" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.37" y1="450.54" x2="655.53" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.95" y1="450.3" x2="650.52" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.67" y1="450.03" x2="656.34" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.76" y1="449.79" x2="650.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.0" y1="449.52" x2="657.3" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.03" y1="449.52" x2="666.45" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.6" y1="449.79" x2="660.78" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.47" y1="450.03" x2="666.78" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.93" y1="450.3" x2="661.74" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.04" y1="450.54" x2="667.08" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.26" y1="450.81" x2="662.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.58" y1="451.05" x2="667.38" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.24" y1="449.28" x2="651.18" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.33" y1="449.01" x2="665.97" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="448.77" x2="651.51" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="448.5" x2="665.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.19" y1="448.26" x2="652.2" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="447.99" x2="664.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.53" y1="447.75" x2="653.01" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.43" y1="447.48" x2="664.17" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.81" y1="447.24" x2="653.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="446.97" x2="663.24" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.49" y1="446.73" x2="654.66" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.5" y1="446.46" x2="661.74" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.94" y1="446.22" x2="657.39" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="656.55" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="651.36" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.69" y1="455.31" x2="663.66" y2="456.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="648.99" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="451.65" x2="663.15" y2="452.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.65" x2="654.57" y2="452.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.39" y1="458.31" x2="663.15" y2="459.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.89" y1="461.04" x2="661.5" y2="461.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.53" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.6" x2="656.67" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.98" y1="465.33" x2="658.38" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.09" x2="655.47" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.96" y1="464.82" x2="658.38" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.58" x2="654.45" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="464.31" x2="658.38" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.07" x2="653.4" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.89" y1="463.8" x2="658.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.56" x2="652.44" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.23" y1="463.29" x2="658.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.05" x2="652.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="462.78" x2="658.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.54" x2="651.63" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.23" y1="462.03" x2="630.72" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.87" y1="462.27" x2="646.08" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.93" y1="462.54" x2="631.11" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.38" y1="462.78" x2="645.75" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.51" y1="463.05" x2="631.62" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.86" y1="463.29" x2="645.27" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.03" y1="463.56" x2="632.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.46" y1="463.8" x2="644.76" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.4" y1="464.07" x2="632.85" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.21" y1="464.31" x2="644.01" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.62" y1="464.58" x2="633.57" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.14" y1="464.82" x2="643.02" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="465.09" x2="634.71" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.31" y1="465.33" x2="641.37" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.02" y1="465.6" x2="636.48" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="655.71" y2="461.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.7" y1="446.52" x2="661.65" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.05" y1="450.03" x2="661.56" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.14" x2="667.23" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.46" x2="675.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.28" x2="670.59" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.72" x2="694.5" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.59" y1="459.48" x2="694.2" y2="460.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.73" x2="670.59" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.97" x2="675.69" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.24" x2="670.59" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.48" x2="675.69" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.75" x2="670.59" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.99" x2="675.69" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.26" x2="670.59" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="448.5" x2="675.69" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.77" x2="670.59" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.01" x2="675.69" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.28" x2="670.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.52" x2="675.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.79" x2="670.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.03" x2="675.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.3" x2="670.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.54" x2="675.69" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.81" x2="670.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.05" x2="675.69" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.32" x2="670.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.56" x2="675.69" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.83" x2="670.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.07" x2="675.69" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.34" x2="670.59" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.58" x2="675.69" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.85" x2="670.59" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.09" x2="675.69" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.36" x2="670.59" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.6" x2="675.69" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.87" x2="670.59" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.11" x2="675.69" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.38" x2="670.59" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.62" x2="675.69" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.89" x2="670.59" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.13" x2="675.69" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.4" x2="670.59" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.64" x2="675.69" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.91" x2="670.59" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.15" x2="675.69" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.42" x2="670.59" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.66" x2="675.69" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.93" x2="670.59" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.17" x2="675.69" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.44" x2="670.59" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.68" x2="675.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.95" x2="670.59" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.19" x2="675.69" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="458.46" x2="670.59" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.7" x2="675.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.75" y1="458.97" x2="670.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.21" x2="675.81" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.9" y1="459.48" x2="670.59" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.72" x2="676.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.17" y1="459.99" x2="670.59" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.23" x2="676.38" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.59" y1="460.5" x2="670.59" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.74" x2="676.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.04" y1="461.01" x2="670.59" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.25" x2="677.31" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.67" y1="461.52" x2="670.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.76" x2="678.42" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="680.49" y1="461.76" x2="690.3" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.52" y1="461.52" x2="681.12" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.48" y1="461.25" x2="689.13" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.83" y1="461.01" x2="681.75" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.93" y1="460.74" x2="688.65" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.47" y1="460.5" x2="682.11" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.26" y1="460.23" x2="688.29" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.17" y1="459.99" x2="682.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.47" y1="459.72" x2="688.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.96" y1="459.48" x2="682.53" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.56" y1="459.21" x2="687.9" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.84" y1="458.97" x2="682.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.7" x2="687.81" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.81" y1="458.46" x2="682.62" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.19" x2="687.78" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.75" y1="457.95" x2="682.62" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.68" x2="687.75" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="457.44" x2="682.62" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.17" x2="687.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.93" x2="682.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.66" x2="687.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.42" x2="682.62" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.15" x2="687.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.91" x2="682.62" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.64" x2="687.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.4" x2="682.62" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.13" x2="687.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.89" x2="682.62" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.62" x2="687.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.38" x2="682.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.11" x2="687.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.87" x2="682.62" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.6" x2="687.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.36" x2="682.62" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.09" x2="687.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.85" x2="682.62" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.58" x2="687.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.34" x2="682.62" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.07" x2="687.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.83" x2="682.62" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.56" x2="687.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.32" x2="682.62" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.05" x2="687.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.81" x2="682.62" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.54" x2="687.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.3" x2="682.62" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.03" x2="687.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.79" x2="682.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.52" x2="687.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.28" x2="682.62" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.01" x2="687.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.77" x2="682.62" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="448.5" x2="687.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.26" x2="682.62" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.99" x2="687.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.75" x2="682.62" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.48" x2="687.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.24" x2="682.62" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.97" x2="687.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="446.73" x2="682.62" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.46" x2="687.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.46" x2="699.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="446.73" x2="694.71" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.97" x2="699.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.24" x2="694.71" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.48" x2="699.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.75" x2="694.71" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.99" x2="699.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.26" x2="694.71" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="448.5" x2="699.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.77" x2="694.71" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.01" x2="699.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.28" x2="694.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.52" x2="699.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.79" x2="694.71" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.03" x2="699.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.3" x2="694.71" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.54" x2="699.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.81" x2="694.71" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.05" x2="699.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.32" x2="694.71" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.56" x2="699.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.83" x2="694.71" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.07" x2="699.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.34" x2="694.71" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.58" x2="699.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.85" x2="694.71" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.09" x2="699.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.36" x2="694.71" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.6" x2="699.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.87" x2="694.71" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.11" x2="699.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.38" x2="694.71" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.62" x2="699.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.89" x2="694.71" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.13" x2="699.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.4" x2="694.71" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.64" x2="699.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.91" x2="694.71" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.15" x2="699.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.42" x2="694.71" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.66" x2="699.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.93" x2="694.71" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.17" x2="699.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.44" x2="694.71" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.68" x2="699.72" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.95" x2="694.71" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="458.19" x2="699.72" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.46" x2="694.71" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.68" y1="458.7" x2="699.72" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.97" x2="694.65" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.62" y1="459.21" x2="699.72" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.99" x2="694.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.29" y1="460.23" x2="699.69" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.63" y1="460.5" x2="694.2" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.02" y1="460.74" x2="699.6" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.57" y1="461.01" x2="693.81" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.54" y1="461.25" x2="699.51" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.42" y1="461.52" x2="693.15" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.43" y1="461.76" x2="699.33" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.24" y1="462.03" x2="670.59" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.27" x2="699.15" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.03" y1="462.54" x2="670.59" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.78" x2="675.3" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.05" x2="670.59" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.29" x2="675.3" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.56" x2="670.59" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.8" x2="675.3" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.07" x2="670.59" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.31" x2="675.3" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.58" x2="670.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.82" x2="675.3" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="465.09" x2="670.59" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="462.78" x2="686.79" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.64" y1="463.05" x2="675.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.08" y1="463.29" x2="686.49" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.34" y1="463.56" x2="676.32" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.56" y1="463.8" x2="686.1" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.89" y1="464.07" x2="676.8" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="464.31" x2="685.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.32" y1="464.58" x2="677.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.76" y1="464.82" x2="684.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="684.54" y1="465.09" x2="678.3" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="465.33" x2="684.03" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="683.22" y1="465.6" x2="679.98" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.21" y1="462.78" x2="698.85" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.7" y1="463.05" x2="687.45" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.69" y1="463.29" x2="698.55" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.37" y1="463.56" x2="687.96" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.2" y1="463.8" x2="698.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.89" y1="464.07" x2="688.47" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.8" y1="464.31" x2="697.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.26" y1="464.58" x2="689.16" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.49" y1="464.82" x2="696.87" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="696.33" y1="465.09" x2="689.94" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="690.48" y1="465.33" x2="695.61" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.32" y1="465.6" x2="691.32" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="457.26" x2="654.0" y2="456.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="649.35" y2="459.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="652.74" y2="447.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="657.75" y2="449.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.4" y1="450.0" x2="649.95" y2="450.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="659.85" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="654.93" y2="460.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.77" y1="462.12" x2="659.4" y2="462.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.62" y1="465.54" x2="662.43" y2="465.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.37" y1="463.56" x2="666.09" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="465.87" x2="657.48" y2="465.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="462.84" x2="606.66" y2="462.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.27" x2="581.13" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.03" x2="586.02" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.54" x2="581.13" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.78" x2="586.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.05" x2="581.13" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.29" x2="586.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.56" x2="581.13" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.8" x2="586.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.07" x2="581.13" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="464.31" x2="586.02" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.58" x2="581.13" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.31" y1="452.58" x2="557.7" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.85" y1="452.34" x2="563.46" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.64" y1="452.07" x2="558.0" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.18" y1="451.83" x2="563.82" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="451.56" x2="558.33" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.48" y1="451.32" x2="564.15" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.33" y1="451.05" x2="558.63" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.78" y1="450.81" x2="564.48" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.66" y1="450.54" x2="558.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.11" y1="450.3" x2="564.84" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.99" y1="450.03" x2="559.26" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.41" y1="449.79" x2="565.17" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.13" y1="452.85" x2="557.55" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.4" y1="453.09" x2="562.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.8" y1="453.36" x2="557.25" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.07" y1="453.6" x2="562.62" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.44" y1="453.87" x2="556.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.77" y1="454.11" x2="562.29" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.11" y1="454.38" x2="556.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.46" x2="549.36" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="458.7" x2="554.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.97" x2="549.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.21" x2="554.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.48" x2="549.36" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.72" x2="554.25" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.99" x2="549.36" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.23" x2="554.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="460.5" x2="549.36" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.74" x2="554.25" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.01" x2="549.36" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.25" x2="554.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.52" x2="549.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.76" x2="554.25" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.03" x2="549.36" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.27" x2="554.25" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.54" x2="549.36" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.78" x2="554.25" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.05" x2="549.36" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.29" x2="554.25" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.56" x2="549.36" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.8" x2="554.25" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.07" x2="549.36" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.31" x2="554.25" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.58" x2="549.36" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.82" x2="554.25" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.58" x2="539.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.31" x2="537.99" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.55" y1="464.07" x2="539.94" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.8" x2="535.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.56" x2="539.94" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.29" x2="535.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.05" x2="539.94" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.78" x2="535.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.54" x2="539.94" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.27" x2="535.38" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.03" x2="539.94" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="461.76" x2="535.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.52" x2="539.94" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.05" y2="461.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.57" y1="462.54" x2="516.72" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.96" y1="462.78" x2="531.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.18" y1="463.05" x2="517.2" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.47" y1="463.29" x2="530.88" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.61" y1="463.56" x2="517.83" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.19" y1="463.8" x2="530.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.65" y1="464.07" x2="518.67" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.24" y1="464.31" x2="529.17" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.45" y1="464.58" x2="519.84" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.77" y1="464.82" x2="527.61" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.02" y1="465.09" x2="522.39" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.59" y1="462.03" x2="531.84" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.93" y1="461.76" x2="525.96" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.41" y1="461.52" x2="532.02" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.08" y1="461.25" x2="526.71" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.89" y1="461.01" x2="532.11" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.74" x2="527.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.16" y1="460.5" x2="532.14" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.14" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.57" y1="455.13" x2="526.77" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.68" y1="455.1" x2="526.92" y2="455.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.4" x2="532.14" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="455.64" x2="517.29" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.77" y1="455.91" x2="532.14" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.15" x2="518.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.3" y1="456.42" x2="532.14" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.66" x2="520.5" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.27" y1="456.93" x2="532.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.17" x2="524.43" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.75" y1="457.44" x2="532.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.68" x2="526.35" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.74" y1="457.95" x2="532.14" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.19" x2="527.04" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.19" y1="458.46" x2="532.14" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.7" x2="527.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="458.97" x2="532.14" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.21" x2="527.34" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="459.48" x2="532.14" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.72" x2="527.34" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="459.99" x2="532.14" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.23" x2="527.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.13" x2="532.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.62" x2="527.34" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="454.38" x2="532.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.11" x2="527.34" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="453.87" x2="532.17" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.6" x2="527.34" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="453.36" x2="532.17" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.09" x2="527.31" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.28" y1="452.85" x2="532.17" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.58" x2="527.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.22" y1="452.34" x2="532.17" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.07" x2="527.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.13" y1="451.83" x2="532.17" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.56" x2="527.1" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.04" y1="451.32" x2="532.17" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.05" x2="526.98" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.86" y1="450.81" x2="532.17" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="450.54" x2="526.71" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.5" y1="450.3" x2="532.14" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="450.03" x2="526.23" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="449.79" x2="532.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="449.52" x2="525.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.27" y1="449.28" x2="532.17" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.95" y1="447.75" x2="516.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.27" y1="447.48" x2="526.65" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.35" y1="447.24" x2="516.54" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.87" y1="446.97" x2="525.96" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="446.73" x2="517.38" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.92" y1="446.46" x2="525.0" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.25" y1="446.22" x2="518.46" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.6" y1="445.95" x2="522.99" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="453.36" x2="520.77" y2="453.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.67" y1="454.11" x2="521.67" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.13" y1="453.87" x2="515.55" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="453.6" x2="520.74" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.66" y1="454.38" x2="524.37" y2="454.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="454.89" x2="516.27" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.06" y1="454.62" x2="524.79" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.35" y1="449.01" x2="499.59" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="448.77" x2="511.17" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.02" y1="448.5" x2="499.59" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.5" x2="494.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="448.26" x2="499.32" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.99" x2="494.43" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.75" x2="499.32" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.48" x2="494.43" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.24" x2="499.32" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.97" x2="494.43" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.73" x2="499.32" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.46" x2="494.43" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.22" x2="499.32" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.95" x2="494.43" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.71" x2="499.32" y2="445.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.44" x2="494.43" y2="445.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.2" x2="499.32" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.93" x2="494.43" y2="444.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.69" x2="499.32" y2="444.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.42" x2="494.43" y2="444.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.18" x2="499.32" y2="444.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.91" x2="494.43" y2="443.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.67" x2="499.32" y2="443.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.4" x2="494.43" y2="443.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.16" x2="499.32" y2="443.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.89" x2="494.43" y2="442.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.65" x2="499.32" y2="442.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.38" x2="494.43" y2="442.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.14" x2="499.32" y2="442.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.87" x2="494.43" y2="441.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.63" x2="499.32" y2="441.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.36" x2="494.43" y2="441.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.12" x2="499.32" y2="441.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.85" x2="494.43" y2="440.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.61" x2="499.32" y2="440.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.34" x2="494.43" y2="440.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.1" x2="499.32" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.83" x2="494.43" y2="439.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.49" y1="439.59" x2="499.32" y2="439.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.32" x2="494.76" y2="439.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.03" y1="439.08" x2="499.32" y2="439.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.81" x2="495.33" y2="438.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.6" y1="438.57" x2="499.32" y2="438.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.3" x2="495.9" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.17" y1="438.06" x2="499.32" y2="438.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.79" x2="496.47" y2="437.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.74" y1="437.55" x2="499.32" y2="437.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.28" x2="497.01" y2="437.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.31" y1="437.04" x2="499.32" y2="437.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.77" x2="497.58" y2="436.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.88" y1="436.53" x2="499.32" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.26" x2="498.15" y2="436.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.45" y1="436.02" x2="499.32" y2="436.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="435.75" x2="498.72" y2="435.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="435.51" x2="499.32" y2="435.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.29" y1="435.24" x2="499.32" y2="435.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.32" y1="446.22" x2="507.6" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.35" y1="446.46" x2="501.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.24" y1="446.73" x2="508.83" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.34" y1="446.97" x2="500.88" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.58" y1="447.24" x2="509.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.0" y1="447.48" x2="500.31" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.07" y1="447.75" x2="510.3" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.54" y1="447.99" x2="499.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="448.26" x2="510.78" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.34" y1="445.95" x2="503.52" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.77" x2="494.43" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.01" x2="499.32" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.28" x2="494.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.52" x2="499.32" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.79" x2="494.43" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.03" x2="499.32" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.3" x2="494.43" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.54" x2="499.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.81" x2="494.43" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.05" x2="499.32" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.32" x2="494.43" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.56" x2="499.32" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.52" y1="379.65" x2="524.52" y2="375.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.96" y1="378.9" x2="529.71" y2="379.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="327.06" x2="737.22" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="322.65" x2="740.97" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="324.06" x2="736.47" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="859.47" y2="334.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="858.72" y2="336.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.22" y1="339.06" x2="858.72" y2="340.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="863.22" y1="339.06" x2="863.22" y2="342.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="925.35" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="407.1" x2="929.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="407.1" x2="933.45" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="928.26" y1="409.35" x2="926.76" y2="409.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="926.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="922.35" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="929.76" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="410.1" x2="937.11" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="407.1" x2="938.61" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.86" y1="422.1" x2="936.36" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="424.35" x2="937.11" y2="425.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.2" y1="425.85" x2="934.2" y2="424.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.7" y1="423.6" x2="934.2" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="422.1" x2="931.2" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="436.8" x2="1027.77" y2="439.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="436.8" x2="1027.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.77" y1="438.3" x2="1032.27" y2="439.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.02" y1="441.24" x2="1030.02" y2="444.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="443.49" x2="1030.02" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="443.49" x2="1027.77" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="444.24" x2="1042.77" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="439.8" x2="1045.77" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1045.77" y1="439.05" x2="1045.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="436.8" x2="1042.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.96" y1="184.65" x2="549.96" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="180.15" x2="551.46" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="183.15" x2="549.96" y2="184.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.02" y1="184.65" x2="547.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="545.52" y1="182.4" x2="544.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.52" y1="174.24" x2="535.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="535.02" y2="171.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="169.8" x2="532.77" y2="169.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="532.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="173.49" x2="507.27" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="169.8" x2="505.77" y2="168.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="169.05" x2="505.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="166.8" x2="502.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.52" y1="171.24" x2="502.77" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.02" y1="173.49" x2="505.02" y2="172.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="470.97" y1="161.31" x2="466.47" y2="161.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.22" y1="157.65" x2="466.47" y2="156.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="178.11" x2="454.02" y2="178.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.02" x2="449.52" y2="185.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.77" x2="453.27" y2="184.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="186.96" x2="454.02" y2="189.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="188.46" x2="449.52" y2="188.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="226.8" x2="430.02" y2="226.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="229.8" x2="433.77" y2="229.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="231.24" x2="434.52" y2="231.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.27" y1="233.49" x2="431.52" y2="234.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.61" y1="242.85" x2="397.86" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.86" y1="244.35" x2="398.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.2" y1="242.85" x2="393.45" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.86" y1="171.6" x2="336.36" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.2" y1="170.85" x2="333.45" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.61" y1="167.1" x2="338.61" y2="170.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.61" y1="167.1" x2="335.61" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="154.65" x2="361.02" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.27" y1="154.65" x2="360.27" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="150.15" x2="361.02" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.49" y1="150.9" x2="363.24" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.9" y1="150.15" x2="369.9" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.4" y1="150.15" x2="368.4" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.49" y1="153.9" x2="364.74" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.93" y1="127.44" x2="327.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.68" y1="127.44" x2="324.93" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.18" y1="123.75" x2="323.43" y2="123.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.18" y1="125.19" x2="327.93" y2="125.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="291.15" y1="104.16" x2="291.15" y2="103.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="286.71" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="288.15" y1="104.16" x2="291.15" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="285.96" y2="99.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="117.09" x2="228.93" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="120.75" x2="228.93" y2="123.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="122.25" x2="224.43" y2="122.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.18" y1="119.34" x2="224.43" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.18" y1="125.19" x2="225.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="162.6" x2="250.95" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.11" y1="163.35" x2="253.86" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.7" y1="166.35" x2="250.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.77" y1="82.74" x2="384.27" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="79.8" x2="385.02" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="76.8" x2="382.77" y2="76.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="385.77" y1="78.3" x2="387.27" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="81.24" x2="387.27" y2="84.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="82.74" x2="382.77" y2="82.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="72.06" x2="380.97" y2="69.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.22" y1="67.65" x2="378.72" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.47" y1="66.15" x2="380.97" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="64.65" x2="376.47" y2="64.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="38.85" x2="351.36" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="34.35" x2="352.86" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="37.35" x2="351.36" y2="38.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.45" y1="38.1" x2="348.45" y2="35.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.95" y1="35.85" x2="348.45" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="34.56" x2="231.72" y2="37.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="36.06" x2="227.22" y2="36.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="33.15" x2="231.72" y2="30.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.2" y1="107.85" x2="451.95" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.61" y1="107.1" x2="458.61" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.11" y1="107.1" x2="457.11" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.2" y1="110.85" x2="453.45" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.75" y1="461.37" x2="611.07" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="519.9" x2="742.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="523.29" x2="752.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="530.94" x2="742.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="742.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="751.29" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="537.75" x2="742.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="530.94" x2="782.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="781.29" y1="542.01" x2="774.48" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="537.75" x2="782.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="526.71" x2="779.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="779.58" y1="525.0" x2="779.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="519.9" x2="772.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="523.29" x2="842.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="530.94" x2="832.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.48" y1="542.01" x2="832.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="537.75" x2="832.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="526.71" x2="832.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.77" y1="519.9" x2="862.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="519.9" x2="862.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.58" y1="523.29" x2="872.97" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="530.94" x2="862.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="864.48" y1="542.01" x2="862.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="537.75" x2="862.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.87" y1="545.4" x2="867.87" y2="547.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="547.11" x2="892.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="537.75" x2="902.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="537.75" x2="892.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="526.71" x2="892.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="523.29" x2="902.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="525.0" x2="924.48" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="519.9" x2="922.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="530.94" x2="932.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="926.16" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="537.75" x2="932.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="526.71" x2="929.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="523.29" x2="962.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="530.94" x2="952.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="956.16" y1="542.01" x2="952.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="542.01" x2="962.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="545.4" x2="992.97" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="542.01" x2="992.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="986.16" y1="542.01" x2="982.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="537.75" x2="992.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="526.71" x2="989.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.58" y1="525.0" x2="989.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="519.9" x2="982.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="530.94" x2="992.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="536.04" x2="1012.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1012.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="548.79" x2="1017.87" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1022.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1021.29" y1="526.71" x2="1022.97" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1017.87" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1016.16" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="525.0" x2="1042.77" y2="521.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="526.71" x2="1042.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="530.94" x2="1051.29" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1042.77" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="537.75" x2="1042.77" y2="536.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1052.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="547.5" x2="1131.87" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="570.0" x2="1124.37" y2="562.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="540.0" x2="1124.37" y2="532.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="510.0" x2="1184.37" y2="502.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="480.0" x2="1124.37" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="450.0" x2="1184.37" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="420.0" x2="1124.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="390.0" x2="1184.37" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="300.0" x2="1124.37" y2="292.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="270.0" x2="1184.37" y2="262.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="240.0" x2="1124.37" y2="232.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="210.0" x2="1184.37" y2="202.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="180.0" x2="1124.37" y2="172.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="150.0" x2="1184.37" y2="142.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1192.77" y1="105.72" x2="1192.77" y2="98.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.58" y1="105.72" x2="1197.87" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1210.65" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1214.88" y1="107.4" x2="1219.98" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1203.84" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="120.0" x2="1124.37" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="330.0" x2="1184.37" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="360.0" x2="1124.37" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="519.9" x2="952.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="530.94" x2="962.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="932.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="548.79" x2="902.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.87" y1="547.11" x2="837.87" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="570.0" x2="1184.37" y2="577.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="189.45" x2="446.19" y2="170.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.22" y1="170.55" x2="446.22" y2="169.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="167.01" x2="425.52" y2="167.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="166.98" x2="424.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.58" y1="170.55" x2="422.58" y2="189.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.55" y1="189.45" x2="422.55" y2="190.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="192.99" x2="443.25" y2="192.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="193.02" x2="443.82" y2="192.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.27" y1="171.3" x2="402.27" y2="128.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="121.2" x2="414.27" y2="114.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="117.81" x2="424.47" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="110.16" x2="424.47" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="106.74" x2="419.37" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="419.37" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="422.79" y2="99.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="88.05" x2="424.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="84.66" x2="419.37" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="77.01" x2="421.08" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="70.2" x2="414.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="73.59" x2="424.47" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="75.3" x2="444.27" y2="71.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="73.59" x2="449.37" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="75.3" x2="447.66" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="81.24" x2="452.79" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="86.76" x2="454.47" y2="88.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="91.89" x2="447.66" y2="93.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="97.83" x2="451.08" y2="97.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="88.05" x2="481.08" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="77.01" x2="474.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="71.91" x2="504.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="509.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="512.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="92.31" x2="504.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="92.31" x2="534.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.79" y1="77.01" x2="544.47" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="539.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="542.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.56" y1="82.95" x2="564.27" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="567.66" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="574.47" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="81.24" x2="574.47" y2="84.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="88.62" x2="567.66" y2="88.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="564.27" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="574.47" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="128.7" x2="346.47" y2="171.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="139.8" x2="579.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.87" y1="139.8" x2="1047.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.77" y1="90.0" x2="1184.37" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="89.4" x2="1169.37" y2="80.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.17" y1="150.0" x2="1048.17" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="630.9" x2="1139.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="638.4" x2="1169.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.87" y1="484.5" x2="737.37" y2="484.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="731.37" y1="523.5" x2="360.87" y2="523.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.72" y1="533.85" x2="375.72" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="533.85" x2="397.41" y2="538.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="549.15" x2="413.97" y2="544.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="533.85" x2="408.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="549.15" x2="392.31" y2="533.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.72" y1="504.6" x2="744.72" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.31" y1="494.4" x2="763.86" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="504.6" x2="752.4" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="507.15" x2="777.87" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.1" y1="491.85" x2="788.1" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="507.15" x2="799.56" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="494.4" x2="813.57" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="507.15" x2="837.81" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="507.15" x2="849.27" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="846.72" y1="507.15" x2="846.72" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="491.85" x2="849.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.21" y1="494.4" x2="857.79" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="871.8" y1="491.85" x2="871.8" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="882.0" y1="499.5" x2="871.8" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.44" y1="504.6" x2="862.89" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="491.85" x2="827.61" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="507.15" x2="811.02" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="491.85" x2="794.46" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.36" y1="507.15" x2="898.59" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="507.15" x2="893.49" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="491.85" x2="910.05" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="907.5" y1="491.85" x2="907.5" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="507.15" x2="910.05" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="915.99" y1="504.6" x2="915.99" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="942.78" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="932.58" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="252.96" x2="1073.52" y2="242.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="236.37" x2="1073.52" y2="236.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1065.87" y1="236.37" x2="1065.87" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1058.22" y2="231.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1073.52" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="214.71" x2="1058.22" y2="214.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="209.61" x2="1058.22" y2="219.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="203.64" x2="1058.22" y2="198.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="201.09" x2="1073.52" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="198.54" x2="1073.52" y2="203.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1070.97" y1="192.18" x2="1065.87" y2="192.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="192.18" x2="1058.22" y2="189.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="176.04" x2="1073.52" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="173.49" x2="1058.22" y2="173.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="176.04" x2="1058.22" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="164.55" x2="1058.22" y2="162.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.0" y1="127.65" x2="771.0" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.86" y1="112.35" x2="749.76" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.31" y1="112.35" x2="752.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.76" y1="127.65" x2="754.86" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.81" y1="125.1" x2="724.26" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="710.25" y1="114.9" x2="707.67" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.66" y1="112.35" x2="683.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="122.55" x2="677.1" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="120.0" x2="666.87" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="666.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="660.51" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="671.97" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="650.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="112.35" x2="643.95" y2="122.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="120.0" x2="643.95" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="120.0" x2="572.67" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.02" y1="112.35" x2="565.02" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.12" y1="117.45" x2="575.25" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.66" y1="112.35" x2="548.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.56" y1="120.0" x2="548.46" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.1" y1="112.35" x2="542.1" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.87" y1="127.65" x2="531.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="114.9" x2="525.51" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.95" y1="120.0" x2="508.95" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.72" y1="117.45" x2="506.4" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="105.0" x2="790.53" y2="106.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.47" y1="45.0" x2="1150.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="435.0" x2="790.53" y2="436.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.47" y1="615.0" x2="1075.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="615.0" x2="190.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="585.0" x2="81.15" y2="585.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="465.0" x2="81.15" y2="465.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="62.37" y1="135.0" x2="62.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.37" y1="135.0" x2="116.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.47" y1="45.0" x2="175.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="175.14" x2="246.87" y2="175.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="179.64" x2="329.37" y2="180.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="254.64" x2="269.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.37" y1="254.64" x2="239.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.01" y1="315.0" x2="344.73" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.37" y1="255.36" x2="389.37" y2="254.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.01" y1="165.0" x2="479.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="165.0" x2="524.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="120.36" x2="449.37" y2="119.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.37" y1="329.64" x2="224.37" y2="330.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="539.64" x2="344.37" y2="540.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.73" y1="570.0" x2="284.01" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.01" y1="330.0" x2="749.73" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="338.04" x2="449.91" y2="327.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="337.89" x2="420.78" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.35" y1="336.15" x2="449.91" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="334.44" x2="421.68" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.77" y1="332.7" x2="449.91" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="330.99" x2="421.59" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="329.25" x2="449.91" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="445.62" y1="327.54" x2="420.57" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.58" y1="325.8" x2="436.35" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.84" y1="324.06" x2="418.17" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="322.35" x2="435.18" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.46" y1="320.61" x2="414.0" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.72" y1="318.9" x2="433.5" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.62" y1="317.16" x2="415.44" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="315.45" x2="435.03" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.44" y1="313.71" x2="416.88" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.57" y1="312.0" x2="437.85" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="439.26" y1="310.26" x2="418.29" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.01" y1="308.52" x2="423.3" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.38" y1="308.52" x2="440.64" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.7" y1="306.81" x2="426.51" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.61" y1="305.07" x2="438.99" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.25" y1="303.36" x2="430.74" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.87" y1="301.62" x2="435.54" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.88" y1="306.81" x2="419.73" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.89" y1="313.71" x2="381.33" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.92" y1="312.0" x2="400.17" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.45" y1="310.26" x2="378.51" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.1" y1="308.52" x2="393.36" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.47" y1="308.52" x2="398.73" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.04" y1="306.81" x2="397.86" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.26" y1="306.81" x2="377.04" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.78" y1="305.07" x2="389.13" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.03" y1="303.36" x2="380.49" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.23" y1="301.62" x2="384.9" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.74" y1="315.45" x2="401.61" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.33" y1="317.16" x2="384.15" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.24" y1="318.9" x2="403.05" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.74" y1="320.61" x2="383.31" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.59" y1="322.35" x2="401.64" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.6" y1="324.06" x2="381.93" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.42" y1="325.8" x2="398.22" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.23" y1="327.54" x2="372.15" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="329.25" x2="396.54" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.12" y1="330.99" x2="367.86" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="332.7" x2="396.0" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.09" y1="334.44" x2="367.86" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="336.15" x2="396.39" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.93" y1="337.89" x2="367.86" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.24" y1="339.6" x2="397.8" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.06" y1="341.34" x2="381.75" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.32" y1="343.08" x2="400.83" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.68" y1="344.79" x2="383.04" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.94" y1="346.53" x2="433.83" y2="346.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.14" y1="348.24" x2="384.63" y2="348.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.22" y1="349.98" x2="434.55" y2="349.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.96" y1="351.69" x2="381.81" y2="351.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.4" y1="353.43" x2="437.37" y2="353.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="438.78" y1="355.14" x2="378.99" y2="355.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.58" y1="356.88" x2="440.16" y2="356.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.3" y1="358.62" x2="425.79" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.89" y1="360.33" x2="439.56" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="362.07" x2="430.02" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.15" y1="363.78" x2="436.11" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.4" y1="365.52" x2="434.25" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="358.62" x2="396.54" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.98" y1="358.62" x2="376.47" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.18" y1="360.33" x2="389.85" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.75" y1="362.07" x2="379.92" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.63" y1="363.78" x2="385.62" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="365.52" x2="383.37" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.25" y1="360.33" x2="416.52" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.14" y1="362.07" x2="402.63" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.81" y1="363.78" x2="414.96" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.78" y1="365.52" x2="402.99" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.14" y1="367.23" x2="414.6" y2="367.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.42" y1="368.97" x2="403.32" y2="368.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.5" y1="370.68" x2="414.27" y2="370.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.09" y1="372.42" x2="403.68" y2="372.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.03" y1="344.79" x2="434.7" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.42" y1="343.08" x2="416.97" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="418.74" y1="341.34" x2="436.02" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.5" y1="339.6" x2="419.94" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.69" y1="77.73" x2="267.75" y2="78.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.07" y1="216.6" x2="291.0" y2="236.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="293.4" x2="367.77" y2="293.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="216.6" x2="311.07" y2="216.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="220.17" x2="316.23" y2="220.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="289.83" x2="342.51" y2="289.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="242.97" x2="350.88" y2="242.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="254.01" x2="352.74" y2="261.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="265.08" x2="352.74" y2="272.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="268.77" x2="341.64" y2="268.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.64" y1="257.73" x2="352.74" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.33" y1="254.01" x2="341.64" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="250.38" x2="341.64" y2="248.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.35" y1="410.85" x2="280.35" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="412.29" x2="272.97" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.15" y1="419.55" x2="267.15" y2="412.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.52" y1="473.1" x2="319.71" y2="473.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.04" y1="476.4" x2="326.34" y2="476.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.41" y1="479.7" x2="316.41" y2="474.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-</svg>
diff --git a/examples/composite_bottom.png b/examples/composite_bottom.png
new file mode 100644
index 0000000..4d13bfd
--- /dev/null
+++ b/examples/composite_bottom.png
Binary files differ
diff --git a/examples/composite_bottom.svg b/examples/composite_bottom.svg
new file mode 100644
index 0000000..c2e176d
--- /dev/null
+++ b/examples/composite_bottom.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg baseProfile="full" height="100%" version="1.1" viewBox="0.000000, -541.920000, 686.070000, 541.920000" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><rect fill="rgb(0, 0, 0)" height="541.92" width="686.07" x="0.0" y="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-91.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="684.0" y1="-541.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="684.0" y1="-541.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="9.0" y1="-91.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.6" x2="51.66" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.84" y1="-154.92" y2="-156.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="52.14" y1="-156.42" y2="-157.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="52.56" y1="-157.89" y2="-159.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="53.07" y1="-159.33" y2="-160.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="53.7" y1="-160.74" y2="-162.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="54.45" y1="-162.09" y2="-163.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="55.29" y1="-163.41" y2="-164.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="56.25" y1="-164.64" y2="-165.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="57.27" y1="-165.81" y2="-166.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="58.38" y1="-166.92" y2="-167.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="59.58" y1="-167.94" y2="-168.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="60.84" y1="-168.84" y2="-169.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="62.16" y1="-169.65" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="63.54" y1="-170.37" y2="-171.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="64.95" y1="-171.0" y2="-171.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="66.39" y1="-171.48" y2="-171.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.89" y1="-171.87" y2="-172.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="69.36" y1="-172.14" y2="-172.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="70.89" y1="-172.29" y2="-172.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.39" y1="-172.32" y2="-172.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="73.86" y1="-172.23" y2="-172.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="75.33" y1="-172.02" y2="-171.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="76.77" y1="-171.69" y2="-171.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="78.15" y1="-171.24" y2="-170.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="79.5" y1="-170.7" y2="-170.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="80.79" y1="-170.04" y2="-169.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="82.02" y1="-169.26" y2="-168.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="83.19" y1="-168.39" y2="-167.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="84.27" y1="-167.43" y2="-166.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="85.23" y1="-166.38" y2="-165.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="86.13" y1="-165.24" y2="-164.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.94" y1="-164.04" y2="-162.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="87.63" y1="-162.75" y2="-161.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="88.2" y1="-161.43" y2="-160.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="88.68" y1="-160.05" y2="-158.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="89.04" y1="-158.61" y2="-157.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="89.28" y1="-157.14" y2="-155.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.4" y1="-155.67" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.4" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.28" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.04" y1="-151.17" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="88.68" y1="-149.7" y2="-148.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="88.2" y1="-148.23" y2="-146.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="87.63" y1="-146.79" y2="-145.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="86.94" y1="-145.41" y2="-144.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="86.13" y1="-144.09" y2="-142.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.23" y1="-142.8" y2="-141.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="84.27" y1="-141.6" y2="-140.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="83.19" y1="-140.46" y2="-139.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="82.02" y1="-139.41" y2="-138.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="80.79" y1="-138.45" y2="-137.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="79.5" y1="-137.58" y2="-136.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="78.15" y1="-136.8" y2="-136.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="76.77" y1="-136.14" y2="-135.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="75.33" y1="-135.6" y2="-135.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="73.86" y1="-135.15" y2="-134.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="72.39" y1="-134.82" y2="-134.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="70.89" y1="-134.61" y2="-134.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.36" y1="-134.52" y2="-134.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="67.89" y1="-134.55" y2="-134.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="66.39" y1="-134.7" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.95" y1="-134.97" y2="-135.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="63.54" y1="-135.36" y2="-135.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="62.16" y1="-135.84" y2="-136.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="60.84" y1="-136.47" y2="-137.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="59.58" y1="-137.19" y2="-138.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="58.38" y1="-138.0" y2="-138.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="57.27" y1="-138.9" y2="-139.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="56.25" y1="-139.92" y2="-141.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="55.29" y1="-141.03" y2="-142.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="54.45" y1="-142.2" y2="-143.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="53.7" y1="-143.43" y2="-144.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="53.07" y1="-144.75" y2="-146.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="52.56" y1="-146.1" y2="-147.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="52.14" y1="-147.51" y2="-148.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="51.84" y1="-148.95" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="51.66" y1="-150.42" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.6" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.1" x2="50.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="51.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="51.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="52.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="52.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="53.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="54.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="55.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="56.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="58.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="59.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="60.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="62.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="63.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="64.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="66.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="69.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="70.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="73.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="75.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="76.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="78.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="79.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="80.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="81.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="82.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="83.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="84.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="85.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="86.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="87.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="87.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="86.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="86.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="84.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="83.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="82.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="81.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="80.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="79.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="78.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="76.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="75.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="73.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="72.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="70.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="67.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="66.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="63.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="62.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="60.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="59.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="58.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="56.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="55.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="54.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="53.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="52.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="52.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="51.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="51.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="50.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="50.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-381.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-382.92" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-384.42" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-385.89" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-387.36" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-388.77" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-390.15" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-391.44" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-392.7" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-393.9" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-395.01" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-396.03" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-396.96" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-397.8" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-398.52" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-399.15" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-399.69" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-400.08" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-400.38" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-400.56" y2="-400.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-400.62" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-400.56" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-400.38" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-400.08" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-399.69" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-399.15" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-398.52" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-397.8" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-396.96" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-396.03" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-395.01" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-393.9" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-392.7" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-391.44" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-390.15" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-388.77" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-387.36" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-385.89" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-384.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-382.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-381.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-379.92" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-378.42" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-376.95" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-375.48" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-374.07" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-372.69" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-371.4" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-370.14" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-368.94" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-367.83" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-366.81" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-365.88" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-365.04" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-364.32" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-363.69" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-363.15" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-362.76" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-362.46" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-362.28" y2="-362.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-362.22" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-362.28" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-362.46" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-362.76" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-363.15" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-363.69" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-364.32" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-365.04" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-365.88" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-366.81" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-367.83" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-368.94" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-370.14" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-371.4" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-372.69" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-374.07" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-375.48" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-376.95" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-378.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-379.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-261.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-262.92" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-264.42" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-265.89" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-267.36" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-268.77" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-270.15" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-271.44" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-272.7" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-273.9" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-275.01" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-276.03" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-276.96" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-277.8" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-278.52" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-279.15" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-279.69" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-280.08" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-280.38" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-280.56" y2="-280.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-280.62" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-280.56" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-280.38" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-280.08" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-279.69" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-279.15" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-278.52" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-277.8" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-276.96" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-276.03" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-275.01" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-273.9" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-272.7" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-271.44" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-270.15" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-268.77" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-267.36" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-265.89" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-264.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-262.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-261.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-259.92" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-258.42" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-256.95" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-255.48" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-254.07" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-252.69" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-251.4" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-250.14" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-248.94" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-247.83" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-246.81" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-245.88" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-245.04" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-244.32" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-243.69" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-243.15" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-242.76" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-242.46" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-242.28" y2="-242.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-242.22" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-242.28" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-242.46" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-242.76" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-243.15" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-243.69" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-244.32" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-245.04" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-245.88" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-246.81" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-247.83" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-248.94" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-250.14" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-251.4" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-252.69" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-254.07" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-255.48" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-256.95" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-258.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-259.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-154.92" y2="-156.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-156.39" y2="-157.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-157.83" y2="-159.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-159.24" y2="-160.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-160.59" y2="-161.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-161.91" y2="-163.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-163.14" y2="-164.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-164.31" y2="-165.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-165.42" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-166.44" y2="-167.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-167.34" y2="-168.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-168.15" y2="-168.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-168.87" y2="-169.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-169.5" y2="-169.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-169.98" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-170.37" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-170.64" y2="-170.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-170.79" y2="-170.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-170.82" y2="-170.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-170.73" y2="-170.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-170.52" y2="-170.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-170.19" y2="-169.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-169.74" y2="-169.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-169.2" y2="-168.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-168.54" y2="-167.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-167.76" y2="-166.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-166.89" y2="-165.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-165.93" y2="-164.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-164.88" y2="-163.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-163.74" y2="-162.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-162.54" y2="-161.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-161.25" y2="-159.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-159.93" y2="-158.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-158.55" y2="-157.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-157.11" y2="-155.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-155.64" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-151.17" y2="-149.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-149.67" y2="-148.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-148.2" y2="-146.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-146.73" y2="-145.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-145.29" y2="-143.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-143.91" y2="-142.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-142.59" y2="-141.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-141.3" y2="-140.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-140.1" y2="-138.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-138.96" y2="-137.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-137.91" y2="-136.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-136.95" y2="-136.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-136.08" y2="-135.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-135.3" y2="-134.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-134.64" y2="-134.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-134.1" y2="-133.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-133.65" y2="-133.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-133.32" y2="-133.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-133.11" y2="-133.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-133.02" y2="-133.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-133.05" y2="-133.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-133.2" y2="-133.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-133.47" y2="-133.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-133.86" y2="-134.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-134.34" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-134.97" y2="-135.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-135.69" y2="-136.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-136.5" y2="-137.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-137.4" y2="-138.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-138.42" y2="-139.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-139.53" y2="-140.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-140.7" y2="-141.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-141.93" y2="-143.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-143.25" y2="-144.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-144.6" y2="-146.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-146.01" y2="-147.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-147.45" y2="-148.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-148.92" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-150.42" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="584.85" x2="578.94" y1="-120.3" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="578.94" x2="573.03" y1="-114.39" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="573.03" x2="573.03" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="565.5" x2="559.62" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="562.56" x2="562.56" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="565.5" x2="559.62" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="552.63" x2="543.75" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="543.75" x2="540.81" y1="-120.3" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="540.81" x2="540.81" y1="-117.33" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="540.81" x2="543.75" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="543.75" x2="552.63" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="552.63" x2="552.63" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="533.28" x2="527.37" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="530.34" x2="530.34" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="533.28" x2="527.37" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="501.06" x2="489.24" y1="-111.45" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="462.39" x2="462.39" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="462.39" x2="453.54" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="453.54" x2="450.57" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="450.57" x2="450.57" y1="-105.54" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="450.57" x2="453.54" y1="-117.33" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="453.54" x2="462.39" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="443.04" x2="443.04" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="431.25" x2="431.25" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="431.25" x2="437.13" y1="-120.3" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="437.13" x2="443.04" y1="-114.39" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="423.72" x2="411.9" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="423.72" x2="411.9" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="385.05" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="376.17" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="373.23" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="373.23" y1="-105.54" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="376.17" y1="-108.48" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="385.05" y1="-111.45" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="376.17" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="373.23" y1="-120.3" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="373.23" y1="-117.33" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="376.17" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="365.7" x2="365.7" y1="-114.39" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="365.7" x2="359.79" y1="-108.48" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="359.79" x2="356.85" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="349.59" x2="346.65" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="346.65" x2="346.65" y1="-114.39" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="349.59" x2="343.68" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="336.69" x2="336.69" y1="-105.54" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="336.69" x2="333.75" y1="-111.45" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="333.75" x2="324.9" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="324.9" x2="324.9" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="324.9" x2="333.75" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="333.75" x2="336.69" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="346.65" x2="346.65" y1="-120.3" y2="-123.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="317.37" x2="317.37" y1="-111.45" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="317.37" x2="314.4" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="314.4" x2="305.55" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="305.55" y1="-99.63" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="314.4" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="314.4" x2="317.37" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="308.49" y1="-99.63" y2="-96.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="308.49" x2="311.46" y1="-96.66" y2="-96.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="298.02" y1="-105.54" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="295.08" y1="-111.45" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="295.08" x2="289.17" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="289.17" x2="286.23" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="286.23" x2="286.23" y1="-111.45" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="286.23" x2="298.02" y1="-108.48" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="295.08" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="295.08" x2="289.17" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="584.85" x2="584.85" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.12" x1="686.07" x2="686.07" y1="-229.17" y2="-413.67" /><circle cx="546.0" cy="-358.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-343.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-313.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-298.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-328.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-283.92" fill="rgb(183, 115, 51)" r="8.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="520.5" x2="520.5" y1="-495.42" y2="-513.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="550.5" x2="550.5" y1="-513.42" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="220.5" x2="220.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="190.5" x2="190.5" y1="-517.92" y2="-499.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="160.5" x2="160.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-376.92" y2="-376.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-346.92" y2="-346.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-316.92" y2="-316.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-286.92" y2="-286.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-256.92" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.93" x2="23.4" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="595.59" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-240.81" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-234.54" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-230.13" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-227.82" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-227.82" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-230.13" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-234.54" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-240.81" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-248.46" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-257.01" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-265.86" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-274.41" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-282.06" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-288.33" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-292.74" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-295.02" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-295.02" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-292.74" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-288.33" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-282.06" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-274.41" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-265.86" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-257.01" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-248.46" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="592.2" x2="59.07" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-243.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-245.22" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-249.12" y2="-254.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-254.19" y2="-259.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-259.68" y2="-264.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-264.75" y2="-268.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-268.62" y2="-270.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-270.72" y2="-270.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-270.72" y2="-268.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-268.62" y2="-264.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-264.75" y2="-262.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-262.56" y2="-281.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-281.28" y2="-279.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-279.12" y2="-275.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-275.22" y2="-273.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-273.12" y2="-273.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-273.12" y2="-275.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-275.22" y2="-279.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-279.12" y2="-284.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-284.19" y2="-289.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-289.68" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-294.75" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-298.62" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-300.72" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-298.62" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-294.75" y2="-292.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-292.56" y2="-311.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-311.28" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-309.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-305.22" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-303.12" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-303.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-305.22" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-309.12" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-314.19" y2="-319.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-319.68" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-324.75" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-328.62" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-330.72" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-330.72" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-328.62" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-324.75" y2="-322.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-322.56" y2="-341.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-341.28" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-339.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-335.22" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-333.12" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-333.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-335.22" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-339.12" y2="-344.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-344.19" y2="-349.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-349.68" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-354.75" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-358.62" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-360.72" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-360.72" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-358.62" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-354.75" y2="-352.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-352.56" y2="-371.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-371.28" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-369.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-365.22" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-363.12" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-363.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-365.22" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-369.12" y2="-374.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-374.19" y2="-379.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-379.68" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-384.75" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-388.62" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-390.72" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-388.62" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-384.75" y2="-382.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-382.56" y2="-460.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.58" y1="-460.68" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="32.04" y1="-460.05" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="43.8" y1="-447.66" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="57.78" y1="-438.27" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="72.78" y1="-432.78" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="87.42" y1="-431.67" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="100.41" y1="-435.0" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="110.64" y1="-442.53" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="117.15" y1="-453.54" y2="-467.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="119.4" y1="-467.07" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="117.15" y1="-481.92" y2="-496.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="110.64" y1="-496.8" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="100.41" y1="-510.33" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="89.7" y1="-521.34" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="89.7" x2="150.57" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.57" x2="148.8" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="146.7" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="146.7" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="148.8" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="152.67" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="152.67" x2="157.74" y1="-488.22" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.74" x2="163.23" y1="-486.12" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="163.23" x2="168.33" y1="-486.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="168.33" x2="172.2" y1="-488.22" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.2" x2="174.3" y1="-492.12" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="174.3" y1="-497.19" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="172.2" y1="-520.68" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.2" x2="170.43" y1="-525.75" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.43" x2="180.57" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.57" x2="178.8" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.8" x2="176.7" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="176.7" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="178.8" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.8" x2="182.67" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="182.67" x2="187.74" y1="-488.22" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.74" x2="193.23" y1="-486.12" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="193.23" x2="198.33" y1="-486.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="198.33" x2="202.2" y1="-488.22" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="204.3" y1="-492.12" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="204.3" y1="-497.19" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="202.2" y1="-520.68" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="200.43" y1="-525.75" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="200.43" x2="209.73" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.73" x2="209.52" y1="-527.52" y2="-527.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.52" x2="208.17" y1="-527.31" y2="-525.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.17" x2="207.15" y1="-525.48" y2="-523.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="207.15" x2="206.46" y1="-523.47" y2="-521.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.46" x2="206.1" y1="-521.31" y2="-519.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.1" y1="-519.06" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="219.9" y1="-509.52" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="219.9" y1="-509.52" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.1" y1="-508.32" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.64" y1="-485.52" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.64" x2="223.86" y1="-485.52" y2="-485.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="223.86" x2="226.02" y1="-485.88" y2="-486.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="226.02" x2="228.06" y1="-486.57" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="228.06" x2="229.89" y1="-487.62" y2="-488.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="229.89" x2="231.48" y1="-488.94" y2="-490.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.48" x2="232.83" y1="-490.56" y2="-492.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.83" x2="233.85" y1="-492.39" y2="-494.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.85" x2="234.54" y1="-494.4" y2="-496.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.54" x2="234.9" y1="-496.56" y2="-498.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.9" y1="-498.81" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="221.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.1" y1="-508.32" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="234.9" y1="-509.52" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.9" y1="-509.52" y2="-519.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.54" y1="-519.06" y2="-521.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.54" x2="233.85" y1="-521.31" y2="-523.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.85" x2="232.83" y1="-523.47" y2="-525.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.83" x2="231.48" y1="-525.48" y2="-527.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.48" x2="231.27" y1="-527.31" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.27" x2="547.47" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.47" x2="547.14" y1="-527.52" y2="-527.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.14" x2="544.98" y1="-527.49" y2="-526.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.98" x2="542.94" y1="-526.77" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.94" x2="541.11" y1="-525.75" y2="-524.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="541.11" x2="539.52" y1="-524.4" y2="-522.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.52" x2="538.17" y1="-522.81" y2="-520.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.17" x2="537.15" y1="-520.98" y2="-518.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.15" x2="536.46" y1="-518.97" y2="-516.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.46" x2="536.1" y1="-516.81" y2="-514.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.1" y1="-514.56" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="549.9" y1="-505.02" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="549.9" y1="-505.02" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.1" y1="-503.82" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.64" y1="-481.02" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.64" x2="553.86" y1="-481.02" y2="-481.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.86" x2="556.02" y1="-481.38" y2="-482.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.02" x2="558.06" y1="-482.07" y2="-483.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.06" x2="559.89" y1="-483.12" y2="-484.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.89" x2="561.48" y1="-484.44" y2="-486.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.48" x2="562.83" y1="-486.06" y2="-487.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.83" x2="563.85" y1="-487.89" y2="-489.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.85" x2="564.54" y1="-489.9" y2="-492.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.54" x2="564.9" y1="-492.06" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.9" y1="-494.31" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="551.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.1" y1="-503.82" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="564.9" y1="-505.02" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.9" y1="-505.02" y2="-514.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.54" y1="-514.56" y2="-516.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.54" x2="563.85" y1="-516.81" y2="-518.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.85" x2="562.83" y1="-518.97" y2="-520.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.83" x2="561.48" y1="-520.98" y2="-522.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.48" x2="559.89" y1="-522.81" y2="-524.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.89" x2="558.06" y1="-524.4" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.06" x2="556.02" y1="-525.75" y2="-526.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.02" x2="553.86" y1="-526.77" y2="-527.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.86" x2="553.53" y1="-527.49" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.53" x2="603.78" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="603.78" x2="598.8" y1="-527.52" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-525.57" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-516.21" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-503.79" y2="-489.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-489.45" y2="-474.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="578.58" y1="-474.42" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="587.04" y1="-460.05" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="598.8" y1="-447.66" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="612.78" y1="-438.27" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="627.78" y1="-432.78" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="642.42" y1="-431.67" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="655.41" y1="-435.0" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="665.64" y1="-442.53" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="669.6" y1="-453.54" y2="-461.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="669.6" y1="-461.76" y2="-172.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.64" y1="-172.11" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="655.41" y1="-180.33" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="642.42" y1="-191.34" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-198.84" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="627.78" y1="-198.84" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-202.2" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="612.78" y1="-202.2" y2="-201.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="598.8" y1="-201.06" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-195.57" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-186.21" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-173.79" y2="-159.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-159.45" y2="-144.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="576.93" y1="-144.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="576.93" x2="283.5" y1="-135.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="283.5" y1="-135.42" y2="-117.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="279.78" y1="-117.84" y2="-114.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.78" x2="279.78" y1="-114.12" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.78" x2="88.11" y1="-106.32" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.11" x2="88.92" y1="-106.32" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="101.91" y1="-106.5" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-114.03" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="112.14" y1="-114.03" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="118.65" y1="-125.04" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="120.9" y1="-138.57" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.9" x2="118.65" y1="-153.42" y2="-168.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="112.14" y1="-168.3" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="101.91" y1="-181.83" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="88.92" y1="-192.84" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-200.34" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="74.28" y1="-200.34" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="74.28" y1="-203.7" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="59.28" y1="-203.7" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="45.3" y1="-202.56" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="33.54" y1="-197.07" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="25.08" y1="-187.71" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="23.4" y1="-175.29" y2="-169.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-169.8" y2="-251.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-251.28" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-249.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-245.22" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-243.12" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.43" x2="589.59" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.3" x2="412.05" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.59" x2="415.62" y1="-253.83" y2="-256.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.62" x2="417.24" y1="-256.83" y2="-260.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="417.24" y1="-260.79" y2="-265.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="415.62" y1="-265.08" y2="-269.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.62" x2="412.59" y1="-269.01" y2="-272.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.59" x2="408.63" y1="-272.04" y2="-273.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.63" x2="407.64" y1="-273.66" y2="-273.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="407.64" x2="357.9" y1="-273.66" y2="-323.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="357.9" y1="-323.4" y2="-388.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="358.62" y1="-388.14" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="360.24" y1="-388.83" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="360.24" y1="-392.79" y2="-397.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="358.62" y1="-397.08" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="593.49" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-402.06" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-394.41" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-385.86" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-377.01" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-368.46" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-360.81" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-354.54" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-350.13" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-347.82" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-347.82" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-350.13" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-354.54" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-360.81" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-368.46" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-377.01" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-385.86" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-394.41" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-402.06" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-408.33" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-412.74" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-415.02" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-415.02" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-412.74" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-408.33" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.81" x2="23.4" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="340.38" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="338.76" y1="-401.01" y2="-397.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="338.76" y1="-397.08" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="340.38" y1="-392.79" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="341.1" y1="-388.83" y2="-388.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="341.1" y1="-388.14" y2="-318.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="342.39" y1="-318.27" y2="-315.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.39" x2="395.76" y1="-315.18" y2="-261.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.76" x2="395.76" y1="-261.78" y2="-260.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.76" x2="397.38" y1="-260.79" y2="-256.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.38" x2="400.41" y1="-256.83" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.41" x2="404.37" y1="-253.83" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="404.37" x2="408.63" y1="-252.18" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.63" x2="412.59" y1="-252.18" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.22" x2="587.4" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="417.24" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.07" x2="587.94" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.2" x2="522.96" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="527.13" y1="-272.82" y2="-276.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="529.11" y1="-276.51" y2="-281.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="529.11" y1="-281.31" y2="-286.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="527.13" y1="-286.53" y2="-291.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="526.74" y1="-291.36" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="526.74" x2="534.78" y1="-291.72" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.78" x2="534.87" y1="-291.72" y2="-291.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-291.51" y2="-287.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-287.82" y2="-285.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-285.81" y2="-285.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-285.81" y2="-287.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-287.82" y2="-291.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-291.51" y2="-296.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-296.31" y2="-301.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-301.53" y2="-306.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-306.36" y2="-310.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-310.05" y2="-312.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-312.03" y2="-312.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-312.03" y2="-310.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-310.05" y2="-306.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="534.78" y1="-306.36" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.78" x2="527.28" y1="-306.12" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.28" x2="527.73" y1="-306.12" y2="-306.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.73" x2="528.72" y1="-306.75" y2="-308.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.72" x2="529.38" y1="-308.67" y2="-310.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.38" x2="529.71" y1="-310.71" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.71" y1="-312.84" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="516.27" y1="-313.68" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="516.27" y1="-313.68" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="529.71" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.71" y1="-314.19" y2="-315.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.38" y1="-315.0" y2="-317.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.38" x2="528.72" y1="-317.13" y2="-319.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.72" x2="527.73" y1="-319.2" y2="-321.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.73" x2="526.47" y1="-321.12" y2="-322.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="526.47" x2="524.94" y1="-322.86" y2="-324.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="524.94" x2="523.2" y1="-324.39" y2="-325.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.2" x2="521.25" y1="-325.65" y2="-326.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="521.25" x2="519.21" y1="-326.64" y2="-327.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="519.21" x2="517.08" y1="-327.3" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.08" x2="516.27" y1="-327.63" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="516.27" y1="-327.63" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="515.73" y1="-314.19" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="502.29" y1="-313.68" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.29" y1="-313.68" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.62" y1="-312.84" y2="-310.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.62" x2="503.28" y1="-310.71" y2="-308.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.28" x2="504.27" y1="-308.67" y2="-306.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.27" x2="504.72" y1="-306.75" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.72" x2="481.98" y1="-306.12" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.98" x2="481.59" y1="-306.12" y2="-306.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.59" x2="477.63" y1="-306.54" y2="-308.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.63" x2="473.37" y1="-308.16" y2="-308.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="473.37" x2="469.41" y1="-308.16" y2="-306.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.41" x2="466.38" y1="-306.54" y2="-303.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.38" x2="464.76" y1="-303.51" y2="-299.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.76" x2="464.76" y1="-299.58" y2="-295.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.76" x2="466.38" y1="-295.29" y2="-291.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.38" x2="469.41" y1="-291.33" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.41" x2="473.37" y1="-288.33" y2="-286.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="473.37" x2="477.63" y1="-286.68" y2="-286.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.63" x2="481.59" y1="-286.68" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.59" x2="484.62" y1="-288.33" y2="-291.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.62" x2="484.77" y1="-291.33" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.77" x2="505.26" y1="-291.72" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.26" x2="504.87" y1="-291.72" y2="-291.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-291.36" y2="-286.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-286.53" y2="-281.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-281.31" y2="-276.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-276.51" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-272.82" y2="-270.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-270.81" y2="-270.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="523.44" y1="-270.81" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.49" x2="591.42" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.18" x2="529.11" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.96" x2="540.81" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.81" x2="526.83" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.35" x2="540.06" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-315.81" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-315.81" y2="-317.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-317.82" y2="-321.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-321.51" y2="-326.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-326.31" y2="-331.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-331.53" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-336.36" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-340.05" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-342.03" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-342.03" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-340.05" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="532.89" y1="-336.36" y2="-331.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="532.89" y1="-331.53" y2="-326.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="534.87" y1="-326.31" y2="-321.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-321.51" y2="-317.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-317.82" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.22" x2="528.21" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.65" x2="669.6" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="555.78" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.54" x2="669.6" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="559.11" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.91" x2="669.6" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="554.28" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-347.82" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-345.81" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-345.81" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-347.82" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="532.89" y1="-351.51" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="532.89" y1="-356.31" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="534.87" y1="-361.53" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-366.36" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-370.05" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-372.03" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-372.03" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-370.05" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-366.36" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-361.53" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-356.31" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-351.51" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="554.31" x2="613.32" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="602.25" x2="557.94" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="596.7" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="592.86" x2="558.51" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="555.75" x2="590.13" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.6" x2="357.9" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="587.4" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="357.9" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="587.64" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.9" x2="359.7" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="590.76" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="604.17" x2="23.4" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-415.26" y2="-415.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="637.83" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="644.19" x2="669.6" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="648.51" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.24" x2="669.6" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.1" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.36" x2="669.6" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.4" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.87" x2="669.6" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.14" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="645.3" x2="669.6" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="639.75" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="628.68" x2="669.6" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="529.11" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="529.11" y1="-346.53" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="527.13" y1="-341.31" y2="-336.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="523.44" y1="-336.51" y2="-332.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="518.61" y1="-332.82" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="513.39" y1="-330.81" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="508.56" y1="-330.81" y2="-332.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="504.87" y1="-332.82" y2="-336.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-336.51" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-341.31" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-346.53" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-351.36" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-355.05" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-357.03" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="523.44" y1="-357.03" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="527.13" y1="-355.05" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="529.11" y1="-351.36" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.21" x2="537.69" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.06" x2="525.03" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="357.9" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="506.97" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.79" x2="357.9" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="502.89" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.76" x2="357.9" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="506.94" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.75" x2="508.8" y1="-326.64" y2="-325.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="507.06" y1="-325.65" y2="-324.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.06" x2="505.53" y1="-324.39" y2="-322.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.53" x2="504.27" y1="-322.86" y2="-321.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.27" x2="503.28" y1="-321.12" y2="-319.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.28" x2="502.62" y1="-319.2" y2="-317.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.62" x2="502.29" y1="-317.13" y2="-315.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.29" y1="-315.0" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="515.73" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="515.73" y1="-314.19" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="514.92" y1="-327.63" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="514.92" x2="512.79" y1="-327.63" y2="-327.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.79" x2="510.75" y1="-327.3" y2="-326.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.81" x2="357.9" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="532.89" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="533.46" x2="524.19" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="525.06" x2="534.09" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.72" x2="528.24" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="516.27" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.79" x2="361.14" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.88" x2="502.35" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.65" x2="370.65" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="375.39" x2="468.78" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="465.42" x2="380.16" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="384.9" x2="464.76" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.26" x2="389.67" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.41" x2="472.89" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="478.11" x2="503.04" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="399.18" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="403.92" x2="504.51" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="509.04" x2="411.18" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.44" x2="66.39" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="396.78" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.95" x2="67.56" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.58" x2="389.7" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="384.93" x2="23.4" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="27.42" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.61" x2="23.4" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.57" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="600.33" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="609.12" x2="23.4" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="631.68" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="646.41" x2="669.6" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.63" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-191.34" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="659.43" x2="669.6" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="663.84" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-180.33" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="666.99" x2="669.6" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.27" x2="669.6" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="615.84" x2="84.75" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="95.52" x2="601.26" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-195.57" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.03" x2="102.9" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-192.84" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="107.31" x2="588.09" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-186.21" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="584.37" x2="111.72" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-181.83" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.21" x2="581.13" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-173.79" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.28" x2="116.49" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="118.65" y1="-168.3" y2="-168.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.71" x2="576.81" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="575.34" x2="119.43" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.15" x2="574.17" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="120.84" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.24" x2="574.17" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.23" x2="119.52" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.8" x2="575.7" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="612.78" y1="-201.06" y2="-201.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="632.88" x2="669.6" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="641.67" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="646.41" x2="669.6" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.8" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.41" x2="669.6" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.7" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.06" x2="669.6" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="652.8" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="650.58" x2="669.6" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="647.82" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="643.05" x2="669.6" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="635.88" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="606.12" x2="557.19" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="669.6" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="559.11" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.31" x2="669.6" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="551.94" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.0" x2="477.0" y1="-298.92" y2="-298.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.0" x2="475.5" y1="-298.92" y2="-297.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.74" x2="505.17" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.19" x2="598.95" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="533.49" x2="357.9" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="536.25" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="612.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.97" x2="84.24" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="87.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="94.41" x2="597.84" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="591.87" x2="101.61" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="106.02" x2="586.44" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="583.2" x2="110.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.83" x2="579.96" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="577.74" x2="115.11" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="117.15" y1="-467.07" y2="-467.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.24" x2="576.27" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.8" x2="117.96" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.68" x2="574.17" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="555.27" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="549.9" y1="-481.02" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="536.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.1" y1="-503.82" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.46" y1="-494.31" y2="-492.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.46" x2="537.15" y1="-492.06" y2="-489.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.15" x2="538.17" y1="-489.9" y2="-487.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.17" x2="539.52" y1="-487.89" y2="-486.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.52" x2="541.11" y1="-486.06" y2="-484.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="541.11" x2="542.94" y1="-484.44" y2="-483.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.94" x2="544.98" y1="-483.12" y2="-482.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.98" x2="547.14" y1="-482.07" y2="-481.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.14" x2="549.36" y1="-481.38" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.36" x2="549.9" y1="-481.02" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="523.74" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="528.33" y1="-481.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="532.2" y1="-483.72" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="534.3" y1="-487.62" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="534.3" y1="-492.69" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="532.2" y1="-516.18" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="528.33" y1="-521.25" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="523.23" y1="-525.12" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="517.74" y1="-527.22" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="512.67" y1="-527.22" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="508.8" y1="-525.12" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="506.7" y1="-521.25" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="506.7" y1="-516.18" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="508.8" y1="-492.69" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="512.67" y1="-487.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="517.74" y1="-483.72" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="523.23" y1="-481.62" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.26" x2="119.4" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="119.4" y1="-481.92" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.71" x2="156.63" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="164.37" x2="186.63" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="194.37" x2="214.95" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.98" x2="217.14" y1="-486.57" y2="-485.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="217.14" x2="219.36" y1="-485.88" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.36" x2="219.9" y1="-485.52" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="219.9" y1="-485.52" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="206.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.1" y1="-508.32" y2="-498.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.46" y1="-498.81" y2="-496.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.46" x2="207.15" y1="-496.56" y2="-494.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="207.15" x2="208.17" y1="-494.4" y2="-492.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.17" x2="209.52" y1="-492.39" y2="-490.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.52" x2="211.11" y1="-490.56" y2="-488.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="211.11" x2="212.94" y1="-488.94" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="212.94" x2="214.98" y1="-487.62" y2="-486.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="219.9" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="219.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="506.7" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="234.9" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="506.7" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.23" x2="234.78" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.25" x2="512.19" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.81" x2="541.41" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.63" x2="532.77" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.19" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="534.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="534.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.67" x2="533.76" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="531.18" x2="539.13" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="577.68" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-503.79" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="579.84" x2="564.9" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="583.08" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="586.32" x2="564.81" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.37" x2="591.66" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-516.21" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.63" x2="559.59" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="576.21" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.74" x2="564.33" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.87" x2="574.17" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-525.57" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="667.83" x2="669.6" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="661.02" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="656.61" x2="669.6" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.41" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="639.24" x2="669.6" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="53.97" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="57.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="43.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="42.84" x2="23.4" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="36.87" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="31.44" x2="23.4" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="28.2" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.96" x2="23.4" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="23.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="338.76" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="339.3" x2="23.4" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="26.28" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.68" x2="23.4" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="341.1" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="64.32" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.08" x2="341.1" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="67.8" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="66.84" x2="341.1" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="63.72" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.25" x2="341.1" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="66.24" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="341.1" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="67.71" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.73" x2="341.1" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="59.91" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="341.1" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="65.52" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.59" x2="341.1" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.27" x2="67.8" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="66.33" x2="346.89" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.66" x2="62.49" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="64.05" x2="361.17" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.91" x2="66.99" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="370.68" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="375.42" x2="66.96" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="63.96" x2="380.19" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.4" x2="23.4" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="25.95" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="27.51" x2="23.4" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.67" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.48" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="30.72" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.09" x2="23.4" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.27" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.76" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="27.75" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="72.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.99" x2="149.55" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="147.15" x2="117.27" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.2" x2="146.7" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="112.92" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-510.33" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.61" x2="146.7" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="106.17" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.76" x2="146.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.35" x2="94.71" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-521.34" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="171.45" x2="179.55" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="177.15" x2="173.85" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="174.3" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="174.3" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.35" x2="172.65" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.65" x2="207.75" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.22" x2="204.3" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.1" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="204.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="204.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.85" x2="206.61" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.92" x2="201.45" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="226.05" x2="509.82" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.24" x2="232.08" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.39" x2="506.7" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="234.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="343.41" y1="-401.01" y2="-404.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.41" x2="347.37" y1="-404.04" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="347.37" x2="351.63" y1="-405.66" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.63" x2="355.59" y1="-405.66" y2="-404.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="355.59" x2="358.62" y1="-404.04" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="116.82" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="118.65" y1="-138.57" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.51" x2="283.5" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="112.23" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-125.04" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="107.88" x2="283.5" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="281.37" x2="103.47" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="96.6" x2="279.78" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-106.5" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="25.08" y1="-175.29" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="26.61" x2="23.4" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="29.85" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.09" x2="23.4" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="38.67" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="33.54" y1="-187.71" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="44.64" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="45.3" y1="-197.07" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.04" x2="23.4" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="59.28" y1="-202.56" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="26.04" x2="23.4" y1="-277.38" y2="-277.38" /><circle cx="124.5" cy="-346.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="195.0" cy="-411.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="300.0" cy="-453.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="349.5" cy="-394.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="399.0" cy="-343.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="400.5" cy="-303.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="406.5" cy="-262.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="405.0" cy="-205.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="363.0" cy="-159.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="277.5" cy="-121.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="456.0" cy="-135.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="469.5" cy="-187.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="475.5" cy="-297.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="427.5" cy="-448.92" fill="rgb(183, 115, 51)" r="5.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="349.5" x2="349.5" y1="-394.92" y2="-319.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="349.5" x2="406.5" y1="-319.92" y2="-262.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.09" x2="9.3" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.3" x2="9.39" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.54" x2="9.54" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.54" x2="9.66" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.66" x2="9.66" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.66" x2="9.54" y1="-90.54" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.54" x2="9.54" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.54" x2="9.66" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.66" x2="9.66" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.66" x2="9.54" y1="-90.72" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.39" x2="9.3" y1="-90.93" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.3" x2="9.09" y1="-91.02" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.09" x2="9.0" y1="-91.02" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-90.93" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.09" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.84" x2="10.23" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.38" x2="10.38" y1="-91.02" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.38" x2="10.47" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.47" x2="10.68" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.68" x2="10.77" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.77" x2="10.77" y1="-90.54" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.04" x2="11.34" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.49" x2="11.58" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.58" x2="11.79" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.79" x2="11.88" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.88" x2="11.88" y1="-90.72" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.88" x2="11.49" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.49" x2="11.49" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.49" x2="11.58" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.58" x2="11.79" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.03" x2="12.03" y1="-90.42" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.24" x2="12.33" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.24" x2="12.03" y1="-90.84" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.51" x2="12.6" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.6" x2="12.9" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.81" x2="12.6" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.6" x2="12.51" y1="-90.63" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.51" x2="12.81" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.81" x2="12.9" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="12.9" x2="12.81" y1="-90.54" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="13.05" x2="13.44" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="13.59" x2="13.59" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="13.59" x2="13.71" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="13.71" x2="13.89" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="13.89" x2="14.01" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.01" x2="14.01" y1="-90.72" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.16" x2="14.25" y1="-90.54" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.25" x2="14.55" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.55" x2="14.55" y1="-90.72" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.55" x2="14.25" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.25" x2="14.16" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.25" x2="14.46" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.46" x2="14.55" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.7" x2="14.82" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.82" x2="14.91" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.91" x2="15.0" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.0" x2="15.12" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.12" x2="15.12" y1="-90.72" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.27" x2="15.45" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.36" x2="15.36" y1="-90.42" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.36" x2="15.27" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.36" x2="15.36" y1="-91.02" y2="-91.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.63" x2="15.72" y1="-91.02" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.72" x2="15.72" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="15.63" x2="15.84" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.11" x2="16.2" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.11" x2="16.11" y1="-90.54" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.2" x2="15.99" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.38" x2="16.38" y1="-90.72" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.38" x2="16.47" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.47" x2="16.68" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.68" x2="16.77" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.77" x2="16.77" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.77" x2="16.68" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.68" x2="16.47" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.47" x2="16.38" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.92" x2="17.22" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.22" x2="17.31" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.31" x2="17.31" y1="-90.72" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.46" x2="17.58" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.58" x2="17.58" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.58" x2="17.46" y1="-90.54" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.46" x2="17.46" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.76" x2="17.76" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.06" x2="17.76" y1="-90.84" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="17.76" x2="18.06" y1="-90.63" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.21" x2="18.42" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.3" x2="18.3" y1="-90.42" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.3" x2="18.21" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.3" x2="18.3" y1="-91.02" y2="-91.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.57" x2="18.57" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.57" x2="18.87" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.87" x2="18.99" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.99" x2="18.99" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.99" x2="18.87" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="18.87" x2="18.57" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.14" x2="19.44" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.44" x2="19.53" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.53" x2="19.53" y1="-90.72" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.53" x2="19.44" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.44" x2="19.14" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.14" x2="19.14" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.68" x2="19.77" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.77" x2="19.98" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.98" x2="20.07" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="20.07" x2="20.07" y1="-90.72" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="20.07" x2="19.68" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.68" x2="19.68" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.68" x2="19.77" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="19.77" x2="19.98" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="20.22" x2="20.64" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="20.79" x2="21.09" y1="-91.02" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.09" x2="21.18" y1="-91.02" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.18" x2="21.18" y1="-90.93" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.18" x2="21.09" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.09" x2="20.79" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="20.79" x2="20.79" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.33" x2="21.45" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.45" x2="21.63" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.63" x2="21.75" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.75" x2="21.75" y1="-90.72" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.75" x2="21.33" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.33" x2="21.33" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.33" x2="21.45" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.45" x2="21.63" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.9" x2="22.2" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.2" x2="22.29" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.29" x2="22.2" y1="-90.54" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.2" x2="21.99" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.99" x2="21.9" y1="-90.63" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.9" x2="21.99" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="21.99" x2="22.29" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.44" x2="22.44" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.44" x2="22.74" y1="-90.63" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.89" x2="23.1" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.01" x2="23.01" y1="-90.93" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.01" x2="23.1" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.28" x2="23.37" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.37" x2="23.58" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.58" x2="23.67" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.67" x2="23.67" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.67" x2="23.58" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.58" x2="23.37" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.37" x2="23.28" y1="-90.84" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.28" x2="23.28" y1="-90.72" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="22.74" x2="22.44" y1="-90.42" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.82" x2="24.12" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.12" x2="24.21" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.21" x2="24.21" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.21" x2="24.12" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.12" x2="23.82" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="23.82" x2="23.82" y1="-90.84" y2="-90.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.39" x2="24.78" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.93" x2="24.93" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="24.93" x2="25.23" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.23" x2="25.32" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.32" x2="25.32" y1="-90.54" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.32" x2="25.23" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.23" x2="24.93" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.47" x2="25.68" y1="-90.84" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.59" x2="25.59" y1="-90.93" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.59" x2="25.68" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.95" x2="25.95" y1="-90.42" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="25.95" x2="26.04" y1="-90.93" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.22" x2="26.61" y1="-90.84" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.76" x2="26.88" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.88" x2="26.88" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.88" x2="26.76" y1="-90.54" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.76" x2="26.76" y1="-90.54" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.06" x2="27.36" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.36" x2="27.45" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.45" x2="27.45" y1="-90.54" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.45" x2="27.36" y1="-90.63" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.36" x2="27.06" y1="-90.72" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.36" x2="27.45" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.45" x2="27.45" y1="-90.84" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.45" x2="27.36" y1="-90.93" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.36" x2="27.06" y1="-91.02" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.06" x2="27.06" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.6" x2="27.6" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.6" x2="27.81" y1="-91.02" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.81" x2="27.99" y1="-90.84" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="27.99" x2="27.99" y1="-91.02" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.14" x2="28.14" y1="-90.42" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.14" x2="28.44" y1="-91.02" y2="-91.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.44" x2="28.56" y1="-91.02" y2="-90.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.56" x2="28.56" y1="-90.93" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.56" x2="28.44" y1="-90.72" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="28.44" x2="28.14" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.61" x2="26.22" y1="-90.84" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="26.04" x2="25.86" y1="-90.72" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="16.92" x2="16.92" y1="-90.42" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.91" x2="14.91" y1="-90.72" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="14.7" x2="14.7" y1="-90.42" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.34" x2="11.22" y1="-90.54" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.22" x2="11.04" y1="-90.63" y2="-90.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.04" x2="10.92" y1="-90.63" y2="-90.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.92" x2="11.04" y1="-90.72" y2="-90.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="10.92" x2="11.22" y1="-90.42" y2="-90.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="11.22" x2="11.34" y1="-90.42" y2="-90.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-91.92" y2="-541.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="684.0" y1="-541.92" y2="-541.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="684.0" y1="-541.92" y2="-91.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="9.0" y1="-91.92" y2="-91.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.6" x2="51.66" y1="-153.42" y2="-154.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.84" y1="-154.92" y2="-156.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="52.14" y1="-156.42" y2="-157.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="52.56" y1="-157.89" y2="-159.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="53.07" y1="-159.33" y2="-160.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="53.7" y1="-160.74" y2="-162.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="54.45" y1="-162.09" y2="-163.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="55.29" y1="-163.41" y2="-164.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="56.25" y1="-164.64" y2="-165.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="57.27" y1="-165.81" y2="-166.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="58.38" y1="-166.92" y2="-167.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="59.58" y1="-167.94" y2="-168.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="60.84" y1="-168.84" y2="-169.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="62.16" y1="-169.65" y2="-170.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="63.54" y1="-170.37" y2="-171.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="64.95" y1="-171.0" y2="-171.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="66.39" y1="-171.48" y2="-171.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.89" y1="-171.87" y2="-172.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="69.36" y1="-172.14" y2="-172.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="70.89" y1="-172.29" y2="-172.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.39" y1="-172.32" y2="-172.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="73.86" y1="-172.23" y2="-172.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="75.33" y1="-172.02" y2="-171.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="76.77" y1="-171.69" y2="-171.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="78.15" y1="-171.24" y2="-170.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="79.5" y1="-170.7" y2="-170.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="80.79" y1="-170.04" y2="-169.26" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="82.02" y1="-169.26" y2="-168.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="83.19" y1="-168.39" y2="-167.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="84.27" y1="-167.43" y2="-166.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="85.23" y1="-166.38" y2="-165.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="86.13" y1="-165.24" y2="-164.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.94" y1="-164.04" y2="-162.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="87.63" y1="-162.75" y2="-161.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="88.2" y1="-161.43" y2="-160.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="88.68" y1="-160.05" y2="-158.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="89.04" y1="-158.61" y2="-157.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="89.28" y1="-157.14" y2="-155.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.4" y1="-155.67" y2="-154.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.4" y1="-154.17" y2="-152.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.28" y1="-152.67" y2="-151.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.04" y1="-151.17" y2="-149.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="88.68" y1="-149.7" y2="-148.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="88.2" y1="-148.23" y2="-146.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="87.63" y1="-146.79" y2="-145.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="86.94" y1="-145.41" y2="-144.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="86.13" y1="-144.09" y2="-142.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.23" y1="-142.8" y2="-141.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="84.27" y1="-141.6" y2="-140.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="83.19" y1="-140.46" y2="-139.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="82.02" y1="-139.41" y2="-138.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="80.79" y1="-138.45" y2="-137.58" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="79.5" y1="-137.58" y2="-136.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="78.15" y1="-136.8" y2="-136.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="76.77" y1="-136.14" y2="-135.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="75.33" y1="-135.6" y2="-135.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="73.86" y1="-135.15" y2="-134.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="72.39" y1="-134.82" y2="-134.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="70.89" y1="-134.61" y2="-134.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.36" y1="-134.52" y2="-134.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="67.89" y1="-134.55" y2="-134.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="66.39" y1="-134.7" y2="-134.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.95" y1="-134.97" y2="-135.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="63.54" y1="-135.36" y2="-135.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="62.16" y1="-135.84" y2="-136.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="60.84" y1="-136.47" y2="-137.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="59.58" y1="-137.19" y2="-138.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="58.38" y1="-138.0" y2="-138.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="57.27" y1="-138.9" y2="-139.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="56.25" y1="-139.92" y2="-141.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="55.29" y1="-141.03" y2="-142.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="54.45" y1="-142.2" y2="-143.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="53.7" y1="-143.43" y2="-144.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="53.07" y1="-144.75" y2="-146.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="52.56" y1="-146.1" y2="-147.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="52.14" y1="-147.51" y2="-148.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="51.84" y1="-148.95" y2="-150.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="51.66" y1="-150.42" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.6" y1="-151.92" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.1" x2="50.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="51.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="51.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="52.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="52.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="53.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="54.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="55.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="56.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="58.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="59.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="60.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="62.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="63.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="64.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="66.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="69.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="70.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="73.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="75.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="76.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="78.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="79.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="80.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="81.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="82.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="83.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="84.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="85.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="86.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="87.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="87.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="86.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="86.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="84.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="83.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="82.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="81.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="80.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="79.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="78.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="76.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="75.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="73.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="72.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="70.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="67.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="66.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="63.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="62.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="60.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="59.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="58.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="56.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="55.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="54.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="53.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="52.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="52.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="51.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="51.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="50.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="50.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-381.42" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-382.92" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-384.42" y2="-385.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-385.89" y2="-387.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-387.36" y2="-388.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-388.77" y2="-390.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-390.15" y2="-391.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-391.44" y2="-392.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-392.7" y2="-393.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-393.9" y2="-395.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-395.01" y2="-396.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-396.03" y2="-396.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-396.96" y2="-397.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-397.8" y2="-398.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-398.52" y2="-399.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-399.15" y2="-399.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-399.69" y2="-400.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-400.08" y2="-400.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-400.38" y2="-400.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-400.56" y2="-400.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-400.62" y2="-400.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-400.56" y2="-400.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-400.38" y2="-400.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-400.08" y2="-399.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-399.69" y2="-399.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-399.15" y2="-398.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-398.52" y2="-397.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-397.8" y2="-396.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-396.96" y2="-396.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-396.03" y2="-395.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-395.01" y2="-393.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-393.9" y2="-392.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-392.7" y2="-391.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-391.44" y2="-390.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-390.15" y2="-388.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-388.77" y2="-387.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-387.36" y2="-385.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-385.89" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-384.42" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-382.92" y2="-381.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-381.42" y2="-379.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-379.92" y2="-378.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-378.42" y2="-376.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-376.95" y2="-375.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-375.48" y2="-374.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-374.07" y2="-372.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-372.69" y2="-371.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-371.4" y2="-370.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-370.14" y2="-368.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-368.94" y2="-367.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-367.83" y2="-366.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-366.81" y2="-365.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-365.88" y2="-365.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-365.04" y2="-364.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-364.32" y2="-363.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-363.69" y2="-363.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-363.15" y2="-362.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-362.76" y2="-362.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-362.46" y2="-362.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-362.28" y2="-362.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-362.22" y2="-362.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-362.28" y2="-362.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-362.46" y2="-362.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-362.76" y2="-363.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-363.15" y2="-363.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-363.69" y2="-364.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-364.32" y2="-365.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-365.04" y2="-365.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-365.88" y2="-366.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-366.81" y2="-367.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-367.83" y2="-368.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-368.94" y2="-370.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-370.14" y2="-371.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-371.4" y2="-372.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-372.69" y2="-374.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-374.07" y2="-375.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-375.48" y2="-376.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-376.95" y2="-378.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-378.42" y2="-379.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-379.92" y2="-381.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-261.42" y2="-262.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-262.92" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-264.42" y2="-265.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-265.89" y2="-267.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-267.36" y2="-268.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-268.77" y2="-270.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-270.15" y2="-271.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-271.44" y2="-272.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-272.7" y2="-273.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-273.9" y2="-275.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-275.01" y2="-276.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-276.03" y2="-276.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-276.96" y2="-277.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-277.8" y2="-278.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-278.52" y2="-279.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-279.15" y2="-279.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-279.69" y2="-280.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-280.08" y2="-280.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-280.38" y2="-280.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-280.56" y2="-280.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-280.62" y2="-280.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-280.56" y2="-280.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-280.38" y2="-280.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-280.08" y2="-279.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-279.69" y2="-279.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-279.15" y2="-278.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-278.52" y2="-277.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-277.8" y2="-276.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-276.96" y2="-276.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-276.03" y2="-275.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-275.01" y2="-273.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-273.9" y2="-272.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-272.7" y2="-271.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-271.44" y2="-270.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-270.15" y2="-268.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-268.77" y2="-267.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-267.36" y2="-265.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-265.89" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-264.42" y2="-262.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-262.92" y2="-261.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-261.42" y2="-259.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-259.92" y2="-258.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-258.42" y2="-256.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-256.95" y2="-255.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-255.48" y2="-254.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-254.07" y2="-252.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-252.69" y2="-251.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-251.4" y2="-250.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-250.14" y2="-248.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-248.94" y2="-247.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-247.83" y2="-246.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-246.81" y2="-245.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-245.88" y2="-245.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-245.04" y2="-244.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-244.32" y2="-243.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-243.69" y2="-243.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-243.15" y2="-242.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-242.76" y2="-242.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-242.46" y2="-242.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-242.28" y2="-242.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-242.22" y2="-242.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-242.28" y2="-242.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-242.46" y2="-242.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-242.76" y2="-243.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-243.15" y2="-243.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-243.69" y2="-244.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-244.32" y2="-245.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-245.04" y2="-245.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-245.88" y2="-246.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-246.81" y2="-247.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-247.83" y2="-248.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-248.94" y2="-250.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-250.14" y2="-251.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-251.4" y2="-252.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-252.69" y2="-254.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-254.07" y2="-255.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-255.48" y2="-256.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-256.95" y2="-258.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-258.42" y2="-259.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-259.92" y2="-261.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-151.92" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-153.42" y2="-154.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-154.92" y2="-156.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-156.39" y2="-157.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-157.83" y2="-159.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-159.24" y2="-160.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-160.59" y2="-161.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-161.91" y2="-163.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-163.14" y2="-164.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-164.31" y2="-165.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-165.42" y2="-166.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-166.44" y2="-167.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-167.34" y2="-168.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-168.15" y2="-168.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-168.87" y2="-169.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-169.5" y2="-169.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-169.98" y2="-170.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-170.37" y2="-170.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-170.64" y2="-170.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-170.79" y2="-170.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-170.82" y2="-170.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-170.73" y2="-170.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-170.52" y2="-170.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-170.19" y2="-169.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-169.74" y2="-169.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-169.2" y2="-168.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-168.54" y2="-167.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-167.76" y2="-166.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-166.89" y2="-165.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-165.93" y2="-164.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-164.88" y2="-163.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-163.74" y2="-162.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-162.54" y2="-161.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-161.25" y2="-159.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-159.93" y2="-158.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-158.55" y2="-157.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-157.11" y2="-155.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-155.64" y2="-154.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-154.17" y2="-152.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-152.67" y2="-151.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-151.17" y2="-149.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-149.67" y2="-148.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-148.2" y2="-146.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-146.73" y2="-145.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-145.29" y2="-143.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-143.91" y2="-142.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-142.59" y2="-141.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-141.3" y2="-140.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-140.1" y2="-138.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-138.96" y2="-137.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-137.91" y2="-136.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-136.95" y2="-136.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-136.08" y2="-135.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-135.3" y2="-134.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-134.64" y2="-134.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-134.1" y2="-133.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-133.65" y2="-133.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-133.32" y2="-133.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-133.11" y2="-133.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-133.02" y2="-133.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-133.05" y2="-133.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-133.2" y2="-133.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-133.47" y2="-133.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-133.86" y2="-134.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-134.34" y2="-134.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-134.97" y2="-135.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-135.69" y2="-136.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-136.5" y2="-137.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-137.4" y2="-138.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-138.42" y2="-139.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-139.53" y2="-140.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-140.7" y2="-141.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-141.93" y2="-143.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-143.25" y2="-144.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-144.6" y2="-146.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-146.01" y2="-147.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-147.45" y2="-148.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-148.92" y2="-150.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-150.42" y2="-151.92" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="467.25" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-211.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-210.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-210.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-210.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-209.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-209.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-209.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-286.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-286.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-286.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-287.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-287.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-287.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-287.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-288.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-288.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-288.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-289.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-289.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-289.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-290.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-290.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-290.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-290.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-291.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-291.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-291.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-292.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-292.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-292.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-293.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-293.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-293.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-293.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-294.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-294.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-294.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-295.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-295.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-295.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-296.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-296.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-296.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-296.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-297.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-297.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-297.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-298.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-298.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-298.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-299.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-299.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-299.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-299.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-300.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-300.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-300.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-301.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-301.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-301.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-302.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-302.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-302.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-302.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-316.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-316.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-316.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-317.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-317.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-317.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-317.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-318.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-318.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-318.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-319.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-319.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-319.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-320.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-320.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-320.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-320.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-321.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-321.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-321.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-322.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-322.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-322.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-323.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-323.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-323.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-323.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-324.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-324.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-324.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-325.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-325.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-325.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-326.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-326.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-326.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-326.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-327.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-327.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-327.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-328.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-328.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-328.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-329.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-329.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-329.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-329.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-330.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-330.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-330.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-331.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-331.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-331.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-332.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-332.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-332.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-332.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-333.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-333.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-333.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-334.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-334.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-334.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-335.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-335.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-335.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-335.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-336.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.1" x="320.85" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="392.25" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="420.75" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="420.15" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="419.85" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="419.55" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="419.25" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="418.95" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="418.65" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="418.35" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="418.35" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="418.05" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="417.75" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="417.75" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="417.45" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="417.15" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="417.15" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="416.85" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="464.55" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="464.55" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="449.85" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="449.55" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="449.25" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="448.95" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="448.35" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="448.05" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="447.75" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="447.45" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="447.15" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="446.85" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="446.55" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="445.95" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="445.65" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="445.35" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="445.05" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="444.75" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="444.45" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="444.15" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="443.85" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="443.85" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="443.55" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="443.25" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="442.95" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="442.65" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="442.35" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="442.05" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="441.75" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="441.45" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="441.45" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="441.15" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="440.85" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="440.55" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="440.25" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.95" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.95" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.65" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.35" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.05" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="439.05" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="438.75" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="438.45" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="438.15" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="438.15" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="437.85" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="437.55" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="437.55" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="437.25" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="436.95" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="436.65" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="436.65" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="421.95" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="421.95" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="494.55" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="494.85" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="494.85" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.15" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.15" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.45" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.15" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.45" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.45" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="495.75" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.45" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.45" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.75" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.75" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="547.05" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="547.35" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="547.05" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="547.05" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.75" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="546.75" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="566.85" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="567.45" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="567.45" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="567.75" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="570.45" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="446.55" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="192.45" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="192.75" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="193.05" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="193.35" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="193.95" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="194.25" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="194.55" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="194.85" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="195.45" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="196.35" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="196.95" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="197.85" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="199.35" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="201.75" y="-209.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="192.15" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="191.85" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="191.55" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="191.25" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="191.25" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="190.95" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="190.65" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="190.35" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="190.05" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="189.75" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="189.75" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="189.45" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="189.15" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.85" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.85" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.55" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.25" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.25" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.95" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.65" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.35" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.35" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.05" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.75" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.75" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.45" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.45" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.15" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.85" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.85" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.55" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.25" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.25" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.95" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.95" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.65" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.35" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.35" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.05" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="183.75" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="183.45" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="183.45" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="183.15" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.85" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.85" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.55" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.25" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.95" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.95" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.65" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.35" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.05" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="180.75" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="180.45" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="180.15" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="179.85" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="179.55" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="179.25" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="178.65" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="178.35" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="177.75" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="177.15" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="176.85" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="176.25" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="175.35" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="174.75" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="173.85" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="172.35" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="122.25" y="-286.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="121.95" y="-286.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="121.65" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="121.05" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="120.75" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="120.15" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="119.85" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="119.25" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="118.95" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="118.35" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="118.05" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="117.45" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="117.15" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="116.55" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="116.25" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="115.65" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="114.75" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="113.85" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="112.95" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="112.05" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="111.45" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="111.15" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="110.55" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="109.65" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="108.75" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="107.85" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="106.95" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="106.05" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="100.95" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="122.55" y="-287.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="122.85" y="-287.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="123.15" y="-288.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="123.45" y="-288.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="123.75" y="-289.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.05" y="-289.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.05" y="-290.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.35" y="-290.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.65" y="-290.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.95" y="-291.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="124.95" y="-291.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="125.25" y="-291.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="125.25" y="-292.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="125.55" y="-292.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="125.85" y="-293.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="126.15" y="-293.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="126.15" y="-293.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="126.45" y="-293.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="126.75" y="-294.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="148.65" y="-327.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="148.95" y="-328.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="149.55" y="-329.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="149.85" y="-329.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="150.15" y="-330.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="150.45" y="-330.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="150.45" y="-331.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="150.75" y="-331.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="150.75" y="-331.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.05" y="-332.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.35" y="-332.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.35" y="-332.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.65" y="-332.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.65" y="-333.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="151.95" y="-333.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="152.25" y="-333.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="152.25" y="-334.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="152.55" y="-334.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="152.55" y="-334.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="152.85" y="-335.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="153.15" y="-335.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="153.45" y="-335.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="153.45" y="-336.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="153.75" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="154.05" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="154.35" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="154.35" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="154.65" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="154.95" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="155.25" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="155.25" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="155.55" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="155.85" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="156.15" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="156.15" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="156.45" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="156.75" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.05" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.05" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.35" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.65" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.95" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="157.95" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="158.25" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="158.55" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="158.85" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="158.85" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="159.15" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="159.45" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="159.75" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="160.05" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="160.35" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="160.65" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="160.95" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="160.95" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="161.25" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="161.55" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="161.85" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="161.85" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="162.15" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="162.45" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="162.75" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="162.75" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="163.05" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="163.35" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="163.65" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="163.65" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="163.95" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="164.25" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="164.55" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="164.55" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="164.85" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="165.15" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="165.45" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="165.45" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="165.75" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="166.05" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="166.35" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="166.35" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="166.65" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="166.95" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="167.25" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="167.55" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="167.85" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="168.15" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="168.45" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="168.75" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="169.05" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="169.35" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="169.65" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="169.95" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="170.25" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="170.55" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="170.85" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="171.15" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="171.45" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="171.75" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="172.05" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="172.35" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="172.65" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="172.95" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="173.25" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="173.55" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="173.85" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="174.15" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="174.45" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="174.75" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="175.05" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="175.35" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="175.95" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="176.25" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="176.85" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="177.15" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="177.75" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="178.05" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="178.65" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="178.95" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="179.55" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="179.85" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="180.45" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="180.75" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.35" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="181.65" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.25" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="182.55" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="183.45" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="184.35" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="185.25" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="186.15" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.05" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="187.95" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="188.85" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.8" x="189.75" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="189.45" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="189.15" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="189.15" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="188.85" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="188.55" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="188.25" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="188.25" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.95" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.65" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.35" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.35" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.05" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="186.75" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="186.45" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="186.45" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="186.15" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="185.85" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="185.55" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="185.55" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="185.25" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="184.95" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="184.65" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="184.65" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="184.35" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="184.05" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="183.75" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="183.75" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="183.45" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="183.15" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="182.85" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="182.85" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="182.55" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="182.25" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="181.95" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="181.65" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="181.35" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="181.05" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="180.75" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="180.45" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="180.15" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="179.85" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="179.55" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="179.25" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="178.95" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="178.65" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="178.35" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="178.05" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="177.75" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="177.45" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="177.15" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="176.85" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="176.55" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="176.25" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="175.95" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="175.65" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="175.35" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="175.05" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="174.75" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="174.15" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="173.85" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="173.25" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="172.95" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="172.35" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="172.05" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="171.45" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="171.15" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="170.55" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="170.25" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="169.65" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="169.35" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="168.75" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="168.45" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="167.85" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="167.55" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="166.95" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="166.65" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="165.75" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="164.85" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="163.95" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="163.05" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="162.15" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="161.25" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="160.35" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="160.05" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="159.45" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="159.15" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="158.25" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="157.35" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="156.45" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="155.55" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="154.65" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="153.75" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="152.85" y="-335.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="124.35" y="-290.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="123.45" y="-289.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="123.15" y="-288.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="122.55" y="-287.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="122.25" y="-287.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="121.65" y="-286.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="121.35" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="121.05" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="120.75" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="120.45" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="120.15" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="119.85" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="119.55" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="119.25" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="118.95" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="118.65" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="118.35" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="118.05" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="117.75" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="117.45" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="117.15" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="116.85" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="116.55" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="116.25" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="115.95" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="115.65" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="115.35" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="115.05" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="115.05" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="114.75" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="114.45" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="114.15" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="114.15" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="113.85" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="113.55" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="113.25" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="113.25" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="112.95" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="112.65" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="112.35" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="112.35" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="112.05" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="111.75" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="111.45" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="111.15" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="110.85" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="110.55" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="110.25" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.95" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.95" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.65" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.35" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.05" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="109.05" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="108.75" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="108.45" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="108.15" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="108.15" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="107.85" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="107.55" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="107.25" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="107.25" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="106.95" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="106.65" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="106.35" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="106.35" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="106.05" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="105.75" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="105.45" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="105.45" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="105.15" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="104.85" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="104.85" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="104.55" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="104.55" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="104.25" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.95" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.95" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.65" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.65" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.35" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.05" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="103.05" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="102.75" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="102.75" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="102.45" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="102.15" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="102.15" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="101.85" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="101.85" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="101.55" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="101.25" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="101.25" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="100.95" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="100.65" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="100.35" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="100.35" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="100.05" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="99.75" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="99.75" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="99.45" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="99.45" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="99.15" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="98.85" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="98.85" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="98.55" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="98.55" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="98.25" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.95" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.95" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.65" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.65" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.35" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.05" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="97.05" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="96.75" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="96.75" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="96.45" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="96.15" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="96.15" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="95.85" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="95.85" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="95.55" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="95.25" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="95.25" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.95" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.95" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.65" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.35" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.35" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="94.05" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="93.75" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="93.45" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="93.45" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="93.15" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="92.85" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="92.55" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="92.55" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="92.25" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="91.95" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="91.65" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="91.65" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="91.35" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="91.05" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="90.75" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="90.75" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="90.45" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="90.15" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="90.15" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="89.85" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="89.85" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="89.55" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="89.25" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="89.25" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="88.95" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="88.65" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="88.35" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="88.35" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="88.05" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="87.75" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="87.45" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="87.45" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="87.15" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="86.85" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="86.55" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="86.55" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="86.25" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="85.95" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="85.65" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="85.65" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="85.35" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="85.05" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="84.75" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="84.75" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="84.45" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="84.15" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="83.85" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="83.55" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="83.25" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="82.95" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="82.65" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="82.35" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="82.05" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="81.75" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="81.45" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="81.15" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="80.85" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="80.55" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="80.25" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="79.95" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="79.65" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="79.65" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="79.35" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="79.05" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="78.75" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="78.45" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="78.15" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="77.85" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="77.55" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="77.25" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="76.95" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="76.65" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="76.35" y="-211.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="76.05" y="-210.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="75.75" y="-210.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="75.45" y="-209.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="75.15" y="-209.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="187.65" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="189.15" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.05" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.65" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.55" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.15" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.45" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.05" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.35" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.65" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.95" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.55" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.85" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.15" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.45" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.75" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.75" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.05" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.35" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.65" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.95" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.25" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.25" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.55" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.85" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="198.15" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="198.15" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="198.45" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="198.75" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="198.75" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="199.05" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="199.35" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="199.65" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="199.65" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="199.95" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="200.25" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="200.25" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="200.55" y="-211.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="200.55" y="-210.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="200.85" y="-210.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="201.15" y="-210.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="201.15" y="-209.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="201.45" y="-209.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="391.95" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="446.25" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="446.25" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="570.45" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="572.55" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="568.05" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="567.75" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="566.85" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="567.15" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="464.25" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="464.25" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="449.85" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="449.55" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="448.95" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="448.65" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="448.35" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="448.05" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="447.45" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="447.15" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="446.55" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="446.25" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="445.95" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="445.65" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="445.05" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="444.75" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="444.15" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="443.25" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="442.65" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="442.35" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="441.75" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="440.85" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="440.25" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="439.35" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="438.45" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="436.95" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="421.95" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="495.45" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="495.45" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="495.75" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="495.45" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="495.75" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="496.05" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="496.05" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="545.85" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="545.85" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="546.15" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="546.45" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="546.45" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="546.15" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="546.15" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.25" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.25" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.55" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.55" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="197.85" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.95" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.65" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.65" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.35" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.35" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="196.05" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.75" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.75" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.45" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.45" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="195.15" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.85" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.85" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.55" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.55" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="194.25" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.95" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.95" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.65" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.65" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.35" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.05" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="193.05" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.75" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.75" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.45" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.15" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="192.15" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.85" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.85" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.55" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.25" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="191.25" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.95" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.95" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.65" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.35" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.35" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.05" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="190.05" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.1" x="189.75" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="391.65" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="463.95" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="496.05" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="496.35" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="496.65" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="495.45" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="495.75" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="496.05" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="496.35" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="520.65" y="-210.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.25" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.55" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.55" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.85" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.55" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.25" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="545.25" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="544.95" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="567.15" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="566.85" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="572.85" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="570.45" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="421.95" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="421.95" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="93.75" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="92.85" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="91.95" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="91.05" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="88.65" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="87.75" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="86.85" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="85.95" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="85.05" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="84.15" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="83.55" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="83.25" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="82.65" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="82.35" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="81.75" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="81.45" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="80.85" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="80.55" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="79.95" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="79.05" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="78.45" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="78.15" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="77.55" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="77.25" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="76.65" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="76.35" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="75.75" y="-210.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.4" x="75.45" y="-209.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="9.0" x="524.85" y="-210.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="13.5" x="522.45" y="-210.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="519.15" y="-211.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="498.45" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="498.15" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="498.45" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="461.25" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="461.25" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="421.95" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="539.85" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="388.95" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="370.65" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="357.75" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="357.45" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="357.15" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="356.85" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="356.55" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="356.25" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="355.95" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="355.65" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="355.35" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="355.05" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="354.75" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="354.45" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="352.65" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="352.35" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="352.05" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="351.75" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="351.45" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="351.15" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="341.55" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="444.75" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="444.75" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="444.75" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.1" x="136.05" y="-312.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="146.55" y="-299.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="146.85" y="-299.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="147.15" y="-299.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="147.45" y="-298.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="126.45" y="-328.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="125.55" y="-329.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="125.25" y="-330.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="124.95" y="-330.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="124.65" y="-331.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="124.65" y="-331.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="124.35" y="-331.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="124.05" y="-332.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="123.75" y="-332.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="123.75" y="-332.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="123.45" y="-333.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="123.15" y="-333.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="122.85" y="-334.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="122.55" y="-334.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="122.25" y="-335.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="121.95" y="-335.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="121.35" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="121.05" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="120.45" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="120.15" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="119.55" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="119.25" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="118.65" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="118.35" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="117.75" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="393.75" y="-410.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="439.35" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="438.75" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="457.05" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="457.35" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="457.65" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="457.95" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="458.25" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="458.25" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="458.55" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="458.55" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="458.85" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.15" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.15" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.45" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.45" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.75" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.75" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="459.75" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.05" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.05" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.35" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.35" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.35" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.65" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.65" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.65" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.95" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="460.95" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.25" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.25" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.55" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.55" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.85" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="461.85" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="462.15" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="462.45" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="462.45" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="462.75" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="462.75" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="463.05" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="463.35" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="463.65" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="463.95" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="464.85" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="538.65" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="570.15" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="570.15" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="570.15" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="571.65" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="571.95" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="613.65" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="594.15" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="466.05" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="466.05" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.3" x="391.05" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="421.95" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="421.95" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="458.55" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="458.55" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="499.65" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="499.65" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="517.95" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="536.25" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="386.25" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="369.45" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="573.45" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="134.55" y="-307.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.8" x="134.55" y="-307.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="146.85" y="-299.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="147.15" y="-298.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="147.45" y="-298.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="147.75" y="-297.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="147.75" y="-297.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="148.05" y="-297.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="148.35" y="-296.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="123.15" y="-333.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="122.85" y="-334.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="122.25" y="-335.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="121.95" y="-335.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="121.65" y="-336.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="121.35" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="121.05" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="120.75" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="120.45" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="120.15" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="119.85" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="119.55" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="119.25" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="118.95" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="118.65" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="118.35" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="118.05" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="117.75" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="117.45" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="117.15" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="117.15" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="116.85" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="116.85" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="116.55" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="116.25" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="116.25" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.95" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.95" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.65" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.35" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.35" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.05" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="115.05" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="114.75" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="114.45" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="114.45" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="114.15" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="114.15" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="113.85" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="113.55" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="113.55" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="113.25" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="113.25" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="112.95" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="112.65" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="112.35" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="112.05" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="111.75" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="111.45" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="111.15" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="110.85" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="110.55" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="110.25" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="109.95" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="109.65" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="109.35" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="109.05" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="108.75" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="108.45" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="108.15" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="107.55" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="106.65" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="105.75" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="104.85" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="393.45" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="434.55" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="435.15" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="435.45" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="435.75" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="435.75" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.05" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.35" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.35" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.65" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.65" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.95" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="436.95" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.25" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.25" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.55" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.55" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.55" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.85" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="437.85" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.15" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.15" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.15" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.45" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.45" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.75" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="438.75" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="439.05" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="439.05" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="439.35" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="460.95" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="461.55" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="461.85" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="462.15" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="462.45" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="462.75" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.05" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.05" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.35" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.65" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.65" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.95" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="463.95" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.25" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.25" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.25" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.55" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.55" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="464.85" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="465.75" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="493.35" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="549.75" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="549.75" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="549.75" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="421.95" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="421.95" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="566.55" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="566.55" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="571.95" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="570.15" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.6" x="570.15" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="571.95" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="571.95" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="571.95" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="571.95" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="496.95" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="426.15" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="500.85" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="500.85" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-211.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.0" x="349.35" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="421.95" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="421.95" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="456.75" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="500.25" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="533.85" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="534.15" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="517.05" y="-211.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="384.45" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="368.85" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="442.35" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="133.65" y="-305.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.6" x="133.65" y="-305.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="132.75" y="-304.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="382.65" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="500.25" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="531.75" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="454.95" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="421.95" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.4" x="516.15" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.95" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.05" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.35" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.65" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.95" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.95" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="493.95" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="494.25" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="494.25" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="465.45" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="465.45" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="521.55" y="-286.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="548.55" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="548.85" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="548.85" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.75" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.45" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="549.15" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="548.85" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="421.95" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="421.95" y="-212.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="473.85" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="473.25" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="472.95" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="472.65" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="472.35" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="472.05" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.75" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.75" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.45" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.45" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.15" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="471.15" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.85" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.85" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.55" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.55" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.25" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.25" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="470.25" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="469.95" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="469.95" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="469.65" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="469.65" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="430.35" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="430.95" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="431.25" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="431.55" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="431.55" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="431.85" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.15" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.15" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.45" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.45" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.75" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="432.75" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.05" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.05" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.35" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.35" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.35" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.65" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.65" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.95" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.95" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="433.95" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.25" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.25" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.55" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.55" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.85" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="434.85" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="435.15" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="435.15" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="435.45" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="435.75" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="436.05" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="436.35" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="436.95" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="393.15" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.25" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.55" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.85" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="566.85" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="572.25" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="570.15" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="570.15" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="154.95" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="151.05" y="-291.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="150.45" y="-292.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="150.15" y="-293.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="149.85" y="-293.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="149.55" y="-294.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="149.25" y="-294.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.95" y="-295.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.95" y="-295.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.65" y="-295.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.65" y="-296.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.35" y="-296.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="148.05" y="-296.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="130.05" y="-299.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="130.05" y="-299.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="129.75" y="-299.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="129.45" y="-298.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="129.15" y="-298.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="145.95" y="-322.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="146.25" y="-322.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="112.65" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="112.05" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="111.75" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="111.15" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="110.85" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="110.25" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="109.95" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="109.35" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="109.05" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="108.45" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="108.15" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="107.85" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="107.55" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="107.25" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.95" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.95" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.65" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.35" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.05" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="106.05" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="105.75" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="105.45" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="105.15" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="105.15" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="104.85" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="104.55" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="104.25" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="104.25" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.95" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.95" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.65" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.35" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.35" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.05" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="103.05" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="102.75" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="102.45" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="102.45" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="102.15" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="102.15" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="101.85" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="101.55" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="101.55" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="101.25" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="100.95" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="100.65" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="100.65" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="100.35" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="100.05" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="99.75" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="99.75" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="99.45" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="99.15" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="98.85" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="98.55" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="98.25" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="97.95" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="97.65" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="97.35" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="97.05" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="96.75" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="96.45" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="95.85" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="95.55" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="94.65" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="93.75" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="92.85" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="91.95" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.9" x="91.05" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="131.85" y="-302.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="421.95" y="-232.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="421.95" y="-231.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="453.15" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="453.15" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="515.25" y="-212.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.2" x="440.55" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="439.65" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="451.35" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="451.35" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="421.95" y="-235.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="421.95" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="514.35" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.0" x="130.95" y="-301.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="129.45" y="-299.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="129.15" y="-298.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="128.85" y="-297.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="128.55" y="-297.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="128.55" y="-297.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="128.25" y="-296.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="149.25" y="-294.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="149.85" y="-293.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="150.15" y="-293.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="150.45" y="-292.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="150.75" y="-292.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.05" y="-291.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.35" y="-291.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.35" y="-290.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.65" y="-290.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.65" y="-290.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="151.95" y="-290.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="152.25" y="-289.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="152.25" y="-289.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="152.55" y="-289.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="152.85" y="-288.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="152.85" y="-288.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="153.15" y="-288.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="153.15" y="-287.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="153.45" y="-287.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="153.75" y="-287.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="153.75" y="-287.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="154.05" y="-286.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="154.35" y="-286.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="154.35" y="-286.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="154.65" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="154.95" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="155.25" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="155.25" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="155.55" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="155.85" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="155.85" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="156.15" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="156.15" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="156.45" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="156.75" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="156.75" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.05" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.35" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.35" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.65" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.65" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="157.95" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="158.25" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="158.25" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="158.55" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="158.85" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="159.15" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="159.15" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="159.45" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="159.75" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="160.05" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="160.35" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="160.65" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="160.65" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="160.95" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="161.25" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="161.55" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="161.85" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="162.15" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="162.45" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="162.75" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="163.05" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="163.35" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="163.65" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="163.95" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="164.25" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="164.85" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="165.45" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="165.75" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="166.35" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="167.25" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="167.85" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="168.75" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="145.65" y="-321.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="145.95" y="-322.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="146.25" y="-323.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="146.55" y="-323.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="146.55" y="-323.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="146.85" y="-323.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="146.85" y="-324.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="147.15" y="-324.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="147.45" y="-325.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="147.75" y="-325.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="100.95" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="100.05" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="99.15" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="98.85" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="98.25" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="97.95" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="97.35" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="97.05" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="96.45" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="96.15" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="95.85" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="95.55" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="95.25" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.95" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.95" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.65" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.35" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.05" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="94.05" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="93.75" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="93.45" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="93.15" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="93.15" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="92.85" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="92.55" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="92.25" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="92.25" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="91.95" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="91.65" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="91.35" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="91.35" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="91.05" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="90.75" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="90.45" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="90.45" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="90.15" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="89.85" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="89.55" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="89.55" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="89.25" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="88.95" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="88.65" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="88.65" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="88.35" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="88.05" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="87.75" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="87.75" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="87.45" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="87.15" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="86.85" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="86.85" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="86.55" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="86.25" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="85.95" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="85.65" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="85.35" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="84.75" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="84.45" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="83.85" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="83.55" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="82.95" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="82.65" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="82.05" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="81.75" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="80.85" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="79.95" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="392.85" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="423.15" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="428.85" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="428.85" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.15" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.15" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.15" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.45" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.45" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.75" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.75" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="429.75" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.05" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.05" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.35" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.35" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.65" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.65" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.95" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="430.95" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="431.25" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="431.55" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="431.85" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="432.15" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="432.75" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="470.55" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="470.85" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="471.45" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="471.75" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.05" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.05" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.35" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.65" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.65" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.95" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="472.95" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.25" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.25" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.55" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.55" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.85" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="473.85" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.15" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.15" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.15" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.45" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.45" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.75" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="474.75" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.05" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.05" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.05" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.35" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.35" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.65" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="475.65" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="465.15" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="465.15" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.85" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.55" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.55" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.55" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.65" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.05" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.35" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.35" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.65" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.65" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.65" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="493.95" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.25" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="494.55" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.25" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.25" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.85" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.85" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.85" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="549.15" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="549.15" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="549.15" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.85" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.85" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.55" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.25" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.25" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="548.25" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="547.95" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="547.95" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="547.65" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.55" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.55" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.55" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.55" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.85" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="566.85" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="567.15" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="567.15" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="572.25" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="570.15" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.2" x="421.95" y="-212.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.5" x="513.45" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.5" x="130.35" y="-300.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="128.25" y="-296.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.95" y="-296.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.65" y="-296.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.65" y="-295.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.35" y="-295.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.35" y="-295.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="127.05" y="-294.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="126.75" y="-294.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="125.85" y="-292.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="158.55" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="159.45" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="160.05" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="160.95" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="161.55" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="161.85" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="162.45" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="163.05" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="163.35" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="163.95" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="164.25" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="164.55" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="164.85" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="165.15" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="165.45" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="165.75" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="166.05" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="166.35" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="166.65" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="166.65" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="166.95" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="167.25" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="167.55" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="167.85" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="168.15" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="168.15" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="168.45" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="168.75" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.05" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.05" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.35" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.65" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.65" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.95" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="169.95" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="170.25" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="170.55" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="170.55" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="170.85" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="171.15" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="171.15" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="171.45" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="171.45" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="171.75" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.05" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.05" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.35" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.65" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.95" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="172.95" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="173.25" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="173.55" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="173.55" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="173.85" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="174.15" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="174.45" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="174.45" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="174.75" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="175.05" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="175.35" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="175.65" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="175.95" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="175.95" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="176.25" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="176.55" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="176.85" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="177.15" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="177.45" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="177.75" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="178.05" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="178.35" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="178.65" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="178.95" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="179.25" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="179.55" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="180.15" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="180.75" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="181.05" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="181.65" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="182.55" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="184.05" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="147.15" y="-324.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="147.45" y="-325.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="147.75" y="-326.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.05" y="-326.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.05" y="-326.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.35" y="-326.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.35" y="-327.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.65" y="-327.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="148.95" y="-328.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="149.25" y="-328.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="149.55" y="-329.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="149.85" y="-329.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="150.15" y="-330.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="89.85" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="88.95" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="88.05" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="87.15" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="86.25" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="85.95" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="85.35" y="-395.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="85.05" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="84.75" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="84.45" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="84.15" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="83.85" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="83.55" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="83.25" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="82.95" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="82.65" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="82.35" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="82.05" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="81.75" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="81.45" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="81.15" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="81.15" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="80.85" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="80.55" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="80.25" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="80.25" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="79.95" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="79.65" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="79.35" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="79.35" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="79.05" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="78.75" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="78.75" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="78.45" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="78.45" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="78.15" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="77.85" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="77.85" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="77.55" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="77.55" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="77.25" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="76.95" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="76.95" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="76.65" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="76.65" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="392.55" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.35" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.35" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.35" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.05" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.05" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.75" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.75" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.45" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.45" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.15" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="420.15" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="419.85" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="419.55" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="419.55" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="419.25" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="418.95" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="418.95" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="418.65" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="418.35" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="418.05" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="417.75" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="417.45" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="417.15" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.65" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.65" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.95" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.95" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.95" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.25" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.25" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.55" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.55" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.55" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.85" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="422.85" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="423.15" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="423.15" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="423.45" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="423.45" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="474.45" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="475.35" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="464.85" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="495.45" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="495.15" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="495.15" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.85" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.85" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.55" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.25" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.25" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.55" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.55" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="494.85" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="495.15" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.35" y="-234.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.65" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.65" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.65" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.95" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.95" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.95" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.95" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.65" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.65" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.35" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.35" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="547.05" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="566.85" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="566.85" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="566.55" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="566.55" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="567.15" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="567.45" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="572.55" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="570.15" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="570.45" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="446.55" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="446.55" y="-410.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.95" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="16.5" x="421.95" y="-212.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="33.0" x="512.85" y="-213.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="34.2" x="512.25" y="-213.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="35.4" x="511.65" y="-213.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="36.6" x="511.05" y="-214.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="37.8" x="510.45" y="-214.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="39.0" x="509.85" y="-214.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="39.6" x="509.55" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="496.35" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="496.05" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="496.35" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="496.65" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="496.95" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="463.65" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="463.65" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="421.95" y="-215.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.65" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.95" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.65" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.35" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.35" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="544.05" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="567.15" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="568.05" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="568.35" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="445.95" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="445.95" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="391.35" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="363.75" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="363.75" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="363.45" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="363.45" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="363.15" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="362.85" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="362.85" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="362.55" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="362.25" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="361.95" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="17.7" x="361.65" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="40.8" x="368.25" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="40.8" x="368.25" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="40.8" x="508.95" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="496.65" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="496.35" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="496.95" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="463.35" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="421.95" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="421.95" y="-215.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="544.05" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="544.35" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="544.65" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="543.75" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="543.45" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="567.45" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="573.15" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="570.45" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="570.75" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="445.95" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="391.05" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="362.25" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="361.65" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="361.35" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="361.05" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="361.05" y="-366.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="360.75" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="360.45" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="360.45" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="360.15" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="359.85" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="359.55" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="359.55" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="359.25" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="358.95" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.0" x="358.35" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.0" x="367.05" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.0" x="508.35" y="-215.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.6" x="508.05" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.6" x="366.45" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="390.75" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="359.85" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="358.95" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="358.65" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="358.35" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="358.05" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="357.75" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="357.75" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="357.45" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="357.15" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="357.15" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="356.85" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="356.55" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="356.25" y="-359.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="355.95" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="355.65" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="355.05" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="445.65" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="445.65" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="568.35" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="568.65" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="567.45" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="542.85" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="543.15" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="543.75" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="543.45" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="496.95" y="-229.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="496.65" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="496.95" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="497.25" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="497.55" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="463.05" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="463.05" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="421.95" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="421.95" y="-215.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.3" x="136.95" y="-311.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.8" x="365.25" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.8" x="507.45" y="-216.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.8" x="585.15" y="-336.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.4" x="507.15" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.4" x="364.65" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="390.45" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="356.55" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="355.95" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="355.65" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="355.35" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="355.05" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="354.75" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="354.45" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="354.45" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="354.15" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="353.85" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="353.85" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="353.55" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="353.25" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="352.65" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="351.75" y="-352.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="462.75" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="462.75" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="497.55" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="497.85" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="496.95" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="497.25" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="543.15" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="421.95" y="-216.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="567.45" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="570.75" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.6" x="136.65" y="-310.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="45.0" x="364.05" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="45.0" x="506.85" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="497.55" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="497.25" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="542.25" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="542.55" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="542.85" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="542.25" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="541.95" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="520.05" y="-286.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="462.45" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="421.95" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="421.95" y="-216.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="349.35" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="349.95" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="350.25" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="350.55" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="350.85" y="-350.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="351.15" y="-351.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="351.15" y="-351.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="351.45" y="-351.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="351.75" y="-352.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="352.05" y="-352.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="352.05" y="-353.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="352.35" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="352.65" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="352.95" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="353.25" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="390.15" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="445.35" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="445.35" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="573.45" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="136.65" y="-311.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="136.65" y="-311.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="18.9" x="136.35" y="-310.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="46.2" x="506.25" y="-217.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="46.8" x="505.95" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="497.85" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="497.55" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="541.65" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="541.95" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="541.65" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="541.35" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="498.15" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="497.85" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="462.15" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="462.15" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="421.95" y="-217.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="346.05" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="346.65" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="346.95" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="347.25" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="347.55" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="347.85" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="347.85" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="348.15" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="348.15" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="348.45" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="348.75" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="348.75" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="349.05" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="349.35" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="349.65" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="349.95" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="350.55" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="389.85" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="370.05" y="-383.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="369.75" y="-383.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="369.45" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="369.15" y="-383.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="368.85" y="-384.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="445.35" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="568.65" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="567.45" y="-350.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.2" x="136.35" y="-310.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="47.4" x="505.65" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="47.4" x="581.55" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="570.75" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="568.95" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="567.75" y="-350.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="498.15" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="461.85" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="461.85" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="497.85" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="498.15" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="421.95" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="421.95" y="-217.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="343.35" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="343.65" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="343.95" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="344.25" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="344.55" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="344.85" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="345.15" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="345.45" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="345.45" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="345.75" y="-343.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="346.05" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="346.35" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="346.65" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="347.25" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="389.55" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="370.95" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="370.65" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="370.35" y="-382.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="370.05" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="368.55" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="368.25" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="367.95" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="367.65" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="367.35" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="367.05" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="366.75" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="366.45" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="366.15" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="365.85" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="365.55" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="365.25" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="445.05" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="445.05" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="136.35" y="-312.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.5" x="136.35" y="-311.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.0" x="505.35" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.0" x="505.35" y="-218.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.0" x="580.95" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.2" x="579.75" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.2" x="579.75" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.2" x="504.75" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.2" x="504.75" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="540.75" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="541.05" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="540.75" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="540.45" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="498.45" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="461.55" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="421.95" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="421.95" y="-218.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="341.55" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="341.85" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="342.15" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="342.15" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="342.45" y="-338.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="342.75" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="342.75" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="343.05" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="343.35" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="343.95" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="344.25" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="344.85" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="389.25" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="364.95" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="364.65" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="364.35" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="364.05" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="363.75" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="363.45" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="363.15" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="362.85" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="362.55" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="362.25" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="361.95" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="361.65" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="361.35" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="361.35" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="361.05" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="360.75" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="360.45" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="360.15" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="359.85" y="-393.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="359.55" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="359.25" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="358.95" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="358.65" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="358.35" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="358.05" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="136.05" y="-309.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="19.8" x="136.05" y="-309.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.8" x="504.45" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.8" x="504.45" y="-218.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.8" x="579.15" y="-338.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.8" x="579.15" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.4" x="578.55" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.4" x="578.55" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.4" x="504.15" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.4" x="504.15" y="-218.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.0" x="503.85" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.0" x="503.85" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.0" x="577.95" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.0" x="577.95" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="571.05" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="567.75" y="-350.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="539.55" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="498.75" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="460.95" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="460.95" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="421.95" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="421.95" y="-219.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="539.85" y="-226.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="540.15" y="-226.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="388.65" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="370.65" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="354.15" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="353.85" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="353.55" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="353.25" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="352.95" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="352.65" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="350.85" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="350.55" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="350.25" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="349.95" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="349.65" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="349.35" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="349.05" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="348.75" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="348.45" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="348.15" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="347.85" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="347.55" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="347.25" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="343.95" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.4" x="135.75" y="-309.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.6" x="503.55" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.6" x="503.55" y="-219.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.6" x="577.35" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="576.75" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="576.75" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="503.25" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="503.25" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="428.55" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.2" x="428.55" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="444.45" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="444.45" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="388.35" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="346.95" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="346.65" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="346.35" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="346.05" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="345.75" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="345.45" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="345.15" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="344.85" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="344.55" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="344.25" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="343.95" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="343.65" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="343.35" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="343.05" y="-410.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="460.65" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="499.05" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="538.95" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="498.45" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="421.95" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="421.95" y="-219.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="568.95" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="135.75" y="-313.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="20.7" x="135.75" y="-312.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="353.55" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="502.95" y="-220.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="502.95" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="576.15" y="-339.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="576.15" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="576.15" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-381.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-381.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="501.15" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.8" x="428.25" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="427.95" y="-364.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="427.95" y="-363.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="502.65" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="502.65" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="575.55" y="-340.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="575.55" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="575.55" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.4" x="575.55" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="568.05" y="-349.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="460.35" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="460.35" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="498.75" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="538.95" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="539.25" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="421.95" y="-220.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="388.05" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="370.35" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="135.45" y="-308.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.0" x="135.45" y="-308.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="427.65" y="-363.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="502.35" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="502.35" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="574.95" y="-340.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="574.95" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="574.95" y="-379.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.0" x="574.95" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="444.15" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="444.15" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="444.15" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="387.75" y="-364.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="370.05" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="460.05" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="499.05" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="518.85" y="-286.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="538.35" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="538.35" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="499.05" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="421.95" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="421.95" y="-220.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="135.45" y="-313.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.3" x="135.45" y="-313.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="427.35" y="-362.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="427.35" y="-362.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="502.05" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="502.05" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="502.05" y="-221.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="574.35" y="-341.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="574.35" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="574.35" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.6" x="574.35" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="459.75" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="459.75" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="499.35" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="537.75" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="421.95" y="-221.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="387.45" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="387.45" y="-365.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="370.05" y="-380.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="135.15" y="-308.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.6" x="135.15" y="-308.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="427.05" y="-361.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="501.75" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="501.75" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="573.75" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="573.75" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.2" x="573.75" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="443.85" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="443.85" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="387.15" y="-365.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="459.45" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="459.45" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="499.65" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="499.05" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="537.75" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="421.95" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="421.95" y="-221.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="21.9" x="135.15" y="-314.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="426.75" y="-360.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="501.45" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="501.45" y="-221.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="573.15" y="-341.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="573.15" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="573.15" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.8" x="573.15" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="572.55" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="572.55" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="572.55" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="572.55" y="-342.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="501.15" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="501.15" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.4" x="426.45" y="-360.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="386.85" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="369.75" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="459.15" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="421.95" y="-222.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="421.95" y="-222.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="499.35" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="537.15" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="536.85" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="569.25" y="-368.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.2" x="134.85" y="-307.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="425.85" y="-358.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="500.55" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="500.55" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="571.35" y="-343.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="571.35" y="-344.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="571.35" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="571.35" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.6" x="571.35" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="568.05" y="-349.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="458.85" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="458.85" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="421.95" y="-222.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="386.55" y="-366.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="443.55" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="443.55" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="443.55" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="134.85" y="-314.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="22.5" x="134.85" y="-314.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.2" x="425.55" y="-357.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.2" x="570.75" y="-370.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.2" x="570.75" y="-344.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.2" x="500.25" y="-223.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="532.65" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="516.75" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="455.55" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="455.55" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="421.95" y="-228.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="421.95" y="-227.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="383.25" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="441.75" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.8" x="133.05" y="-304.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="133.35" y="-305.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="133.35" y="-317.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="383.55" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="442.05" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="442.05" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="455.85" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="421.95" y="-227.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.5" x="500.25" y="-223.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="499.95" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="457.05" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="457.05" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="421.95" y="-225.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="421.95" y="-225.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="384.75" y="-368.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="368.85" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="442.65" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="442.65" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="133.95" y="-316.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.3" x="133.95" y="-315.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="134.55" y="-314.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="369.45" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="385.95" y="-366.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="443.25" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="443.25" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="458.25" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="421.95" y="-223.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.1" x="535.95" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="535.05" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="499.95" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="457.65" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="421.95" y="-224.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="421.95" y="-224.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="535.35" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="385.35" y="-367.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="369.15" y="-379.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="442.95" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="442.95" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="442.95" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="134.25" y="-315.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.7" x="134.25" y="-306.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="134.25" y="-306.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="134.25" y="-315.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="385.65" y="-367.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="457.95" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="457.95" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="421.95" y="-224.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="421.95" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="499.65" y="-224.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="23.4" x="571.05" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="517.65" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="457.35" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="457.35" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="421.95" y="-225.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="385.05" y="-367.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.0" x="133.95" y="-306.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="133.65" y="-316.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="384.15" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="442.35" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="442.35" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="456.45" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="456.45" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="24.9" x="421.95" y="-226.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="421.95" y="-227.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="421.95" y="-227.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="456.15" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="456.15" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="383.85" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="569.55" y="-368.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="133.35" y="-316.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="25.2" x="133.35" y="-305.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="133.05" y="-317.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="133.05" y="-317.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="382.95" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="441.75" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="441.75" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="455.25" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="455.25" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="421.95" y="-228.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.1" x="421.95" y="-228.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="421.95" y="-229.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="421.95" y="-229.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="454.65" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="454.65" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="382.35" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="441.45" y="-397.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="441.45" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="132.75" y="-317.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="26.7" x="132.75" y="-304.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="132.45" y="-303.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="132.45" y="-318.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="382.05" y="-370.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="441.15" y="-397.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="454.35" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.0" x="421.95" y="-230.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="421.95" y="-230.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="421.95" y="-230.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="454.05" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="454.05" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="381.75" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="441.15" y="-396.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="441.15" y="-397.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="132.45" y="-318.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.3" x="132.45" y="-303.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="132.15" y="-303.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="421.95" y="-231.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="421.95" y="-230.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="453.75" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="453.75" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.6" x="515.85" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="453.45" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="421.95" y="-231.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="568.35" y="-349.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="440.85" y="-396.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="440.85" y="-396.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="132.15" y="-319.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="27.9" x="132.15" y="-318.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="131.85" y="-319.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="131.85" y="-302.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="421.95" y="-232.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="421.95" y="-232.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="452.85" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="452.85" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="440.55" y="-395.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.5" x="440.55" y="-395.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.8" x="440.25" y="-395.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.8" x="452.55" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.8" x="421.95" y="-233.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.8" x="131.55" y="-302.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="28.8" x="131.55" y="-319.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="131.55" y="-320.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="421.95" y="-233.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="421.95" y="-233.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="452.25" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="452.25" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.1" x="440.25" y="-394.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.4" x="439.95" y="-394.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.4" x="514.95" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.4" x="451.95" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.4" x="421.95" y="-233.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.4" x="131.25" y="-302.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="131.25" y="-301.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="131.25" y="-320.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="131.25" y="-320.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="421.95" y="-234.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="421.95" y="-234.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="451.65" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="451.65" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="439.95" y="-393.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="29.7" x="439.95" y="-394.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.3" x="439.65" y="-393.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.3" x="451.05" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.3" x="421.95" y="-235.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.3" x="130.95" y="-301.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.3" x="130.95" y="-320.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="130.65" y="-321.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="130.65" y="-300.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="421.95" y="-236.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="421.95" y="-235.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="450.75" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="450.75" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.6" x="439.35" y="-392.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.9" x="514.05" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.9" x="450.45" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.9" x="450.45" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.9" x="421.95" y="-236.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="30.9" x="130.65" y="-321.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.2" x="130.35" y="-300.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.2" x="421.95" y="-236.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.2" x="421.95" y="-236.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="31.2" x="450.15" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-259.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-259.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-258.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-258.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-258.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-257.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-257.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-257.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-257.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-256.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-256.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-256.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-255.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-255.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-255.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-254.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-254.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-254.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-254.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-253.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-253.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-253.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-252.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-252.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-252.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-251.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-251.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-251.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-251.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-250.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-250.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-250.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-249.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-249.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-249.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-248.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-248.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-248.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-248.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-247.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-247.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-247.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-246.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-246.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-246.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-245.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-245.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-245.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-245.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-244.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-244.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-244.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-243.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-243.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-243.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-242.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-242.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-242.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-242.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-241.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-241.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-241.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-240.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-240.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-240.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-239.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-239.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-239.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-239.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-238.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-238.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-238.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-237.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-237.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-237.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-259.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-260.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-260.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-260.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-260.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-261.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-261.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-261.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-262.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-262.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-262.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-263.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-263.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-263.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-263.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-264.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-264.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-264.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-265.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-265.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-265.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-266.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-266.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-266.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-266.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-267.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-267.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-267.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-268.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-268.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-268.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-269.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-269.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-269.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-269.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-270.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-270.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-270.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-271.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-271.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-271.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-272.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-272.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-272.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-272.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-273.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.4" x="421.95" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="424.65" y="-356.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="569.25" y="-347.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.7" x="571.95" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="501.75" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="573.45" y="-341.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="498.45" y="-410.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="573.45" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="426.75" y="-361.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="426.75" y="-361.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-285.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-285.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-284.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-284.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-279.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-278.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-278.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-278.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-278.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-277.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-277.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-277.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-276.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-276.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-276.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-275.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-275.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-275.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-275.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-274.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-274.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-274.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-273.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="55.5" x="350.85" y="-273.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.6" x="505.05" y="-279.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="47.1" x="505.95" y="-279.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="47.1" x="581.85" y="-337.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="46.5" x="506.25" y="-280.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="46.5" x="582.45" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="45.6" x="583.35" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="45.6" x="583.35" y="-337.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="45.6" x="506.55" y="-280.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.7" x="507.15" y="-280.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.7" x="364.35" y="-371.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.7" x="364.35" y="-371.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.7" x="584.25" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.1" x="507.45" y="-281.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.1" x="364.95" y="-372.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="44.1" x="364.95" y="-372.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.9" x="366.15" y="-374.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.9" x="366.15" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.9" x="508.05" y="-281.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.3" x="508.35" y="-281.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.3" x="366.75" y="-375.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="42.3" x="366.75" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.4" x="367.65" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.4" x="367.65" y="-377.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.4" x="508.95" y="-281.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="40.5" x="509.25" y="-282.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="40.5" x="368.55" y="-378.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="39.3" x="509.85" y="-282.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="38.4" x="510.45" y="-282.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="37.5" x="510.75" y="-283.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="36.3" x="511.35" y="-283.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="35.1" x="511.95" y="-283.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="33.6" x="512.85" y="-284.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="32.4" x="513.45" y="-284.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="466.35" y="-285.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="459.45" y="-381.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="459.15" y="-382.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="458.85" y="-382.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="458.55" y="-383.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="458.25" y="-384.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.95" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.95" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.65" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.35" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.35" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.05" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="457.05" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.75" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.75" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.75" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.45" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.45" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.15" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.15" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="456.15" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.85" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.85" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.85" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.55" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.55" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.25" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="455.25" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.15" y="-392.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.15" y="-392.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.15" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.15" y="-391.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.15" y="-391.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="570.75" y="-386.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="571.05" y="-386.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="571.35" y="-385.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="571.35" y="-385.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="571.65" y="-384.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="129.75" y="-322.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="128.85" y="-324.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="128.55" y="-324.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="128.25" y="-325.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="128.25" y="-325.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.95" y="-325.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.65" y="-326.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.35" y="-326.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.35" y="-326.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.05" y="-327.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="127.05" y="-327.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="126.75" y="-327.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="126.45" y="-328.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="126.15" y="-328.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="126.15" y="-329.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="125.85" y="-329.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="125.55" y="-329.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="125.25" y="-330.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="15.0" x="124.35" y="-332.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="11.1" x="523.95" y="-287.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="2.1" x="528.45" y="-287.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-303.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-303.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-303.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-304.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-304.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-304.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-305.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-305.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-305.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-305.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-306.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-306.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-306.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-307.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-307.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-307.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-308.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-308.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-308.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-308.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-309.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-309.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-309.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-310.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-310.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-310.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-311.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-311.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-311.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-311.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-312.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-312.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-312.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-313.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-313.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-313.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-314.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-314.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-314.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-314.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-315.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-315.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="88.5" x="246.45" y="-315.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="130.35" y="-321.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="130.35" y="-322.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="130.05" y="-322.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="129.75" y="-323.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="129.45" y="-323.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="129.45" y="-323.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="129.15" y="-323.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="128.85" y="-324.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="127.95" y="-326.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="455.55" y="-392.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-391.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-390.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-390.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-390.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-389.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-389.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-389.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.15" y="-389.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.45" y="-388.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.45" y="-388.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.45" y="-388.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.45" y="-387.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.45" y="-387.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.75" y="-387.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="570.75" y="-386.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="571.05" y="-386.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="14.7" x="571.35" y="-385.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="38.7" x="590.25" y="-336.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.3" x="580.65" y="-337.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.7" x="578.25" y="-338.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.7" x="578.25" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.3" x="577.65" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.3" x="577.65" y="-377.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.3" x="577.65" y="-338.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.9" x="577.05" y="-339.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.9" x="577.05" y="-374.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.9" x="577.05" y="-377.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="51.9" x="428.55" y="-365.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.5" x="428.25" y="-365.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.5" x="576.45" y="-374.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.5" x="576.45" y="-378.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.5" x="576.45" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="52.5" x="576.45" y="-339.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.3" x="574.65" y="-340.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.3" x="574.65" y="-380.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.3" x="574.65" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.3" x="427.35" y="-362.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="427.05" y="-362.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-373.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-380.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-380.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="54.9" x="574.05" y="-341.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.1" x="572.85" y="-342.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.1" x="572.85" y="-372.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.1" x="572.85" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.1" x="426.45" y="-360.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.7" x="426.15" y="-359.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.7" x="426.15" y="-359.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.7" x="572.25" y="-342.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.7" x="572.25" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="56.7" x="572.25" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="571.65" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="571.65" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="571.65" y="-371.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="571.65" y="-371.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="571.65" y="-343.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.3" x="425.85" y="-359.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.9" x="425.55" y="-358.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.9" x="425.55" y="-358.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.9" x="571.05" y="-370.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.9" x="571.05" y="-344.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="57.9" x="571.05" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.5" x="570.45" y="-369.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.5" x="570.45" y="-345.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.5" x="570.45" y="-344.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.5" x="425.25" y="-357.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.8" x="425.25" y="-357.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.8" x="570.15" y="-345.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="58.8" x="570.15" y="-369.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.1" x="569.85" y="-369.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.1" x="569.85" y="-346.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.1" x="569.85" y="-345.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.1" x="424.95" y="-356.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.1" x="424.95" y="-356.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.4" x="424.95" y="-356.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.4" x="569.55" y="-346.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.4" x="569.55" y="-346.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="59.4" x="569.55" y="-368.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.0" x="568.95" y="-347.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.0" x="568.95" y="-347.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.0" x="424.65" y="-355.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.3" x="424.35" y="-355.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.3" x="424.35" y="-355.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.3" x="568.65" y="-348.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.3" x="568.65" y="-347.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.6" x="568.35" y="-348.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.6" x="568.35" y="-348.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.6" x="424.35" y="-354.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="61.8" x="423.75" y="-353.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="61.5" x="423.75" y="-353.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="61.5" x="423.75" y="-353.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.9" x="424.05" y="-354.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="60.9" x="424.05" y="-354.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.7" x="427.65" y="-363.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.7" x="575.25" y="-379.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.7" x="575.25" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.1" x="575.85" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.1" x="575.85" y="-378.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="53.1" x="427.95" y="-364.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.5" x="365.55" y="-373.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.5" x="365.55" y="-373.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.2" x="365.85" y="-374.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="43.2" x="585.75" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.1" x="578.85" y="-376.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="50.1" x="578.85" y="-375.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.5" x="579.45" y="-375.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="49.5" x="579.45" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.9" x="580.05" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="48.9" x="580.05" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.7" x="367.35" y="-376.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.7" x="367.35" y="-376.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.1" x="367.95" y="-377.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="41.1" x="587.85" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-410.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-410.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-410.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-409.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-409.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-409.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-408.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-408.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-408.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-407.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-407.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-407.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-407.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-406.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-406.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-406.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-405.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-405.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-405.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-404.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-404.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-404.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-404.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-403.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-403.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-403.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-402.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-402.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-402.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-401.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-401.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-401.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-401.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-400.77" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-400.47" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-400.17" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-399.87" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-399.57" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-399.27" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-398.97" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-398.67" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-398.37" /><rect fill="rgb(255, 255, 255)" height="0.3" width="94.2" x="240.75" y="-398.07" /><rect fill="rgb(255, 255, 255)" height="0.3" width="37.2" x="591.75" y="-410.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.12" x1="686.07" x2="686.07" y1="-413.67" y2="-229.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-91.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="684.0" y1="-541.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="684.0" y1="-541.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="9.0" y1="-91.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.6" x2="51.66" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.84" y1="-154.92" y2="-156.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="52.14" y1="-156.42" y2="-157.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="52.56" y1="-157.89" y2="-159.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="53.07" y1="-159.33" y2="-160.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="53.7" y1="-160.74" y2="-162.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="54.45" y1="-162.09" y2="-163.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="55.29" y1="-163.41" y2="-164.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="56.25" y1="-164.64" y2="-165.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="57.27" y1="-165.81" y2="-166.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="58.38" y1="-166.92" y2="-167.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="59.58" y1="-167.94" y2="-168.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="60.84" y1="-168.84" y2="-169.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="62.16" y1="-169.65" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="63.54" y1="-170.37" y2="-171.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="64.95" y1="-171.0" y2="-171.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="66.39" y1="-171.48" y2="-171.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.89" y1="-171.87" y2="-172.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="69.36" y1="-172.14" y2="-172.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="70.89" y1="-172.29" y2="-172.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.39" y1="-172.32" y2="-172.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="73.86" y1="-172.23" y2="-172.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="75.33" y1="-172.02" y2="-171.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="76.77" y1="-171.69" y2="-171.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="78.15" y1="-171.24" y2="-170.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="79.5" y1="-170.7" y2="-170.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="80.79" y1="-170.04" y2="-169.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="82.02" y1="-169.26" y2="-168.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="83.19" y1="-168.39" y2="-167.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="84.27" y1="-167.43" y2="-166.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="85.23" y1="-166.38" y2="-165.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="86.13" y1="-165.24" y2="-164.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.94" y1="-164.04" y2="-162.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="87.63" y1="-162.75" y2="-161.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="88.2" y1="-161.43" y2="-160.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="88.68" y1="-160.05" y2="-158.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="89.04" y1="-158.61" y2="-157.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="89.28" y1="-157.14" y2="-155.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.4" y1="-155.67" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.4" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.28" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.04" y1="-151.17" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="88.68" y1="-149.7" y2="-148.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="88.2" y1="-148.23" y2="-146.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="87.63" y1="-146.79" y2="-145.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="86.94" y1="-145.41" y2="-144.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="86.13" y1="-144.09" y2="-142.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.23" y1="-142.8" y2="-141.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="84.27" y1="-141.6" y2="-140.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="83.19" y1="-140.46" y2="-139.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="82.02" y1="-139.41" y2="-138.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="80.79" y1="-138.45" y2="-137.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="79.5" y1="-137.58" y2="-136.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="78.15" y1="-136.8" y2="-136.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="76.77" y1="-136.14" y2="-135.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="75.33" y1="-135.6" y2="-135.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="73.86" y1="-135.15" y2="-134.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="72.39" y1="-134.82" y2="-134.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="70.89" y1="-134.61" y2="-134.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.36" y1="-134.52" y2="-134.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="67.89" y1="-134.55" y2="-134.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="66.39" y1="-134.7" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.95" y1="-134.97" y2="-135.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="63.54" y1="-135.36" y2="-135.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="62.16" y1="-135.84" y2="-136.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="60.84" y1="-136.47" y2="-137.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="59.58" y1="-137.19" y2="-138.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="58.38" y1="-138.0" y2="-138.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="57.27" y1="-138.9" y2="-139.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="56.25" y1="-139.92" y2="-141.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="55.29" y1="-141.03" y2="-142.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="54.45" y1="-142.2" y2="-143.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="53.7" y1="-143.43" y2="-144.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="53.07" y1="-144.75" y2="-146.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="52.56" y1="-146.1" y2="-147.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="52.14" y1="-147.51" y2="-148.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="51.84" y1="-148.95" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="51.66" y1="-150.42" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.6" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.1" x2="50.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="51.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="51.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="52.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="52.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="53.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="54.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="55.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="56.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="58.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="59.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="60.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="62.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="63.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="64.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="66.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="69.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="70.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="73.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="75.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="76.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="78.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="79.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="80.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="81.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="82.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="83.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="84.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="85.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="86.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="87.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="87.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="86.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="86.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="84.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="83.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="82.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="81.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="80.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="79.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="78.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="76.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="75.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="73.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="72.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="70.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="67.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="66.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="63.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="62.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="60.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="59.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="58.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="56.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="55.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="54.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="53.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="52.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="52.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="51.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="51.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="50.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="50.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-381.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-382.92" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-384.42" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-385.89" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-387.36" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-388.77" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-390.15" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-391.44" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-392.7" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-393.9" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-395.01" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-396.03" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-396.96" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-397.8" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-398.52" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-399.15" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-399.69" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-400.08" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-400.38" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-400.56" y2="-400.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-400.62" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-400.56" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-400.38" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-400.08" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-399.69" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-399.15" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-398.52" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-397.8" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-396.96" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-396.03" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-395.01" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-393.9" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-392.7" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-391.44" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-390.15" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-388.77" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-387.36" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-385.89" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-384.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-382.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-381.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-379.92" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-378.42" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-376.95" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-375.48" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-374.07" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-372.69" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-371.4" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-370.14" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-368.94" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-367.83" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-366.81" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-365.88" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-365.04" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-364.32" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-363.69" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-363.15" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-362.76" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-362.46" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-362.28" y2="-362.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-362.22" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-362.28" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-362.46" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-362.76" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-363.15" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-363.69" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-364.32" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-365.04" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-365.88" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-366.81" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-367.83" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-368.94" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-370.14" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-371.4" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-372.69" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-374.07" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-375.48" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-376.95" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-378.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-379.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-261.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-262.92" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-264.42" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-265.89" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-267.36" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-268.77" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-270.15" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-271.44" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-272.7" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-273.9" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-275.01" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-276.03" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-276.96" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-277.8" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-278.52" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-279.15" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-279.69" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-280.08" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-280.38" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-280.56" y2="-280.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-280.62" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-280.56" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-280.38" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-280.08" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-279.69" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-279.15" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-278.52" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-277.8" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-276.96" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-276.03" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-275.01" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-273.9" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-272.7" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-271.44" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-270.15" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-268.77" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-267.36" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-265.89" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-264.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-262.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-261.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-259.92" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-258.42" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-256.95" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-255.48" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-254.07" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-252.69" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-251.4" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-250.14" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-248.94" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-247.83" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-246.81" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-245.88" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-245.04" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-244.32" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-243.69" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-243.15" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-242.76" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-242.46" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-242.28" y2="-242.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-242.22" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-242.28" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-242.46" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-242.76" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-243.15" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-243.69" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-244.32" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-245.04" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-245.88" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-246.81" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-247.83" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-248.94" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-250.14" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-251.4" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-252.69" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-254.07" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-255.48" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-256.95" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-258.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-259.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-154.92" y2="-156.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-156.39" y2="-157.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-157.83" y2="-159.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-159.24" y2="-160.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-160.59" y2="-161.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-161.91" y2="-163.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-163.14" y2="-164.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-164.31" y2="-165.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-165.42" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-166.44" y2="-167.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-167.34" y2="-168.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-168.15" y2="-168.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-168.87" y2="-169.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-169.5" y2="-169.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-169.98" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-170.37" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-170.64" y2="-170.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-170.79" y2="-170.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-170.82" y2="-170.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-170.73" y2="-170.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-170.52" y2="-170.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-170.19" y2="-169.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-169.74" y2="-169.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-169.2" y2="-168.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-168.54" y2="-167.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-167.76" y2="-166.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-166.89" y2="-165.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-165.93" y2="-164.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-164.88" y2="-163.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-163.74" y2="-162.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-162.54" y2="-161.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-161.25" y2="-159.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-159.93" y2="-158.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-158.55" y2="-157.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-157.11" y2="-155.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-155.64" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-151.17" y2="-149.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-149.67" y2="-148.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-148.2" y2="-146.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-146.73" y2="-145.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-145.29" y2="-143.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-143.91" y2="-142.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-142.59" y2="-141.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-141.3" y2="-140.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-140.1" y2="-138.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-138.96" y2="-137.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-137.91" y2="-136.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-136.95" y2="-136.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-136.08" y2="-135.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-135.3" y2="-134.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-134.64" y2="-134.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-134.1" y2="-133.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-133.65" y2="-133.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-133.32" y2="-133.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-133.11" y2="-133.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-133.02" y2="-133.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-133.05" y2="-133.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-133.2" y2="-133.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-133.47" y2="-133.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-133.86" y2="-134.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-134.34" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-134.97" y2="-135.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-135.69" y2="-136.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-136.5" y2="-137.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-137.4" y2="-138.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-138.42" y2="-139.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-139.53" y2="-140.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-140.7" y2="-141.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-141.93" y2="-143.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-143.25" y2="-144.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-144.6" y2="-146.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-146.01" y2="-147.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-147.45" y2="-148.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-148.92" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-150.42" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="584.85" x2="578.94" y1="-120.3" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="578.94" x2="573.03" y1="-114.39" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="573.03" x2="573.03" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="565.5" x2="559.62" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="562.56" x2="562.56" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="565.5" x2="559.62" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="552.63" x2="543.75" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="543.75" x2="540.81" y1="-120.3" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="540.81" x2="540.81" y1="-117.33" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="540.81" x2="543.75" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="543.75" x2="552.63" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="552.63" x2="552.63" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="533.28" x2="527.37" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="530.34" x2="530.34" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="533.28" x2="527.37" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="501.06" x2="489.24" y1="-111.45" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="462.39" x2="462.39" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="462.39" x2="453.54" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="453.54" x2="450.57" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="450.57" x2="450.57" y1="-105.54" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="450.57" x2="453.54" y1="-117.33" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="453.54" x2="462.39" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="443.04" x2="443.04" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="431.25" x2="431.25" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="431.25" x2="437.13" y1="-120.3" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="437.13" x2="443.04" y1="-114.39" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="423.72" x2="411.9" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="423.72" x2="411.9" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="385.05" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="376.17" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="373.23" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="373.23" y1="-105.54" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="376.17" y1="-108.48" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="385.05" y1="-111.45" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="385.05" x2="376.17" y1="-120.3" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="376.17" x2="373.23" y1="-120.3" y2="-117.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="373.23" y1="-117.33" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="373.23" x2="376.17" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="365.7" x2="365.7" y1="-114.39" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="365.7" x2="359.79" y1="-108.48" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="359.79" x2="356.85" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="349.59" x2="346.65" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="346.65" x2="346.65" y1="-114.39" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="349.59" x2="343.68" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="336.69" x2="336.69" y1="-105.54" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="336.69" x2="333.75" y1="-111.45" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="333.75" x2="324.9" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="324.9" x2="324.9" y1="-120.3" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="324.9" x2="333.75" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="333.75" x2="336.69" y1="-102.57" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="346.65" x2="346.65" y1="-120.3" y2="-123.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="317.37" x2="317.37" y1="-111.45" y2="-105.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="317.37" x2="314.4" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="314.4" x2="305.55" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="305.55" y1="-99.63" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="314.4" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="314.4" x2="317.37" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="305.55" x2="308.49" y1="-99.63" y2="-96.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="308.49" x2="311.46" y1="-96.66" y2="-96.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="298.02" y1="-105.54" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="295.08" y1="-111.45" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="295.08" x2="289.17" y1="-114.39" y2="-114.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="289.17" x2="286.23" y1="-114.39" y2="-111.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="286.23" x2="286.23" y1="-111.45" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="286.23" x2="298.02" y1="-108.48" y2="-108.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="298.02" x2="295.08" y1="-105.54" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="295.08" x2="289.17" y1="-102.57" y2="-102.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="3.3" x1="584.85" x2="584.85" y1="-102.57" y2="-120.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.12" x1="686.07" x2="686.07" y1="-229.17" y2="-413.67" /><circle cx="546.0" cy="-358.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-343.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-313.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-298.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-328.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-283.92" fill="rgb(183, 115, 51)" r="8.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="520.5" x2="520.5" y1="-495.42" y2="-513.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="550.5" x2="550.5" y1="-513.42" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="220.5" x2="220.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="190.5" x2="190.5" y1="-517.92" y2="-499.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="160.5" x2="160.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-376.92" y2="-376.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-346.92" y2="-346.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-316.92" y2="-316.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-286.92" y2="-286.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-256.92" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.93" x2="23.4" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="595.59" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-240.81" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-234.54" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-230.13" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-227.82" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-227.82" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-230.13" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-234.54" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-240.81" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-248.46" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-257.01" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-265.86" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-274.41" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-282.06" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-288.33" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-292.74" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-295.02" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-295.02" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-292.74" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-288.33" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-282.06" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-274.41" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-265.86" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-257.01" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-248.46" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="592.2" x2="59.07" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-243.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-245.22" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-249.12" y2="-254.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-254.19" y2="-259.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-259.68" y2="-264.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-264.75" y2="-268.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-268.62" y2="-270.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-270.72" y2="-270.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-270.72" y2="-268.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-268.62" y2="-264.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-264.75" y2="-262.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-262.56" y2="-281.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-281.28" y2="-279.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-279.12" y2="-275.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-275.22" y2="-273.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-273.12" y2="-273.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-273.12" y2="-275.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-275.22" y2="-279.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-279.12" y2="-284.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-284.19" y2="-289.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-289.68" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-294.75" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-298.62" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-300.72" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-298.62" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-294.75" y2="-292.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-292.56" y2="-311.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-311.28" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-309.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-305.22" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-303.12" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-303.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-305.22" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-309.12" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-314.19" y2="-319.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-319.68" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-324.75" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-328.62" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-330.72" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-330.72" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-328.62" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-324.75" y2="-322.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-322.56" y2="-341.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-341.28" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-339.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-335.22" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-333.12" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-333.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-335.22" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-339.12" y2="-344.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-344.19" y2="-349.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-349.68" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-354.75" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-358.62" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-360.72" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-360.72" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-358.62" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-354.75" y2="-352.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-352.56" y2="-371.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-371.28" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-369.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-365.22" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-363.12" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-363.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-365.22" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-369.12" y2="-374.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-374.19" y2="-379.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-379.68" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-384.75" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-388.62" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-390.72" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-388.62" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-384.75" y2="-382.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-382.56" y2="-460.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.58" y1="-460.68" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="32.04" y1="-460.05" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="43.8" y1="-447.66" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="57.78" y1="-438.27" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="72.78" y1="-432.78" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="87.42" y1="-431.67" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="100.41" y1="-435.0" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="110.64" y1="-442.53" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="117.15" y1="-453.54" y2="-467.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="119.4" y1="-467.07" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="117.15" y1="-481.92" y2="-496.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="110.64" y1="-496.8" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="100.41" y1="-510.33" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="89.7" y1="-521.34" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="89.7" x2="150.57" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.57" x2="148.8" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="146.7" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="146.7" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="148.8" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="152.67" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="152.67" x2="157.74" y1="-488.22" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.74" x2="163.23" y1="-486.12" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="163.23" x2="168.33" y1="-486.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="168.33" x2="172.2" y1="-488.22" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.2" x2="174.3" y1="-492.12" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="174.3" y1="-497.19" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="172.2" y1="-520.68" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.2" x2="170.43" y1="-525.75" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.43" x2="180.57" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.57" x2="178.8" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.8" x2="176.7" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="176.7" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="178.8" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.8" x2="182.67" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="182.67" x2="187.74" y1="-488.22" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.74" x2="193.23" y1="-486.12" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="193.23" x2="198.33" y1="-486.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="198.33" x2="202.2" y1="-488.22" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="204.3" y1="-492.12" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="204.3" y1="-497.19" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="202.2" y1="-520.68" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="200.43" y1="-525.75" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="200.43" x2="209.73" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.73" x2="209.52" y1="-527.52" y2="-527.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.52" x2="208.17" y1="-527.31" y2="-525.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.17" x2="207.15" y1="-525.48" y2="-523.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="207.15" x2="206.46" y1="-523.47" y2="-521.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.46" x2="206.1" y1="-521.31" y2="-519.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.1" y1="-519.06" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="219.9" y1="-509.52" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="219.9" y1="-509.52" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.1" y1="-508.32" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.64" y1="-485.52" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.64" x2="223.86" y1="-485.52" y2="-485.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="223.86" x2="226.02" y1="-485.88" y2="-486.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="226.02" x2="228.06" y1="-486.57" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="228.06" x2="229.89" y1="-487.62" y2="-488.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="229.89" x2="231.48" y1="-488.94" y2="-490.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.48" x2="232.83" y1="-490.56" y2="-492.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.83" x2="233.85" y1="-492.39" y2="-494.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.85" x2="234.54" y1="-494.4" y2="-496.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.54" x2="234.9" y1="-496.56" y2="-498.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.9" y1="-498.81" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="221.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="221.1" y1="-508.32" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="234.9" y1="-509.52" y2="-509.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.9" y1="-509.52" y2="-519.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="234.54" y1="-519.06" y2="-521.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.54" x2="233.85" y1="-521.31" y2="-523.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.85" x2="232.83" y1="-523.47" y2="-525.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.83" x2="231.48" y1="-525.48" y2="-527.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.48" x2="231.27" y1="-527.31" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="231.27" x2="547.47" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.47" x2="547.14" y1="-527.52" y2="-527.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.14" x2="544.98" y1="-527.49" y2="-526.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.98" x2="542.94" y1="-526.77" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.94" x2="541.11" y1="-525.75" y2="-524.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="541.11" x2="539.52" y1="-524.4" y2="-522.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.52" x2="538.17" y1="-522.81" y2="-520.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.17" x2="537.15" y1="-520.98" y2="-518.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.15" x2="536.46" y1="-518.97" y2="-516.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.46" x2="536.1" y1="-516.81" y2="-514.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.1" y1="-514.56" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="549.9" y1="-505.02" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="549.9" y1="-505.02" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.1" y1="-503.82" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.64" y1="-481.02" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.64" x2="553.86" y1="-481.02" y2="-481.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.86" x2="556.02" y1="-481.38" y2="-482.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.02" x2="558.06" y1="-482.07" y2="-483.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.06" x2="559.89" y1="-483.12" y2="-484.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.89" x2="561.48" y1="-484.44" y2="-486.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.48" x2="562.83" y1="-486.06" y2="-487.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.83" x2="563.85" y1="-487.89" y2="-489.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.85" x2="564.54" y1="-489.9" y2="-492.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.54" x2="564.9" y1="-492.06" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.9" y1="-494.31" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="551.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="551.1" y1="-503.82" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="564.9" y1="-505.02" y2="-505.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.9" y1="-505.02" y2="-514.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="564.54" y1="-514.56" y2="-516.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.54" x2="563.85" y1="-516.81" y2="-518.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.85" x2="562.83" y1="-518.97" y2="-520.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.83" x2="561.48" y1="-520.98" y2="-522.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.48" x2="559.89" y1="-522.81" y2="-524.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.89" x2="558.06" y1="-524.4" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.06" x2="556.02" y1="-525.75" y2="-526.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.02" x2="553.86" y1="-526.77" y2="-527.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.86" x2="553.53" y1="-527.49" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.53" x2="603.78" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="603.78" x2="598.8" y1="-527.52" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-525.57" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-516.21" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-503.79" y2="-489.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-489.45" y2="-474.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="578.58" y1="-474.42" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="587.04" y1="-460.05" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="598.8" y1="-447.66" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="612.78" y1="-438.27" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="627.78" y1="-432.78" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="642.42" y1="-431.67" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="655.41" y1="-435.0" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="665.64" y1="-442.53" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="669.6" y1="-453.54" y2="-461.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="669.6" y1="-461.76" y2="-172.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.64" y1="-172.11" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="655.41" y1="-180.33" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="642.42" y1="-191.34" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-198.84" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="627.78" y1="-198.84" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-202.2" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="612.78" y1="-202.2" y2="-201.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="598.8" y1="-201.06" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-195.57" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-186.21" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-173.79" y2="-159.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-159.45" y2="-144.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="576.93" y1="-144.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="576.93" x2="283.5" y1="-135.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="283.5" y1="-135.42" y2="-117.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="279.78" y1="-117.84" y2="-114.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.78" x2="279.78" y1="-114.12" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.78" x2="88.11" y1="-106.32" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.11" x2="88.92" y1="-106.32" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="101.91" y1="-106.5" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-114.03" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="112.14" y1="-114.03" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="118.65" y1="-125.04" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="120.9" y1="-138.57" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.9" x2="118.65" y1="-153.42" y2="-168.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="112.14" y1="-168.3" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="101.91" y1="-181.83" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="88.92" y1="-192.84" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-200.34" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="74.28" y1="-200.34" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="74.28" y1="-203.7" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="59.28" y1="-203.7" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="45.3" y1="-202.56" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="33.54" y1="-197.07" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="25.08" y1="-187.71" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="23.4" y1="-175.29" y2="-169.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-169.8" y2="-251.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-251.28" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-249.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-245.22" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-243.12" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.43" x2="589.59" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.3" x2="412.05" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.59" x2="415.62" y1="-253.83" y2="-256.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.62" x2="417.24" y1="-256.83" y2="-260.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="417.24" y1="-260.79" y2="-265.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="415.62" y1="-265.08" y2="-269.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.62" x2="412.59" y1="-269.01" y2="-272.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.59" x2="408.63" y1="-272.04" y2="-273.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.63" x2="407.64" y1="-273.66" y2="-273.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="407.64" x2="357.9" y1="-273.66" y2="-323.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="357.9" y1="-323.4" y2="-388.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="358.62" y1="-388.14" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="360.24" y1="-388.83" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="360.24" y1="-392.79" y2="-397.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="358.62" y1="-397.08" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="593.49" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-402.06" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-394.41" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-385.86" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-377.01" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-368.46" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-360.81" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-354.54" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-350.13" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-347.82" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-347.82" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-350.13" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-354.54" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-360.81" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-368.46" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-377.01" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-385.86" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-394.41" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-402.06" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-408.33" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-412.74" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-415.02" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-415.02" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-412.74" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-408.33" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.81" x2="23.4" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="340.38" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="338.76" y1="-401.01" y2="-397.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="338.76" y1="-397.08" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="340.38" y1="-392.79" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="341.1" y1="-388.83" y2="-388.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="341.1" y1="-388.14" y2="-318.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="342.39" y1="-318.27" y2="-315.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.39" x2="395.76" y1="-315.18" y2="-261.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.76" x2="395.76" y1="-261.78" y2="-260.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.76" x2="397.38" y1="-260.79" y2="-256.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.38" x2="400.41" y1="-256.83" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.41" x2="404.37" y1="-253.83" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="404.37" x2="408.63" y1="-252.18" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.63" x2="412.59" y1="-252.18" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.22" x2="587.4" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="417.24" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.07" x2="587.94" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.2" x2="522.96" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="527.13" y1="-272.82" y2="-276.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="529.11" y1="-276.51" y2="-281.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="529.11" y1="-281.31" y2="-286.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="527.13" y1="-286.53" y2="-291.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="526.74" y1="-291.36" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="526.74" x2="534.78" y1="-291.72" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.78" x2="534.87" y1="-291.72" y2="-291.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-291.51" y2="-287.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-287.82" y2="-285.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-285.81" y2="-285.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-285.81" y2="-287.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-287.82" y2="-291.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-291.51" y2="-296.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-296.31" y2="-301.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-301.53" y2="-306.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-306.36" y2="-310.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-310.05" y2="-312.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-312.03" y2="-312.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-312.03" y2="-310.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-310.05" y2="-306.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="534.78" y1="-306.36" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.78" x2="527.28" y1="-306.12" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.28" x2="527.73" y1="-306.12" y2="-306.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.73" x2="528.72" y1="-306.75" y2="-308.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.72" x2="529.38" y1="-308.67" y2="-310.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.38" x2="529.71" y1="-310.71" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.71" y1="-312.84" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="516.27" y1="-313.68" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="516.27" y1="-313.68" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="529.71" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.71" y1="-314.19" y2="-315.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.71" x2="529.38" y1="-315.0" y2="-317.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.38" x2="528.72" y1="-317.13" y2="-319.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.72" x2="527.73" y1="-319.2" y2="-321.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.73" x2="526.47" y1="-321.12" y2="-322.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="526.47" x2="524.94" y1="-322.86" y2="-324.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="524.94" x2="523.2" y1="-324.39" y2="-325.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.2" x2="521.25" y1="-325.65" y2="-326.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="521.25" x2="519.21" y1="-326.64" y2="-327.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="519.21" x2="517.08" y1="-327.3" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.08" x2="516.27" y1="-327.63" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="516.27" y1="-327.63" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="515.73" y1="-314.19" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="502.29" y1="-313.68" y2="-313.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.29" y1="-313.68" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.62" y1="-312.84" y2="-310.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.62" x2="503.28" y1="-310.71" y2="-308.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.28" x2="504.27" y1="-308.67" y2="-306.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.27" x2="504.72" y1="-306.75" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.72" x2="481.98" y1="-306.12" y2="-306.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.98" x2="481.59" y1="-306.12" y2="-306.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.59" x2="477.63" y1="-306.54" y2="-308.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.63" x2="473.37" y1="-308.16" y2="-308.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="473.37" x2="469.41" y1="-308.16" y2="-306.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.41" x2="466.38" y1="-306.54" y2="-303.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.38" x2="464.76" y1="-303.51" y2="-299.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.76" x2="464.76" y1="-299.58" y2="-295.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.76" x2="466.38" y1="-295.29" y2="-291.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.38" x2="469.41" y1="-291.33" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.41" x2="473.37" y1="-288.33" y2="-286.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="473.37" x2="477.63" y1="-286.68" y2="-286.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.63" x2="481.59" y1="-286.68" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="481.59" x2="484.62" y1="-288.33" y2="-291.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.62" x2="484.77" y1="-291.33" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.77" x2="505.26" y1="-291.72" y2="-291.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.26" x2="504.87" y1="-291.72" y2="-291.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-291.36" y2="-286.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-286.53" y2="-281.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-281.31" y2="-276.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-276.51" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-272.82" y2="-270.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-270.81" y2="-270.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="523.44" y1="-270.81" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.49" x2="591.42" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.18" x2="529.11" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.96" x2="540.81" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.81" x2="526.83" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.35" x2="540.06" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-315.81" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-315.81" y2="-317.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-317.82" y2="-321.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-321.51" y2="-326.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-326.31" y2="-331.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-331.53" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-336.36" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-340.05" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-342.03" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-342.03" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-340.05" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="532.89" y1="-336.36" y2="-331.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="532.89" y1="-331.53" y2="-326.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="534.87" y1="-326.31" y2="-321.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-321.51" y2="-317.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-317.82" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.22" x2="528.21" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.65" x2="669.6" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="555.78" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.54" x2="669.6" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="559.11" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.91" x2="669.6" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="554.28" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-347.82" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-345.81" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-345.81" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-347.82" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="532.89" y1="-351.51" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="532.89" y1="-356.31" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="534.87" y1="-361.53" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-366.36" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-370.05" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-372.03" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-372.03" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-370.05" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-366.36" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-361.53" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-356.31" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-351.51" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="554.31" x2="613.32" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="602.25" x2="557.94" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="596.7" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="592.86" x2="558.51" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="555.75" x2="590.13" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.6" x2="357.9" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="587.4" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="357.9" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="587.64" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="588.9" x2="359.7" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="590.76" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="604.17" x2="23.4" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-415.26" y2="-415.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="637.83" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="644.19" x2="669.6" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="648.51" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.24" x2="669.6" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.1" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.36" x2="669.6" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.4" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.87" x2="669.6" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.14" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="645.3" x2="669.6" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="639.75" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="628.68" x2="669.6" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="529.11" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="529.11" y1="-346.53" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="527.13" y1="-341.31" y2="-336.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="523.44" y1="-336.51" y2="-332.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="518.61" y1="-332.82" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="513.39" y1="-330.81" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="508.56" y1="-330.81" y2="-332.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="504.87" y1="-332.82" y2="-336.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-336.51" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-341.31" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-346.53" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-351.36" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-355.05" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-357.03" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="523.44" y1="-357.03" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="527.13" y1="-355.05" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="529.11" y1="-351.36" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.21" x2="537.69" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.06" x2="525.03" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="357.9" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="506.97" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.79" x2="357.9" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="502.89" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.76" x2="357.9" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="506.94" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.75" x2="508.8" y1="-326.64" y2="-325.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="507.06" y1="-325.65" y2="-324.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.06" x2="505.53" y1="-324.39" y2="-322.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.53" x2="504.27" y1="-322.86" y2="-321.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.27" x2="503.28" y1="-321.12" y2="-319.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.28" x2="502.62" y1="-319.2" y2="-317.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.62" x2="502.29" y1="-317.13" y2="-315.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="502.29" y1="-315.0" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.29" x2="515.73" y1="-314.19" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="515.73" y1="-314.19" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="514.92" y1="-327.63" y2="-327.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="514.92" x2="512.79" y1="-327.63" y2="-327.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.79" x2="510.75" y1="-327.3" y2="-326.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.81" x2="357.9" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="532.89" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="533.46" x2="524.19" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="525.06" x2="534.09" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.72" x2="528.24" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="515.73" x2="516.27" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.27" x2="515.73" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.79" x2="361.14" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.88" x2="502.35" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.65" x2="370.65" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="375.39" x2="468.78" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="465.42" x2="380.16" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="384.9" x2="464.76" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.26" x2="389.67" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.41" x2="472.89" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="478.11" x2="503.04" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="399.18" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="403.92" x2="504.51" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="509.04" x2="411.18" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.44" x2="66.39" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="396.78" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.95" x2="67.56" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.58" x2="389.7" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="384.93" x2="23.4" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="27.42" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.61" x2="23.4" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.57" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="600.33" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="609.12" x2="23.4" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="631.68" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="646.41" x2="669.6" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.63" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-191.34" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="659.43" x2="669.6" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="663.84" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-180.33" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="666.99" x2="669.6" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.27" x2="669.6" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="615.84" x2="84.75" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="95.52" x2="601.26" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-195.57" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.03" x2="102.9" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-192.84" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="107.31" x2="588.09" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-186.21" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="584.37" x2="111.72" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-181.83" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.21" x2="581.13" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-173.79" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.28" x2="116.49" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="118.65" y1="-168.3" y2="-168.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.71" x2="576.81" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="575.34" x2="119.43" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.15" x2="574.17" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="120.84" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.24" x2="574.17" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.23" x2="119.52" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.8" x2="575.7" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="612.78" y1="-201.06" y2="-201.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="632.88" x2="669.6" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="641.67" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="646.41" x2="669.6" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.8" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.41" x2="669.6" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.7" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.06" x2="669.6" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="652.8" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="650.58" x2="669.6" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="647.82" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="643.05" x2="669.6" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="635.88" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="606.12" x2="557.19" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="669.6" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="559.11" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.31" x2="669.6" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="551.94" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.0" x2="477.0" y1="-298.92" y2="-298.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="477.0" x2="475.5" y1="-298.92" y2="-297.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="484.74" x2="505.17" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.19" x2="598.95" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="533.49" x2="357.9" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="357.9" x2="536.25" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="612.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.97" x2="84.24" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="87.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="94.41" x2="597.84" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="591.87" x2="101.61" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="106.02" x2="586.44" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="583.2" x2="110.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.83" x2="579.96" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="577.74" x2="115.11" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="117.15" y1="-467.07" y2="-467.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.24" x2="576.27" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.8" x2="117.96" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.68" x2="574.17" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="555.27" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="549.9" y1="-481.02" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="536.1" y1="-503.82" y2="-503.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.1" y1="-503.82" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="536.46" y1="-494.31" y2="-492.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.46" x2="537.15" y1="-492.06" y2="-489.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.15" x2="538.17" y1="-489.9" y2="-487.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.17" x2="539.52" y1="-487.89" y2="-486.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.52" x2="541.11" y1="-486.06" y2="-484.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="541.11" x2="542.94" y1="-484.44" y2="-483.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.94" x2="544.98" y1="-483.12" y2="-482.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.98" x2="547.14" y1="-482.07" y2="-481.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.14" x2="549.36" y1="-481.38" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.36" x2="549.9" y1="-481.02" y2="-481.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="523.74" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="528.33" y1="-481.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="532.2" y1="-483.72" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="534.3" y1="-487.62" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="534.3" y1="-492.69" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="532.2" y1="-516.18" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="528.33" y1="-521.25" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="523.23" y1="-525.12" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="517.74" y1="-527.22" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="512.67" y1="-527.22" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="508.8" y1="-525.12" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="506.7" y1="-521.25" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="506.7" y1="-516.18" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="508.8" y1="-492.69" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="512.67" y1="-487.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="517.74" y1="-483.72" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="523.23" y1="-481.62" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.26" x2="119.4" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="119.4" y1="-481.92" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.71" x2="156.63" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="164.37" x2="186.63" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="194.37" x2="214.95" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.98" x2="217.14" y1="-486.57" y2="-485.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="217.14" x2="219.36" y1="-485.88" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.36" x2="219.9" y1="-485.52" y2="-485.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="219.9" y1="-485.52" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="206.1" y1="-508.32" y2="-508.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.1" y1="-508.32" y2="-498.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="206.46" y1="-498.81" y2="-496.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.46" x2="207.15" y1="-496.56" y2="-494.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="207.15" x2="208.17" y1="-494.4" y2="-492.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.17" x2="209.52" y1="-492.39" y2="-490.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="209.52" x2="211.11" y1="-490.56" y2="-488.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="211.11" x2="212.94" y1="-488.94" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="212.94" x2="214.98" y1="-487.62" y2="-486.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="219.9" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="221.1" x2="219.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="219.9" x2="221.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="506.7" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="234.9" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.9" x2="506.7" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.23" x2="234.78" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.25" x2="512.19" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.81" x2="541.41" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.63" x2="532.77" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.19" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="534.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.1" x2="534.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.67" x2="533.76" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="531.18" x2="539.13" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.9" x2="551.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.1" x2="549.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="577.68" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-503.79" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="579.84" x2="564.9" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="583.08" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="586.32" x2="564.81" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="563.37" x2="591.66" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-516.21" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.63" x2="559.59" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.9" x2="576.21" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.74" x2="564.33" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.87" x2="574.17" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-525.57" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="667.83" x2="669.6" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="661.02" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="656.61" x2="669.6" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.41" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="639.24" x2="669.6" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="53.97" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="57.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="43.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="42.84" x2="23.4" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="36.87" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="31.44" x2="23.4" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="28.2" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.96" x2="23.4" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="23.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="669.6" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="23.4" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="338.76" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="339.3" x2="23.4" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="26.28" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.68" x2="23.4" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="341.1" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="64.32" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.08" x2="341.1" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="67.8" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="66.84" x2="341.1" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="63.72" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.25" x2="341.1" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="66.24" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="341.1" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="67.71" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.73" x2="341.1" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="59.91" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="341.1" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.1" x2="65.52" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.59" x2="341.1" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.27" x2="67.8" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="66.33" x2="346.89" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.66" x2="62.49" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="64.05" x2="361.17" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.91" x2="66.99" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="370.68" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="375.42" x2="66.96" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="63.96" x2="380.19" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.4" x2="23.4" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="25.95" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="27.51" x2="23.4" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.67" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.48" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="30.72" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.09" x2="23.4" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.27" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.76" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="27.75" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="72.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.99" x2="149.55" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="147.15" x2="117.27" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.2" x2="146.7" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="112.92" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-510.33" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.61" x2="146.7" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="106.17" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.76" x2="146.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.35" x2="94.71" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-521.34" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="171.45" x2="179.55" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="177.15" x2="173.85" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="174.3" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="176.7" x2="174.3" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.3" x2="176.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="178.35" x2="172.65" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.65" x2="207.75" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.22" x2="204.3" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.1" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="204.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.1" x2="204.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.85" x2="206.61" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.92" x2="201.45" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="226.05" x2="509.82" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.24" x2="232.08" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.39" x2="506.7" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="234.9" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="343.41" y1="-401.01" y2="-404.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.41" x2="347.37" y1="-404.04" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="347.37" x2="351.63" y1="-405.66" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.63" x2="355.59" y1="-405.66" y2="-404.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="355.59" x2="358.62" y1="-404.04" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="116.82" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="118.65" y1="-138.57" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.51" x2="283.5" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="112.23" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-125.04" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="107.88" x2="283.5" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="281.37" x2="103.47" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="96.6" x2="279.78" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-106.5" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="25.08" y1="-175.29" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="26.61" x2="23.4" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="29.85" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.09" x2="23.4" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="38.67" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="33.54" y1="-187.71" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="44.64" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="45.3" y1="-197.07" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.04" x2="23.4" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="59.28" y1="-202.56" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="26.04" x2="23.4" y1="-277.38" y2="-277.38" /><circle cx="124.5" cy="-346.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="195.0" cy="-411.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="300.0" cy="-453.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="349.5" cy="-394.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="399.0" cy="-343.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="400.5" cy="-303.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="406.5" cy="-262.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="405.0" cy="-205.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="363.0" cy="-159.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="277.5" cy="-121.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="456.0" cy="-135.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="469.5" cy="-187.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="475.5" cy="-297.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="427.5" cy="-448.92" fill="rgb(183, 115, 51)" r="5.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="349.5" x2="349.5" y1="-394.92" y2="-319.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="349.5" x2="406.5" y1="-319.92" y2="-262.92" /><circle cx="516.0" cy="-283.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-298.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-328.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="516.0" cy="-313.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="516.0" cy="-343.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-358.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="621.0" cy="-381.42" fill="rgb(127, 127, 191)" r="20.4" /><circle cx="621.0" cy="-261.42" fill="rgb(127, 127, 191)" r="20.4" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="550.5" x2="550.5" y1="-495.42" y2="-513.42" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="520.5" x2="520.5" y1="-513.42" y2="-495.42" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="220.5" x2="220.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="190.5" x2="190.5" y1="-517.92" y2="-499.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="160.5" x2="160.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-376.92" y2="-376.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="36.0" x2="54.0" y1="-346.92" y2="-346.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-316.92" y2="-316.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="36.0" x2="54.0" y1="-286.92" y2="-286.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-256.92" y2="-256.92" /><circle cx="70.5" cy="-153.42" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="69.0" cy="-481.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="624.0" cy="-481.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="624.0" cy="-151.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="469.5" cy="-187.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="405.0" cy="-205.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="363.0" cy="-159.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="277.5" cy="-121.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="456.0" cy="-135.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="406.5" cy="-262.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="400.5" cy="-303.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="399.0" cy="-343.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="349.5" cy="-394.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="300.0" cy="-453.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="195.0" cy="-411.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="124.5" cy="-346.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="427.5" cy="-448.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="475.5" cy="-297.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="277.5" cy="-121.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="363.0" cy="-159.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="405.0" cy="-205.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="469.5" cy="-187.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="456.0" cy="-135.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="406.5" cy="-262.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="400.5" cy="-303.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="399.0" cy="-343.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="349.5" cy="-394.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="300.0" cy="-453.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="195.0" cy="-411.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="124.5" cy="-346.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="427.5" cy="-448.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="475.5" cy="-297.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="516.0" cy="-283.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-298.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-328.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="516.0" cy="-313.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="516.0" cy="-343.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-358.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="550.5" cy="-504.42" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="520.5" cy="-504.42" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="220.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="190.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="160.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-376.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-346.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-316.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-286.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-256.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="70.5" cy="-153.42" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="69.0" cy="-481.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="624.0" cy="-481.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="624.0" cy="-151.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="621.0" cy="-261.42" fill="rgb(63, 63, 63)" r="19.2" /><circle cx="621.0" cy="-381.42" fill="rgb(63, 63, 63)" r="19.2" /></svg> \ No newline at end of file
diff --git a/examples/composite_top.png b/examples/composite_top.png
new file mode 100644
index 0000000..d1dfe15
--- /dev/null
+++ b/examples/composite_top.png
Binary files differ
diff --git a/examples/composite_top.svg b/examples/composite_top.svg
new file mode 100644
index 0000000..21b01fa
--- /dev/null
+++ b/examples/composite_top.svg
@@ -0,0 +1,2 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<svg baseProfile="full" height="100%" version="1.1" viewBox="0.000000, -541.920000, 686.070000, 541.920000" width="100%" xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink"><defs /><rect fill="rgb(0, 0, 0)" height="541.92" width="686.07" x="0.0" y="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-91.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="684.0" y1="-541.92" y2="-541.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="684.0" y1="-541.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="9.0" y1="-91.92" y2="-91.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.6" x2="51.66" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.84" y1="-154.92" y2="-156.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="52.14" y1="-156.42" y2="-157.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="52.56" y1="-157.89" y2="-159.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="53.07" y1="-159.33" y2="-160.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="53.7" y1="-160.74" y2="-162.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="54.45" y1="-162.09" y2="-163.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="55.29" y1="-163.41" y2="-164.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="56.25" y1="-164.64" y2="-165.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="57.27" y1="-165.81" y2="-166.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="58.38" y1="-166.92" y2="-167.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="59.58" y1="-167.94" y2="-168.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="60.84" y1="-168.84" y2="-169.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="62.16" y1="-169.65" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="63.54" y1="-170.37" y2="-171.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="64.95" y1="-171.0" y2="-171.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="66.39" y1="-171.48" y2="-171.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.89" y1="-171.87" y2="-172.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="69.36" y1="-172.14" y2="-172.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="70.89" y1="-172.29" y2="-172.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.39" y1="-172.32" y2="-172.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="73.86" y1="-172.23" y2="-172.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="75.33" y1="-172.02" y2="-171.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="76.77" y1="-171.69" y2="-171.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="78.15" y1="-171.24" y2="-170.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="79.5" y1="-170.7" y2="-170.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="80.79" y1="-170.04" y2="-169.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="82.02" y1="-169.26" y2="-168.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="83.19" y1="-168.39" y2="-167.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="84.27" y1="-167.43" y2="-166.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="85.23" y1="-166.38" y2="-165.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="86.13" y1="-165.24" y2="-164.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.94" y1="-164.04" y2="-162.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="87.63" y1="-162.75" y2="-161.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="88.2" y1="-161.43" y2="-160.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="88.68" y1="-160.05" y2="-158.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="89.04" y1="-158.61" y2="-157.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="89.28" y1="-157.14" y2="-155.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.4" y1="-155.67" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.4" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.28" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.04" y1="-151.17" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="88.68" y1="-149.7" y2="-148.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="88.2" y1="-148.23" y2="-146.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="87.63" y1="-146.79" y2="-145.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="86.94" y1="-145.41" y2="-144.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="86.13" y1="-144.09" y2="-142.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.23" y1="-142.8" y2="-141.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="84.27" y1="-141.6" y2="-140.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="83.19" y1="-140.46" y2="-139.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="82.02" y1="-139.41" y2="-138.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="80.79" y1="-138.45" y2="-137.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="79.5" y1="-137.58" y2="-136.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="78.15" y1="-136.8" y2="-136.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="76.77" y1="-136.14" y2="-135.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="75.33" y1="-135.6" y2="-135.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="73.86" y1="-135.15" y2="-134.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="72.39" y1="-134.82" y2="-134.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="70.89" y1="-134.61" y2="-134.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.36" y1="-134.52" y2="-134.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="67.89" y1="-134.55" y2="-134.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="66.39" y1="-134.7" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.95" y1="-134.97" y2="-135.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="63.54" y1="-135.36" y2="-135.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="62.16" y1="-135.84" y2="-136.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="60.84" y1="-136.47" y2="-137.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="59.58" y1="-137.19" y2="-138.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="58.38" y1="-138.0" y2="-138.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="57.27" y1="-138.9" y2="-139.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="56.25" y1="-139.92" y2="-141.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="55.29" y1="-141.03" y2="-142.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="54.45" y1="-142.2" y2="-143.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="53.7" y1="-143.43" y2="-144.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="53.07" y1="-144.75" y2="-146.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="52.56" y1="-146.1" y2="-147.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="52.14" y1="-147.51" y2="-148.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="51.84" y1="-148.95" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="51.66" y1="-150.42" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.6" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.1" x2="50.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="51.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="51.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="52.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="52.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="53.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="54.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="55.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="56.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="58.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="59.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="60.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="62.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="63.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="64.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="66.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="69.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="70.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="73.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="75.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="76.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="78.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="79.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="80.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="81.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="82.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="83.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="84.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="85.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="86.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="87.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="87.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="86.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="86.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="84.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="83.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="82.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="81.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="80.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="79.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="78.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="76.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="75.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="73.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="72.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="70.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="67.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="66.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="63.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="62.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="60.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="59.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="58.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="56.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="55.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="54.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="53.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="52.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="52.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="51.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="51.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="50.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="50.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-381.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-382.92" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-384.42" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-385.89" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-387.36" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-388.77" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-390.15" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-391.44" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-392.7" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-393.9" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-395.01" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-396.03" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-396.96" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-397.8" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-398.52" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-399.15" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-399.69" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-400.08" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-400.38" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-400.56" y2="-400.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-400.62" y2="-400.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-400.56" y2="-400.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-400.38" y2="-400.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-400.08" y2="-399.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-399.69" y2="-399.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-399.15" y2="-398.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-398.52" y2="-397.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-397.8" y2="-396.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-396.96" y2="-396.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-396.03" y2="-395.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-395.01" y2="-393.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-393.9" y2="-392.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-392.7" y2="-391.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-391.44" y2="-390.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-390.15" y2="-388.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-388.77" y2="-387.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-387.36" y2="-385.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-385.89" y2="-384.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-384.42" y2="-382.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-382.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-381.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-379.92" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-378.42" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-376.95" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-375.48" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-374.07" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-372.69" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-371.4" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-370.14" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-368.94" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-367.83" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-366.81" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-365.88" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-365.04" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-364.32" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-363.69" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-363.15" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-362.76" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-362.46" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-362.28" y2="-362.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-362.22" y2="-362.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-362.28" y2="-362.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-362.46" y2="-362.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-362.76" y2="-363.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-363.15" y2="-363.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-363.69" y2="-364.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-364.32" y2="-365.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-365.04" y2="-365.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-365.88" y2="-366.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-366.81" y2="-367.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-367.83" y2="-368.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-368.94" y2="-370.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-370.14" y2="-371.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-371.4" y2="-372.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-372.69" y2="-374.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-374.07" y2="-375.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-375.48" y2="-376.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-376.95" y2="-378.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-378.42" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-379.92" y2="-381.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-261.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-262.92" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-264.42" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-265.89" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-267.36" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-268.77" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-270.15" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-271.44" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-272.7" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-273.9" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-275.01" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-276.03" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-276.96" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-277.8" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-278.52" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-279.15" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-279.69" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-280.08" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-280.38" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-280.56" y2="-280.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-280.62" y2="-280.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-280.56" y2="-280.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-280.38" y2="-280.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-280.08" y2="-279.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-279.69" y2="-279.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-279.15" y2="-278.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-278.52" y2="-277.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-277.8" y2="-276.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-276.96" y2="-276.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-276.03" y2="-275.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-275.01" y2="-273.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-273.9" y2="-272.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-272.7" y2="-271.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-271.44" y2="-270.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-270.15" y2="-268.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-268.77" y2="-267.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-267.36" y2="-265.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-265.89" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-264.42" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-262.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-261.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-259.92" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-258.42" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-256.95" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-255.48" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-254.07" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-252.69" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-251.4" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-250.14" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-248.94" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-247.83" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-246.81" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-245.88" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-245.04" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-244.32" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-243.69" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-243.15" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-242.76" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-242.46" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-242.28" y2="-242.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-242.22" y2="-242.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-242.28" y2="-242.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-242.46" y2="-242.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-242.76" y2="-243.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-243.15" y2="-243.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-243.69" y2="-244.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-244.32" y2="-245.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-245.04" y2="-245.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-245.88" y2="-246.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-246.81" y2="-247.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-247.83" y2="-248.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-248.94" y2="-250.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-250.14" y2="-251.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-251.4" y2="-252.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-252.69" y2="-254.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-254.07" y2="-255.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-255.48" y2="-256.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-256.95" y2="-258.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-258.42" y2="-259.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-259.92" y2="-261.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-151.92" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-153.42" y2="-154.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-154.92" y2="-156.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-156.39" y2="-157.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-157.83" y2="-159.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-159.24" y2="-160.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-160.59" y2="-161.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-161.91" y2="-163.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-163.14" y2="-164.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-164.31" y2="-165.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-165.42" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-166.44" y2="-167.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-167.34" y2="-168.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-168.15" y2="-168.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-168.87" y2="-169.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-169.5" y2="-169.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-169.98" y2="-170.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-170.37" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-170.64" y2="-170.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-170.79" y2="-170.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-170.82" y2="-170.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-170.73" y2="-170.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-170.52" y2="-170.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-170.19" y2="-169.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-169.74" y2="-169.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-169.2" y2="-168.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-168.54" y2="-167.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-167.76" y2="-166.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-166.89" y2="-165.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-165.93" y2="-164.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-164.88" y2="-163.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-163.74" y2="-162.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-162.54" y2="-161.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-161.25" y2="-159.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-159.93" y2="-158.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-158.55" y2="-157.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-157.11" y2="-155.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-155.64" y2="-154.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-154.17" y2="-152.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-152.67" y2="-151.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-151.17" y2="-149.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-149.67" y2="-148.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-148.2" y2="-146.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-146.73" y2="-145.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-145.29" y2="-143.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-143.91" y2="-142.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-142.59" y2="-141.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-141.3" y2="-140.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-140.1" y2="-138.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-138.96" y2="-137.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-137.91" y2="-136.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-136.95" y2="-136.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-136.08" y2="-135.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-135.3" y2="-134.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-134.64" y2="-134.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-134.1" y2="-133.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-133.65" y2="-133.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-133.32" y2="-133.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-133.11" y2="-133.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-133.02" y2="-133.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-133.05" y2="-133.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-133.2" y2="-133.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-133.47" y2="-133.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-133.86" y2="-134.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-134.34" y2="-134.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-134.97" y2="-135.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-135.69" y2="-136.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-136.5" y2="-137.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-137.4" y2="-138.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-138.42" y2="-139.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-139.53" y2="-140.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-140.7" y2="-141.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-141.93" y2="-143.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-143.25" y2="-144.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-144.6" y2="-146.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-146.01" y2="-147.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-147.45" y2="-148.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-148.92" y2="-150.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-150.42" y2="-151.92" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="191.1" y="-330.12" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="176.1" y="-330.12" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="161.1" y="-330.12" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="146.1" y="-330.12" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="146.1" y="-402.72" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="161.1" y="-402.72" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="176.1" y="-402.72" /><rect fill="rgb(183, 115, 51)" height="24.0" width="7.8" x="191.1" y="-402.72" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-216.195" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-208.515" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-200.835" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-193.155" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-185.475" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-177.795" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-170.115" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-162.435" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-154.755" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-147.105" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-139.425" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-131.745" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-124.065" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="333.825" y="-116.385" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-116.385" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-124.065" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-131.745" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-139.425" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-147.105" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-154.755" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-162.435" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-170.115" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-177.795" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-185.475" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-193.155" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-200.835" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-208.515" /><rect fill="rgb(183, 115, 51)" height="4.71" width="17.73" x="419.445" y="-216.195" /><rect fill="rgb(183, 115, 51)" height="127.56" width="122.94" x="219.03" y="-367.2" /><rect fill="rgb(183, 115, 51)" height="12.6" width="25.5" x="366.15" y="-309.72" /><rect fill="rgb(183, 115, 51)" height="12.6" width="25.5" x="366.15" y="-329.82" /><rect fill="rgb(183, 115, 51)" height="12.6" width="25.5" x="366.15" y="-349.92" /><rect fill="rgb(183, 115, 51)" height="12.6" width="25.5" x="366.15" y="-289.62" /><rect fill="rgb(183, 115, 51)" height="12.6" width="25.5" x="366.15" y="-269.52" /><rect fill="rgb(183, 115, 51)" height="47.25" width="18.9" x="290.55" y="-427.635" /><rect fill="rgb(183, 115, 51)" height="47.25" width="18.9" x="290.55" y="-511.485" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="115.635" y="-397.32" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="115.635" y="-374.88" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="288.135" y="-178.32" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="288.135" y="-155.88" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="441.135" y="-194.88" /><rect fill="rgb(183, 115, 51)" height="15.36" width="17.73" x="441.135" y="-217.32" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="432.6" y="-259.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="455.04" y="-259.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="518.1" y="-144.285" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="540.54" y="-144.285" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="312.54" y="-130.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="290.1" y="-130.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="117.54" y="-295.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="95.1" y="-295.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="153.6" y="-445.785" /><rect fill="rgb(183, 115, 51)" height="17.73" width="15.36" x="176.04" y="-445.785" /><rect fill="rgb(183, 115, 51)" height="46.05" width="18.9" x="418.05" y="-505.665" /><rect fill="rgb(183, 115, 51)" height="46.05" width="18.9" x="418.05" y="-405.255" /><rect fill="rgb(183, 115, 51)" height="22.44" width="40.17" x="407.415" y="-340.68" /><rect fill="rgb(183, 115, 51)" height="22.44" width="40.17" x="407.415" y="-294.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="0.12" x1="686.07" x2="686.07" y1="-229.17" y2="-413.67" /><circle cx="546.0" cy="-358.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-343.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-313.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-298.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="546.0" cy="-328.92" fill="rgb(183, 115, 51)" r="8.31" /><circle cx="516.0" cy="-283.92" fill="rgb(183, 115, 51)" r="8.31" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="254.97" y="-214.92" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="254.97" y="-183.42" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="254.97" y="-153.42" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="254.97" y="-121.92" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="144.21" y="-121.92" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="144.21" y="-153.42" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="144.21" y="-183.42" /><rect fill="rgb(183, 115, 51)" height="15.0" width="11.82" x="144.21" y="-214.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-256.92" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-286.92" y2="-286.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-316.92" y2="-316.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="36.0" x2="54.0" y1="-346.92" y2="-346.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="54.0" x2="36.0" y1="-376.92" y2="-376.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="160.5" x2="160.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="190.5" x2="190.5" y1="-517.92" y2="-499.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="220.5" x2="220.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="520.5" x2="520.5" y1="-513.42" y2="-495.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="18.0" x1="550.5" x2="550.5" y1="-495.42" y2="-513.42" /><rect fill="rgb(183, 115, 51)" height="14.16" width="14.16" x="491.31" y="-142.5" /><rect fill="rgb(183, 115, 51)" height="14.16" width="14.16" x="466.53" y="-142.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="473.61" x2="456.0" y1="-135.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="446.04" x2="441.96" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="445.26" x2="445.26" y1="-137.58" y2="-133.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="445.26" x2="446.88" y1="-133.29" y2="-129.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="446.88" x2="449.91" y1="-129.33" y2="-126.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.91" x2="453.87" y1="-126.33" y2="-124.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="453.87" x2="458.13" y1="-124.68" y2="-124.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="458.13" x2="461.85" y1="-124.68" y2="-126.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="461.85" x2="464.52" y1="-126.21" y2="-123.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.52" x2="482.67" y1="-123.54" y2="-123.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="482.67" x2="485.49" y1="-123.54" y2="-126.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="485.49" x2="485.49" y1="-126.36" y2="-144.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="485.49" x2="482.67" y1="-144.51" y2="-147.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="482.67" x2="464.52" y1="-147.33" y2="-147.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.52" x2="461.85" y1="-147.33" y2="-144.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="461.85" x2="458.13" y1="-144.63" y2="-146.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="458.13" x2="453.87" y1="-146.16" y2="-146.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="453.87" x2="449.91" y1="-146.16" y2="-144.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.91" x2="446.88" y1="-144.54" y2="-141.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="446.88" x2="445.26" y1="-141.51" y2="-137.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="445.26" x2="441.96" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="446.64" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="452.58" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="459.42" x2="462.84" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="585.15" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-117.66" y2="-117.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-117.66" y2="-117.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-117.66" y2="-130.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-130.05" y2="-130.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-130.05" y2="-144.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-144.42" y2="-159.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="578.58" y1="-159.45" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-173.79" y2="-173.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="587.04" y1="-173.79" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-186.21" y2="-186.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="598.8" y1="-186.21" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-195.57" y2="-195.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="612.78" y1="-195.57" y2="-201.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="627.78" y1="-201.06" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-202.2" y2="-202.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="642.42" y1="-202.2" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-198.84" y2="-198.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="655.41" y1="-198.84" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-191.34" y2="-191.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="665.64" y1="-191.34" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-180.33" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="669.6" y1="-180.33" y2="-172.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="669.6" y1="-172.11" y2="-461.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.64" y1="-461.76" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="665.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="665.64" x2="655.41" y1="-453.54" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="642.42" y1="-442.53" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="642.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="642.42" x2="627.78" y1="-435.0" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="627.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="627.78" x2="612.78" y1="-431.67" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="612.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="612.78" x2="598.8" y1="-432.78" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-438.27" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="578.58" y1="-447.66" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="574.17" y1="-460.05" y2="-474.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="574.17" y1="-474.42" y2="-489.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="578.58" y1="-489.45" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="578.58" y1="-503.79" y2="-503.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.58" x2="587.04" y1="-503.79" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-516.21" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="587.04" y1="-516.21" y2="-516.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.04" x2="598.8" y1="-516.21" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-525.57" y2="-525.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="603.78" y1="-525.57" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="603.78" x2="498.78" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="498.78" x2="499.11" y1="-527.52" y2="-527.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="499.11" x2="507.72" y1="-527.19" y2="-518.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.72" x2="508.8" y1="-518.61" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="512.67" y1="-521.25" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="517.74" y1="-525.12" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="523.23" y1="-527.22" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="528.33" y1="-527.22" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="532.2" y1="-525.12" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="534.3" y1="-521.25" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="534.3" y1="-516.18" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="532.2" y1="-492.69" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.2" x2="528.33" y1="-487.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.33" x2="523.23" y1="-483.72" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.23" x2="517.74" y1="-481.62" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="517.74" x2="512.67" y1="-481.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.67" x2="508.8" y1="-483.72" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="506.7" y1="-487.62" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="506.7" y1="-492.69" y2="-496.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="505.23" y1="-496.71" y2="-497.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.23" x2="488.52" y1="-497.31" y2="-514.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="488.52" x2="313.68" y1="-514.02" y2="-514.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="313.68" x2="314.25" y1="-514.02" y2="-513.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.25" y1="-513.48" y2="-489.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.25" y1="-489.3" y2="-489.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.85" y1="-489.3" y2="-486.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.85" x2="314.31" y1="-486.48" y2="-483.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.31" x2="314.25" y1="-483.69" y2="-483.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.25" y1="-483.6" y2="-462.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="311.43" y1="-462.24" y2="-459.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.43" x2="309.15" y1="-459.45" y2="-459.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.15" x2="310.74" y1="-459.45" y2="-455.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.74" x2="310.74" y1="-455.58" y2="-451.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.74" x2="309.12" y1="-451.29" y2="-447.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.12" x2="306.09" y1="-447.33" y2="-444.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="306.09" x2="302.13" y1="-444.33" y2="-442.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="302.13" x2="297.87" y1="-442.68" y2="-442.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="297.87" x2="293.91" y1="-442.68" y2="-444.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="293.91" x2="290.88" y1="-444.33" y2="-447.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="290.88" x2="289.26" y1="-447.33" y2="-451.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="289.26" x2="289.26" y1="-451.29" y2="-455.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="289.26" x2="290.85" y1="-455.58" y2="-459.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="290.85" x2="288.57" y1="-459.45" y2="-459.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="288.57" x2="285.75" y1="-459.45" y2="-462.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="285.75" y1="-462.24" y2="-513.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="286.32" y1="-513.48" y2="-514.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="286.32" x2="282.48" y1="-514.02" y2="-514.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.48" x2="279.9" y1="-514.02" y2="-511.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="279.9" y1="-511.44" y2="-422.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-422.4" y2="-416.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="285.75" y1="-416.55" y2="-429.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="288.57" y1="-429.6" y2="-432.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="288.57" x2="311.43" y1="-432.42" y2="-432.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.43" x2="314.25" y1="-432.42" y2="-429.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.25" y1="-429.6" y2="-412.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="342.09" y1="-412.41" y2="-412.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.09" x2="345.18" y1="-412.41" y2="-411.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="345.18" x2="350.64" y1="-411.12" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="350.64" x2="351.63" y1="-405.66" y2="-405.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.63" x2="355.59" y1="-405.66" y2="-404.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="355.59" x2="358.62" y1="-404.04" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="412.65" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="350.55" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="345.78" x2="416.79" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.33" x2="415.98" y1="-410.67" y2="-410.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.98" x2="414.75" y1="-410.31" y2="-409.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.75" x2="413.73" y1="-409.59" y2="-408.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.73" x2="413.01" y1="-408.57" y2="-407.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.01" x2="412.65" y1="-407.34" y2="-405.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="412.65" y1="-405.99" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="425.19" y1="-384.57" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="425.19" y1="-384.57" y2="-410.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="417.33" y1="-410.67" y2="-410.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="429.81" y1="-410.67" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-384.57" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="425.19" y1="-384.57" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-379.92" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="429.81" y1="-379.92" y2="-353.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="437.67" y1="-353.79" y2="-353.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.67" x2="439.02" y1="-353.79" y2="-354.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="439.02" x2="440.25" y1="-354.18" y2="-354.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="440.25" x2="441.27" y1="-354.87" y2="-355.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.27" x2="441.99" y1="-355.89" y2="-357.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.99" x2="442.35" y1="-357.12" y2="-358.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="442.35" y1="-358.5" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="429.81" y1="-379.92" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="429.81" y1="-379.92" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="442.35" y1="-384.57" y2="-384.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="442.35" y1="-384.57" y2="-405.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="441.99" y1="-405.99" y2="-407.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.99" x2="441.27" y1="-407.34" y2="-408.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.27" x2="440.25" y1="-408.57" y2="-409.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="440.25" x2="439.02" y1="-409.59" y2="-410.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="439.02" x2="437.67" y1="-410.31" y2="-410.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.67" x2="429.81" y1="-410.67" y2="-410.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="314.25" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="314.25" y1="-378.39" y2="-395.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="336.96" y1="-395.61" y2="-395.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="336.96" x2="338.76" y1="-395.61" y2="-393.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="338.76" y1="-393.78" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="338.76" x2="340.38" y1="-392.79" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="340.38" x2="343.41" y1="-388.83" y2="-385.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.41" x2="347.37" y1="-385.83" y2="-384.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="347.37" x2="351.63" y1="-384.18" y2="-384.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="351.63" x2="355.59" y1="-384.18" y2="-385.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="355.59" x2="358.62" y1="-385.83" y2="-388.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="358.62" x2="360.24" y1="-388.83" y2="-392.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="360.24" y1="-392.79" y2="-397.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="358.62" y1="-397.08" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.24" x2="412.65" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="359.7" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.49" x2="412.65" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="412.65" y1="-379.92" y2="-358.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="413.01" y1="-358.5" y2="-357.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.01" x2="413.73" y1="-357.12" y2="-355.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.73" x2="414.75" y1="-355.89" y2="-354.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.75" x2="415.98" y1="-354.87" y2="-354.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.98" x2="417.33" y1="-354.18" y2="-353.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.33" x2="425.19" y1="-353.79" y2="-353.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="425.19" y1="-353.79" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="412.65" y1="-379.92" y2="-379.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="313.08" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="311.43" y1="-378.39" y2="-375.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.43" x2="288.57" y1="-375.57" y2="-375.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="288.57" x2="285.75" y1="-375.57" y2="-378.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="285.75" y1="-378.39" y2="-397.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="283.32" y1="-397.02" y2="-397.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.32" x2="280.23" y1="-397.02" y2="-398.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="280.23" x2="277.89" y1="-398.31" y2="-400.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="277.89" x2="277.89" y1="-400.68" y2="-400.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="277.89" x2="264.39" y1="-400.68" y2="-414.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="264.39" x2="263.1" y1="-414.18" y2="-417.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="263.1" y1="-417.27" y2="-516.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="264.39" y1="-516.6" y2="-519.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="264.39" x2="272.22" y1="-519.69" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.22" x2="230.43" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="230.43" x2="232.2" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.2" x2="234.3" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.3" x2="234.3" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.3" x2="232.2" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.2" x2="228.33" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="228.33" x2="223.23" y1="-488.22" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="223.23" x2="217.74" y1="-486.12" y2="-486.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="217.74" x2="212.67" y1="-486.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="212.67" x2="208.8" y1="-488.22" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.8" x2="206.7" y1="-492.12" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.7" x2="206.7" y1="-497.19" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.7" x2="208.8" y1="-520.68" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.8" x2="210.57" y1="-525.75" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="210.57" x2="200.43" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="200.43" x2="202.2" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="204.3" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="204.3" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="202.2" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="198.33" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="198.33" x2="197.7" y1="-488.22" y2="-487.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.7" x2="197.7" y1="-487.98" y2="-461.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.7" x2="196.59" y1="-461.01" y2="-458.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="196.59" x2="190.2" y1="-458.34" y2="-451.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.2" x2="190.2" y1="-451.95" y2="-450.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.2" x2="193.38" y1="-450.6" y2="-450.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="193.38" x2="196.2" y1="-450.6" y2="-447.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="196.2" x2="196.2" y1="-447.78" y2="-426.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="196.2" x2="193.38" y1="-426.09" y2="-423.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="193.38" x2="187.2" y1="-423.27" y2="-423.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.2" x2="187.2" y1="-423.27" y2="-418.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.2" x2="188.91" y1="-418.83" y2="-420.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="188.91" x2="192.87" y1="-420.54" y2="-422.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="192.87" x2="197.13" y1="-422.16" y2="-422.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.13" x2="201.09" y1="-422.16" y2="-420.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="201.09" x2="204.12" y1="-420.54" y2="-417.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.12" x2="205.74" y1="-417.51" y2="-413.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="205.74" x2="205.74" y1="-413.58" y2="-409.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="205.74" x2="204.12" y1="-409.29" y2="-405.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.12" x2="203.58" y1="-405.33" y2="-404.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.58" x2="203.7" y1="-404.82" y2="-404.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="203.7" y1="-404.73" y2="-376.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="200.88" y1="-376.74" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="200.88" x2="189.12" y1="-373.92" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="189.12" x2="187.5" y1="-373.92" y2="-375.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.5" x2="185.88" y1="-375.54" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="185.88" x2="174.12" y1="-373.92" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.12" x2="172.5" y1="-373.92" y2="-375.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.5" x2="170.88" y1="-375.54" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.88" x2="159.12" y1="-373.92" y2="-373.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="159.12" x2="157.92" y1="-373.92" y2="-375.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.92" x2="157.23" y1="-375.12" y2="-374.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.23" x2="155.97" y1="-374.4" y2="-373.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="155.97" x2="154.62" y1="-373.71" y2="-373.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="154.62" x2="150.0" y1="-373.32" y2="-373.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-373.32" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-373.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="145.38" y1="-373.32" y2="-373.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="145.38" x2="144.03" y1="-373.32" y2="-373.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="144.03" x2="142.77" y1="-373.71" y2="-374.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.77" x2="141.78" y1="-374.4" y2="-375.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.78" x2="141.06" y1="-375.42" y2="-376.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.06" x2="140.7" y1="-376.65" y2="-378.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="140.7" y1="-378.03" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="150.0" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="148.92" y1="-390.72" y2="-389.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.92" x2="124.5" y1="-389.64" y2="-389.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="125.94" y1="-388.2" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="138.75" y1="-391.08" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="138.75" y1="-391.08" y2="-398.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="138.39" y1="-398.04" y2="-399.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.39" x2="137.67" y1="-399.42" y2="-400.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.67" x2="136.68" y1="-400.65" y2="-401.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.68" x2="135.45" y1="-401.64" y2="-402.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="135.45" x2="134.07" y1="-402.36" y2="-402.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="134.07" x2="125.94" y1="-402.72" y2="-402.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="125.94" y1="-402.72" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="123.06" y1="-391.08" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="123.06" x2="123.06" y1="-391.08" y2="-388.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="123.06" x2="110.25" y1="-388.2" y2="-388.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="110.25" y1="-388.2" y2="-381.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="110.61" y1="-381.27" y2="-379.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.61" x2="111.33" y1="-379.89" y2="-378.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.33" x2="111.96" y1="-378.66" y2="-378.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.96" x2="110.85" y1="-378.0" y2="-376.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.85" x2="110.85" y1="-376.86" y2="-357.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.85" x2="113.64" y1="-357.54" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="113.64" x2="117.12" y1="-354.72" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.12" x2="115.38" y1="-354.72" y2="-353.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.38" x2="113.76" y1="-353.01" y2="-349.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="113.76" x2="113.76" y1="-349.08" y2="-344.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="113.76" x2="115.38" y1="-344.79" y2="-340.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.38" x2="118.41" y1="-340.83" y2="-337.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.41" x2="122.37" y1="-337.83" y2="-336.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="122.37" x2="126.63" y1="-336.18" y2="-336.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="126.63" x2="130.59" y1="-336.18" y2="-337.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="130.59" x2="133.62" y1="-337.83" y2="-340.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="133.62" x2="135.24" y1="-340.83" y2="-344.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="135.24" x2="135.24" y1="-344.79" y2="-349.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="135.24" x2="133.62" y1="-349.08" y2="-353.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="133.62" x2="131.88" y1="-353.01" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="131.88" x2="135.36" y1="-354.72" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="135.36" x2="138.15" y1="-354.72" y2="-357.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.15" x2="138.15" y1="-357.54" y2="-376.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.15" x2="137.04" y1="-376.86" y2="-378.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.04" x2="137.67" y1="-378.0" y2="-378.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.67" x2="138.39" y1="-378.66" y2="-379.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.39" x2="138.75" y1="-379.89" y2="-381.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="138.75" y1="-381.27" y2="-388.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="125.94" y1="-388.2" y2="-388.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="123.06" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="123.06" x2="123.06" y1="-391.08" y2="-402.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="123.06" x2="114.93" y1="-402.72" y2="-402.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.93" x2="113.55" y1="-402.72" y2="-402.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="113.55" x2="112.32" y1="-402.36" y2="-401.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.32" x2="111.33" y1="-401.64" y2="-400.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.33" x2="110.61" y1="-400.65" y2="-399.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.61" x2="110.25" y1="-399.42" y2="-398.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="110.25" y1="-398.04" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="123.06" y1="-391.08" y2="-391.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="123.06" x2="125.94" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="125.94" x2="123.06" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.69" x2="23.4" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="141.6" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.78" x2="141.06" y1="-406.05" y2="-404.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.06" x2="140.7" y1="-404.82" y2="-403.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="140.7" y1="-403.44" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="150.0" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-367.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="172.5" y1="-367.92" y2="-345.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.5" x2="172.5" y1="-345.42" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.5" x2="165.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-318.12" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="169.62" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="169.62" x2="170.97" y1="-300.72" y2="-301.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.97" x2="172.23" y1="-301.11" y2="-301.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.23" x2="172.5" y1="-301.8" y2="-302.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.5" x2="172.77" y1="-302.1" y2="-301.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.77" x2="174.03" y1="-301.8" y2="-301.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.03" x2="175.38" y1="-301.11" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="175.38" x2="180.0" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="184.62" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="184.62" x2="185.97" y1="-300.72" y2="-301.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="185.97" x2="187.23" y1="-301.11" y2="-301.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.23" x2="187.8" y1="-301.8" y2="-302.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="187.8" y1="-302.4" y2="-248.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="188.91" y1="-248.01" y2="-245.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="188.91" x2="190.92" y1="-245.34" y2="-243.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.92" x2="190.92" y1="-243.33" y2="-243.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.92" x2="204.63" y1="-243.33" y2="-229.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.63" x2="184.47" y1="-229.62" y2="-229.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="184.47" x2="157.2" y1="-229.62" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="157.2" y1="-256.92" y2="-302.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="157.77" y1="-302.4" y2="-301.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.77" x2="159.03" y1="-301.8" y2="-301.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="159.03" x2="160.38" y1="-301.11" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.38" x2="165.0" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-300.72" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="170.7" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.7" x2="180.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-318.12" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-300.72" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="172.5" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="180.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-318.12" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="175.38" y1="-335.52" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="175.38" x2="174.03" y1="-335.52" y2="-335.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.03" x2="172.77" y1="-335.16" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.77" x2="172.23" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.23" x2="170.97" y1="-334.44" y2="-335.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="170.97" x2="169.62" y1="-335.16" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="169.62" x2="165.0" y1="-335.52" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="160.38" y1="-335.52" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.38" x2="159.03" y1="-335.52" y2="-335.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="159.03" x2="157.77" y1="-335.16" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.77" x2="156.39" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="155.88" x2="157.08" y1="-334.92" y2="-333.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.08" x2="157.77" y1="-333.75" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="155.88" x2="144.12" y1="-334.92" y2="-334.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="144.12" x2="141.3" y1="-334.92" y2="-332.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="141.3" y1="-332.13" y2="-304.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="142.8" y1="-304.14" y2="-302.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.8" x2="142.8" y1="-302.64" y2="-279.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.8" x2="142.59" y1="-279.27" y2="-279.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.59" x2="137.7" y1="-279.72" y2="-284.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.7" x2="137.7" y1="-284.64" y2="-297.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.7" x2="134.88" y1="-297.78" y2="-300.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="134.88" x2="115.56" y1="-300.6" y2="-300.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.56" x2="114.0" y1="-300.6" y2="-299.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.0" x2="112.44" y1="-299.04" y2="-300.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.44" x2="93.12" y1="-300.6" y2="-300.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="93.12" x2="90.3" y1="-300.6" y2="-297.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="90.3" x2="90.3" y1="-297.78" y2="-294.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="90.3" x2="65.94" y1="-294.12" y2="-294.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.94" x2="65.7" y1="-294.12" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-294.75" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-298.62" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-300.72" y2="-300.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-300.72" y2="-298.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-298.62" y2="-294.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-294.75" y2="-292.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-292.56" y2="-311.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-311.28" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-309.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-305.22" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-303.12" y2="-303.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-303.12" y2="-305.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-305.22" y2="-309.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-309.12" y2="-314.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-314.19" y2="-319.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-319.68" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-324.75" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-328.62" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-330.72" y2="-330.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-330.72" y2="-328.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-328.62" y2="-324.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-324.75" y2="-322.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-322.56" y2="-341.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-341.28" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-339.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-335.22" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-333.12" y2="-333.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-333.12" y2="-335.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-335.22" y2="-339.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-339.12" y2="-344.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-344.19" y2="-349.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-349.68" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-354.75" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-358.62" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-360.72" y2="-360.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-360.72" y2="-358.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-358.62" y2="-354.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-354.75" y2="-352.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-352.56" y2="-371.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-371.28" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-369.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-365.22" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-363.12" y2="-363.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-363.12" y2="-365.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-365.22" y2="-369.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="67.8" y1="-369.12" y2="-374.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="67.8" y1="-374.19" y2="-379.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="65.7" y1="-379.68" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="61.83" y1="-384.75" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="56.73" y1="-388.62" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="33.24" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="28.17" y1="-390.72" y2="-388.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="24.3" y1="-388.62" y2="-384.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-384.75" y2="-382.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-382.56" y2="-460.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.58" y1="-460.68" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="32.04" y1="-460.05" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="32.04" y1="-447.66" y2="-447.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="32.04" x2="43.8" y1="-447.66" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="57.78" y1="-438.27" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="72.78" y1="-432.78" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="87.42" y1="-431.67" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="100.41" y1="-435.0" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="110.64" y1="-442.53" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="117.15" y1="-453.54" y2="-467.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="119.4" y1="-467.07" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="117.15" y1="-481.92" y2="-496.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="110.64" y1="-496.8" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="100.41" y1="-510.33" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="89.7" y1="-521.34" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="89.7" x2="150.57" y1="-527.52" y2="-527.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.57" x2="148.8" y1="-527.52" y2="-525.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="146.7" y1="-525.75" y2="-520.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="146.7" y1="-520.68" y2="-497.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="148.8" y1="-497.19" y2="-492.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="152.67" y1="-492.12" y2="-488.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="152.67" x2="153.3" y1="-488.22" y2="-487.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="153.3" y1="-487.98" y2="-450.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="151.62" y1="-450.6" y2="-450.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="151.62" x2="148.8" y1="-450.6" y2="-447.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="148.8" y1="-447.78" y2="-426.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="151.62" y1="-426.09" y2="-423.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="151.62" x2="157.8" y1="-423.27" y2="-423.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.8" x2="157.8" y1="-423.27" y2="-406.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.8" x2="157.23" y1="-406.47" y2="-407.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.23" x2="155.97" y1="-407.04" y2="-407.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="155.97" x2="154.62" y1="-407.76" y2="-408.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="154.62" x2="150.0" y1="-408.12" y2="-408.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="145.38" y1="-408.12" y2="-408.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="145.38" x2="144.03" y1="-408.12" y2="-407.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="144.03" x2="142.77" y1="-407.76" y2="-407.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.77" x2="141.78" y1="-407.04" y2="-406.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="137.31" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="140.7" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="138.75" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.75" x2="140.7" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="140.7" x2="138.75" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.79" x2="140.91" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.15" x2="412.65" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.65" x2="346.77" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="343.95" y1="-369.21" y2="-372.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.95" x2="217.05" y1="-372.0" y2="-372.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="217.05" x2="214.23" y1="-372.0" y2="-369.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="214.23" y1="-369.21" y2="-240.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-240.39" y2="-252.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="202.2" y1="-252.42" y2="-302.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="203.7" y1="-302.64" y2="-304.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="203.7" y1="-304.14" y2="-332.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="200.88" y1="-332.13" y2="-334.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="200.88" x2="189.12" y1="-334.92" y2="-334.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="189.12" x2="187.92" y1="-334.92" y2="-333.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.92" x2="187.23" y1="-333.75" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.23" x2="188.61" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.23" x2="185.97" y1="-334.44" y2="-335.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="185.97" x2="184.62" y1="-335.16" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="184.62" x2="180.0" y1="-335.52" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-335.52" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="186.06" x2="187.8" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="157.2" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="158.91" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-318.12" y2="-335.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-335.52" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-318.12" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.23" x2="172.5" y1="-334.44" y2="-334.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="172.5" x2="172.77" y1="-334.17" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="195.0" x2="195.0" y1="-318.12" y2="-249.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="195.0" x2="214.5" y1="-249.42" y2="-229.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.5" x2="283.5" y1="-229.92" y2="-229.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.5" x2="322.5" y1="-229.92" y2="-190.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="322.5" x2="342.57" y1="-190.92" y2="-190.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.57" x2="342.69" y1="-190.92" y2="-190.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="341.31" y1="-190.8" y2="-190.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="319.8" y1="-183.12" y2="-183.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="319.8" x2="280.5" y1="-183.12" y2="-222.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="280.5" x2="181.5" y1="-222.42" y2="-222.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="181.5" x2="150.0" y1="-222.42" y2="-253.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-253.92" y2="-318.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="67.59" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="141.3" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="66.33" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.49" x2="141.3" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.8" x2="23.4" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="25.95" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="27.51" x2="23.4" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.67" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.48" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="30.72" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.09" x2="23.4" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.27" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.76" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="27.75" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="110.85" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.85" x2="64.32" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.08" x2="110.85" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.21" x2="67.8" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="66.84" x2="110.25" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="63.72" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="62.25" x2="110.85" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="115.83" x2="66.24" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="67.8" x2="113.76" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.12" x2="67.71" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.73" x2="117.06" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="124.5" x2="124.5" y1="-346.92" y2="-367.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.15" x2="214.23" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="138.15" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="138.15" x2="214.23" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="133.17" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="135.24" x2="214.23" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="134.88" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="131.94" x2="214.23" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="201.39" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="214.23" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="203.7" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="214.23" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="203.7" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="214.23" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="203.7" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="202.2" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="202.2" x2="214.23" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="214.23" x2="205.77" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="210.51" x2="214.23" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="199.68" x2="179.52" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="174.78" x2="194.91" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.17" x2="170.01" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.27" x2="187.8" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="160.5" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="187.8" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="157.2" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="187.8" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="157.2" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="187.8" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="157.2" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.2" x2="187.8" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="187.8" x2="157.2" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.8" x2="137.7" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.7" x2="142.8" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.8" x2="140.19" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.5" x2="125.22" y1="-275.64" y2="-286.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="137.7" x2="142.8" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.5" x2="136.5" y1="-275.64" y2="-183.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.5" x2="144.0" y1="-183.42" y2="-175.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="144.0" x2="150.12" y1="-175.92" y2="-175.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="139.41" y1="-170.34" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="142.2" y1="-166.44" y2="-163.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.2" x2="158.01" y1="-163.62" y2="-163.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="160.8" y1="-163.62" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="160.8" y1="-166.44" y2="-185.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="158.01" y1="-185.43" y2="-188.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="143.7" y1="-188.22" y2="-188.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="143.7" y1="-188.22" y2="-195.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="158.01" y1="-195.12" y2="-195.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="160.8" y1="-195.12" y2="-197.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="160.8" y1="-197.94" y2="-216.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="158.01" y1="-216.93" y2="-219.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="143.7" y1="-219.72" y2="-219.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="143.7" y1="-219.72" y2="-250.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="143.91" y1="-250.32" y2="-249.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.91" x2="175.41" y1="-249.84" y2="-218.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="175.41" x2="177.42" y1="-218.34" y2="-216.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="177.42" x2="180.06" y1="-216.33" y2="-215.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.06" x2="249.6" y1="-215.22" y2="-215.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.6" x2="249.6" y1="-215.22" y2="-207.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.6" x2="260.34" y1="-207.99" y2="-207.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="260.34" y1="-207.99" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="249.6" y1="-206.88" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.6" x2="249.6" y1="-206.88" y2="-199.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.6" x2="249.96" y1="-199.23" y2="-197.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.96" x2="250.68" y1="-197.85" y2="-196.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.68" x2="251.67" y1="-196.62" y2="-195.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="251.67" x2="252.9" y1="-195.6" y2="-194.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.9" x2="254.28" y1="-194.91" y2="-194.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="254.28" x2="260.34" y1="-194.52" y2="-194.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="260.34" y1="-194.52" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="261.45" y1="-206.88" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="261.45" x2="261.45" y1="-206.88" y2="-207.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="261.45" x2="272.19" y1="-207.99" y2="-207.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.19" x2="272.19" y1="-207.99" y2="-215.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.19" x2="277.53" y1="-215.22" y2="-215.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="277.53" x2="310.11" y1="-215.22" y2="-182.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.11" x2="308.34" y1="-182.64" y2="-182.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="308.34" x2="307.86" y1="-182.64" y2="-183.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="307.86" x2="286.14" y1="-183.12" y2="-183.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="286.14" x2="283.35" y1="-183.12" y2="-180.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.35" x2="283.35" y1="-180.33" y2="-177.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.35" x2="278.28" y1="-177.84" y2="-177.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="278.28" x2="275.64" y1="-177.84" y2="-176.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="275.64" x2="271.92" y1="-176.76" y2="-173.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.92" x2="271.59" y1="-173.04" y2="-172.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="271.59" y1="-172.71" y2="-185.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="268.8" y1="-185.43" y2="-188.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="252.99" y1="-188.22" y2="-188.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.99" x2="250.2" y1="-188.22" y2="-185.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="250.2" y1="-185.43" y2="-166.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="252.99" y1="-166.44" y2="-163.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.99" x2="268.8" y1="-163.62" y2="-163.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="268.8" y1="-163.62" y2="-163.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="268.8" y1="-163.65" y2="-158.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="268.8" y1="-158.22" y2="-158.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="252.99" y1="-158.22" y2="-158.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.99" x2="250.2" y1="-158.22" y2="-155.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="250.2" y1="-155.43" y2="-136.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="252.99" y1="-136.44" y2="-133.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.99" x2="268.8" y1="-133.62" y2="-133.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="271.59" y1="-133.62" y2="-136.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="271.59" y1="-136.44" y2="-138.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="274.08" y1="-138.81" y2="-139.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="274.08" x2="276.09" y1="-139.83" y2="-141.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="276.09" x2="282.09" y1="-141.84" y2="-147.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.09" x2="282.84" y1="-147.84" y2="-149.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.84" x2="295.56" y1="-149.64" y2="-149.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="295.56" x2="295.56" y1="-149.64" y2="-146.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="295.56" x2="282.75" y1="-146.76" y2="-146.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.75" x2="282.75" y1="-146.76" y2="-139.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.75" x2="283.11" y1="-139.83" y2="-138.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.11" x2="283.83" y1="-138.45" y2="-137.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.83" x2="284.82" y1="-137.22" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="284.82" x2="286.05" y1="-136.2" y2="-135.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="286.05" x2="287.43" y1="-135.51" y2="-135.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="287.43" x2="287.67" y1="-135.12" y2="-135.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="287.67" x2="285.3" y1="-135.12" y2="-132.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="285.3" y1="-132.78" y2="-129.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="283.59" y1="-129.33" y2="-131.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.59" x2="279.63" y1="-131.04" y2="-132.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.63" x2="275.37" y1="-132.66" y2="-132.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="275.37" x2="271.41" y1="-132.66" y2="-131.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.41" x2="269.52" y1="-131.04" y2="-129.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="269.52" x2="266.97" y1="-129.12" y2="-129.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="266.97" x2="264.33" y1="-129.12" y2="-128.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="264.33" x2="263.01" y1="-128.04" y2="-126.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.01" x2="252.99" y1="-126.72" y2="-126.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="252.99" x2="250.2" y1="-126.72" y2="-123.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="250.2" y1="-123.93" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-106.32" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="160.8" y1="-106.32" y2="-123.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="158.01" y1="-123.93" y2="-126.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="142.2" y1="-126.72" y2="-126.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.2" x2="139.41" y1="-126.72" y2="-123.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="139.41" y1="-123.93" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="88.11" y1="-106.32" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.11" x2="88.92" y1="-106.32" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="101.91" y1="-106.5" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-114.03" y2="-114.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="112.14" y1="-114.03" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="118.65" y1="-125.04" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="120.9" y1="-138.57" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.9" x2="118.65" y1="-153.42" y2="-168.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="112.14" y1="-168.3" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="101.91" y1="-181.83" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="88.92" y1="-192.84" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-200.34" y2="-200.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="74.28" y1="-200.34" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="74.28" y1="-203.7" y2="-203.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="74.28" x2="59.28" y1="-203.7" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="45.3" y1="-202.56" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="33.54" y1="-197.07" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="25.08" y1="-187.71" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="23.4" y1="-175.29" y2="-169.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="23.4" y1="-169.8" y2="-251.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.3" y1="-251.28" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="28.17" y1="-249.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="28.17" x2="33.24" y1="-245.22" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.24" x2="56.73" y1="-243.12" y2="-243.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="56.73" x2="61.83" y1="-243.12" y2="-245.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="61.83" x2="65.7" y1="-245.22" y2="-249.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.7" x2="65.94" y1="-249.12" y2="-249.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.94" x2="111.03" y1="-249.72" y2="-249.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.03" x2="121.8" y1="-249.72" y2="-238.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="121.8" y1="-238.95" y2="-158.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="122.91" y1="-158.01" y2="-155.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="122.91" x2="124.92" y1="-155.34" y2="-153.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="124.92" x2="134.91" y1="-153.33" y2="-143.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="134.91" x2="136.92" y1="-143.34" y2="-141.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.92" x2="139.41" y1="-141.33" y2="-140.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="139.41" y1="-140.31" y2="-136.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="142.2" y1="-136.44" y2="-133.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.2" x2="158.01" y1="-133.62" y2="-133.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="160.8" y1="-133.62" y2="-136.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="160.8" y1="-136.44" y2="-155.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="158.01" y1="-155.43" y2="-158.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="158.01" x2="142.2" y1="-158.22" y2="-158.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="142.2" x2="141.3" y1="-158.22" y2="-157.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="136.2" y1="-157.32" y2="-162.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.2" x2="136.2" y1="-162.42" y2="-173.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.2" x2="139.41" y1="-173.55" y2="-170.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="136.2" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.2" x2="268.8" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.8" x2="140.1" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="129.27" x2="120.24" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.9" x2="120.9" y1="-153.42" y2="-153.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="120.84" x2="124.5" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="120.15" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.43" x2="121.8" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="118.71" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="116.49" x2="121.8" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="114.21" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-181.83" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="111.72" x2="121.8" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="107.31" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="102.9" x2="121.8" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="95.52" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.91" x2="101.91" y1="-192.84" y2="-192.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="84.75" x2="121.8" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="23.4" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="56.04" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.28" x2="59.28" y1="-202.56" y2="-202.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.3" x2="45.3" y1="-197.07" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="44.64" x2="23.4" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="38.67" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="33.54" y1="-187.71" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.54" x2="33.54" y1="-187.71" y2="-187.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="33.09" x2="23.4" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="29.85" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="26.61" x2="23.4" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.08" x2="25.08" y1="-175.29" y2="-175.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.3" x2="23.4" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="121.8" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="23.4" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="121.8" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="23.4" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="121.8" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="121.8" x2="23.4" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="121.41" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="116.67" x2="59.07" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.43" x2="111.9" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.0" x2="45.0" y1="-256.92" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="30.93" x2="23.4" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="24.57" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="45.0" x2="102.78" y1="-286.92" y2="-286.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="90.3" x2="64.05" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="65.52" x2="141.3" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.3" x2="59.28" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="59.91" x2="143.61" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="171.06" x2="173.91" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="144.9" x2="143.7" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="149.67" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="154.41" x2="143.7" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="159.18" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="163.92" x2="143.7" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="143.7" x2="168.69" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="173.43" x2="143.7" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="179.28" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="184.29" x2="204.42" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="249.6" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="249.6" x2="160.8" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="249.6" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.74" x2="159.42" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="159.21" x2="251.79" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="250.2" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="250.2" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="250.2" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="250.2" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="251.91" x2="159.09" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="159.51" x2="251.49" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.8" x2="250.2" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="250.2" x2="160.8" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="96.6" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="103.47" x2="139.41" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="139.41" x2="107.88" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.14" x2="112.14" y1="-125.04" y2="-125.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.23" x2="140.7" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.12" x2="116.82" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.65" x2="118.65" y1="-138.57" y2="-138.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.8" x2="139.41" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="134.01" x2="119.52" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="114.51" x2="270.36" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="269.88" x2="287.25" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="284.64" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="277.5" x2="268.38" y1="-121.92" y2="-121.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.38" x2="260.88" y1="-121.92" y2="-114.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="271.59" y1="-112.74" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="603.78" y1="-106.32" y2="-106.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="603.78" x2="598.8" y1="-106.32" y2="-108.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="598.8" y1="-108.27" y2="-108.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.8" x2="587.04" y1="-108.27" y2="-117.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.5" x2="441.96" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="595.44" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="581.91" x2="561.12" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="561.3" y1="-125.85" y2="-133.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="549.66" y1="-133.98" y2="-133.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="549.66" y1="-133.98" y2="-121.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="556.62" y1="-121.17" y2="-121.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.62" x2="557.97" y1="-121.17" y2="-121.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.97" x2="559.2" y1="-121.53" y2="-122.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.2" x2="560.22" y1="-122.25" y2="-123.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="560.22" x2="560.94" y1="-123.27" y2="-124.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="560.94" x2="561.3" y1="-124.5" y2="-125.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="578.64" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="577.14" x2="549.66" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="549.66" y1="-133.98" y2="-136.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="561.3" y1="-136.86" y2="-136.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="561.3" y1="-136.86" y2="-144.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="560.94" y1="-144.99" y2="-146.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="560.94" x2="560.22" y1="-146.37" y2="-147.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="560.22" x2="559.2" y1="-147.6" y2="-148.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.2" x2="557.97" y1="-148.62" y2="-149.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.97" x2="556.62" y1="-149.31" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="556.62" x2="549.66" y1="-149.7" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="549.66" y1="-149.7" y2="-136.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="546.78" y1="-136.86" y2="-136.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="546.78" y1="-136.86" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="539.82" y1="-149.7" y2="-149.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.82" x2="538.47" y1="-149.7" y2="-149.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.47" x2="537.24" y1="-149.31" y2="-148.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.24" x2="536.58" y1="-148.62" y2="-147.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.58" x2="535.44" y1="-147.96" y2="-149.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="535.44" x2="516.12" y1="-149.1" y2="-149.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.12" x2="513.3" y1="-149.1" y2="-146.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.3" x2="513.3" y1="-146.28" y2="-142.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.3" x2="510.3" y1="-142.62" y2="-142.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.3" x2="510.3" y1="-142.62" y2="-144.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.3" x2="507.48" y1="-144.51" y2="-147.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.48" x2="489.33" y1="-147.33" y2="-147.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="489.33" x2="486.51" y1="-147.33" y2="-144.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="486.51" x2="486.51" y1="-144.51" y2="-126.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="486.51" x2="489.33" y1="-126.36" y2="-123.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="489.33" x2="507.48" y1="-123.54" y2="-123.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.48" x2="510.3" y1="-123.54" y2="-126.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.3" x2="510.3" y1="-126.36" y2="-128.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.3" x2="513.3" y1="-128.22" y2="-128.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.3" x2="513.3" y1="-128.22" y2="-124.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.3" x2="516.12" y1="-124.59" y2="-121.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.12" x2="535.44" y1="-121.77" y2="-121.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="535.44" x2="536.58" y1="-121.77" y2="-122.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.58" x2="537.24" y1="-122.91" y2="-122.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.24" x2="538.47" y1="-122.25" y2="-121.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.47" x2="539.82" y1="-121.53" y2="-121.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.82" x2="546.78" y1="-121.17" y2="-121.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="546.78" y1="-121.17" y2="-133.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="549.66" y1="-133.98" y2="-133.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="546.78" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="549.66" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="546.78" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.78" x2="549.66" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.66" x2="546.78" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.9" x2="535.53" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="525.78" x2="498.39" y1="-135.42" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="486.51" x2="485.49" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="485.49" x2="486.51" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="486.51" x2="485.49" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="500.1" x2="502.74" y1="-152.88" y2="-153.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.74" x2="565.08" y1="-153.99" y2="-216.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="565.08" x2="567.09" y1="-216.33" y2="-218.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="567.09" x2="568.2" y1="-218.34" y2="-221.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="568.2" y1="-221.01" y2="-315.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="567.09" y1="-315.36" y2="-318.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="567.09" x2="559.02" y1="-318.0" y2="-326.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.02" x2="559.11" y1="-326.1" y2="-326.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-326.31" y2="-331.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-331.53" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-336.36" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-340.05" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-342.03" y2="-342.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-342.03" y2="-340.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-340.05" y2="-336.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="534.54" y1="-336.36" y2="-335.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.54" x2="529.02" y1="-335.55" y2="-341.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.02" x2="529.11" y1="-341.1" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="529.11" y1="-341.31" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="527.13" y1="-346.53" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="527.13" x2="523.44" y1="-351.36" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="518.61" y1="-355.05" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="513.39" y1="-357.03" y2="-357.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="508.56" y1="-357.03" y2="-355.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="504.87" y1="-355.05" y2="-351.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-351.36" y2="-346.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-346.53" y2="-341.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-341.31" y2="-336.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-336.51" y2="-332.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-332.82" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-330.81" y2="-330.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="518.85" y1="-330.81" y2="-330.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.85" x2="523.8" y1="-330.9" y2="-325.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.8" y1="-325.95" y2="-324.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.44" y1="-324.69" y2="-325.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="518.61" y1="-325.05" y2="-327.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="513.39" y1="-327.03" y2="-327.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="508.56" y1="-327.03" y2="-325.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="504.87" y1="-325.05" y2="-321.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-321.36" y2="-316.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-316.53" y2="-311.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-311.31" y2="-306.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-306.51" y2="-302.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="513.39" y1="-302.82" y2="-300.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="518.61" y1="-300.81" y2="-300.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="523.44" y1="-300.81" y2="-302.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="523.8" y1="-302.82" y2="-303.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.8" y1="-303.18" y2="-294.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.44" y1="-294.69" y2="-295.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="518.61" y1="-295.05" y2="-297.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="518.61" x2="513.39" y1="-297.03" y2="-297.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.39" x2="508.56" y1="-297.03" y2="-295.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="504.87" y1="-295.05" y2="-291.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="502.89" y1="-291.36" y2="-286.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="502.89" y1="-286.53" y2="-281.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="504.87" y1="-281.31" y2="-276.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.87" x2="508.56" y1="-276.51" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.56" x2="508.8" y1="-272.82" y2="-272.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="508.8" y1="-272.73" y2="-267.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="499.53" y1="-267.42" y2="-258.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="499.53" x2="475.2" y1="-258.12" y2="-258.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.2" x2="475.2" y1="-258.12" y2="-261.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.2" x2="472.38" y1="-261.78" y2="-264.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="472.38" x2="453.06" y1="-264.6" y2="-264.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="453.06" x2="451.92" y1="-264.6" y2="-263.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.92" x2="451.26" y1="-263.46" y2="-264.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.26" x2="450.03" y1="-264.12" y2="-264.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="450.03" x2="448.68" y1="-264.81" y2="-265.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.68" x2="441.72" y1="-265.2" y2="-265.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.72" x2="441.72" y1="-265.2" y2="-252.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.72" x2="438.84" y1="-252.36" y2="-252.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="438.84" y1="-252.36" y2="-249.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="427.2" y1="-249.48" y2="-249.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.2" x2="427.2" y1="-249.48" y2="-241.35" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.2" x2="427.56" y1="-241.35" y2="-240.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.56" x2="428.28" y1="-240.0" y2="-238.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.28" x2="429.3" y1="-238.77" y2="-237.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.3" x2="430.35" y1="-237.75" y2="-237.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="430.35" x2="394.56" y1="-237.12" y2="-237.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.56" x2="391.92" y1="-237.12" y2="-236.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="391.92" x2="389.91" y1="-236.04" y2="-234.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="389.91" x2="376.92" y1="-234.0" y2="-221.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="376.92" x2="341.25" y1="-221.04" y2="-221.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.25" x2="341.16" y1="-221.04" y2="-220.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="341.16" x2="331.83" y1="-220.98" y2="-220.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="331.83" x2="329.04" y1="-220.98" y2="-218.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="329.04" y1="-218.19" y2="-198.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="325.47" y1="-198.12" y2="-198.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="325.47" x2="288.75" y1="-198.12" y2="-234.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="288.75" x2="343.95" y1="-234.84" y2="-234.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.95" x2="346.77" y1="-234.84" y2="-237.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="346.77" y1="-237.66" y2="-369.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="412.65" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.74" x2="346.77" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="362.88" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="364.17" x2="361.35" y1="-354.72" y2="-351.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="361.35" y1="-351.93" y2="-335.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="362.7" y1="-335.34" y2="-333.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="362.7" x2="361.83" y1="-333.99" y2="-333.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.83" x2="361.11" y1="-333.15" y2="-331.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.11" x2="360.75" y1="-331.92" y2="-330.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="360.75" y1="-330.54" y2="-324.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="378.15" y1="-324.27" y2="-324.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="378.15" x2="378.15" y1="-324.27" y2="-322.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="378.15" x2="360.75" y1="-322.77" y2="-322.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="360.75" y1="-322.77" y2="-316.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="361.11" y1="-316.53" y2="-315.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.11" x2="361.83" y1="-315.15" y2="-313.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.83" x2="362.7" y1="-313.92" y2="-313.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="362.7" x2="361.35" y1="-313.05" y2="-311.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="361.35" y1="-311.73" y2="-295.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="363.12" y1="-295.14" y2="-293.37" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="363.12" x2="361.35" y1="-293.37" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="361.35" y1="-291.63" y2="-275.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="363.12" y1="-275.04" y2="-273.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="363.12" x2="361.35" y1="-273.27" y2="-271.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="361.35" y1="-271.53" y2="-254.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="364.17" y1="-254.94" y2="-252.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="364.17" x2="393.63" y1="-252.12" y2="-252.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="393.63" x2="396.03" y1="-252.12" y2="-254.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.03" x2="399.72" y1="-254.52" y2="-254.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="399.72" x2="400.41" y1="-254.52" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.41" x2="404.37" y1="-253.83" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="404.37" x2="408.63" y1="-252.18" y2="-252.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.63" x2="412.59" y1="-252.18" y2="-253.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.59" x2="415.62" y1="-253.83" y2="-256.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.62" x2="417.24" y1="-256.83" y2="-260.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="417.24" y1="-260.79" y2="-265.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.24" x2="416.28" y1="-265.08" y2="-267.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.28" x2="449.58" y1="-267.39" y2="-267.39" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.58" x2="452.37" y1="-267.39" y2="-270.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.37" x2="452.37" y1="-270.18" y2="-296.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.37" x2="449.58" y1="-296.61" y2="-299.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.58" x2="410.46" y1="-299.43" y2="-299.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="410.46" x2="411.24" y1="-299.43" y2="-301.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="411.24" x2="411.24" y1="-301.29" y2="-305.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="411.24" x2="409.62" y1="-305.58" y2="-309.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="409.62" x2="406.59" y1="-309.51" y2="-312.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="406.59" x2="402.63" y1="-312.54" y2="-314.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.63" x2="398.37" y1="-314.16" y2="-314.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="398.37" x2="395.28" y1="-314.16" y2="-312.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.28" x2="395.1" y1="-312.9" y2="-313.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.1" x2="395.97" y1="-313.05" y2="-313.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.97" x2="396.69" y1="-313.92" y2="-315.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.69" x2="397.05" y1="-315.15" y2="-316.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="397.05" y1="-316.53" y2="-322.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="379.65" y1="-322.77" y2="-322.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="379.65" x2="379.65" y1="-322.77" y2="-324.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="379.65" x2="397.05" y1="-324.27" y2="-324.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="397.05" y1="-324.27" y2="-330.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="396.69" y1="-330.54" y2="-331.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.69" x2="395.97" y1="-331.92" y2="-333.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.97" x2="395.28" y1="-333.15" y2="-333.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.28" x2="396.87" y1="-333.84" y2="-333.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.87" x2="401.13" y1="-333.18" y2="-333.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="401.13" x2="402.03" y1="-333.18" y2="-333.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.03" x2="402.03" y1="-333.54" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.03" x2="425.1" y1="-331.86" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="425.1" y1="-331.86" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="429.9" y1="-327.06" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="429.9" y1="-327.06" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="448.29" y1="-312.84" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.29" x2="449.67" y1="-312.84" y2="-313.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.67" x2="450.9" y1="-313.2" y2="-313.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="450.9" x2="451.89" y1="-313.92" y2="-314.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.89" x2="452.61" y1="-314.94" y2="-316.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.61" x2="452.97" y1="-316.17" y2="-317.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="452.97" y1="-317.52" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="429.9" y1="-327.06" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="429.9" y1="-327.06" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="452.97" y1="-331.86" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="452.97" y1="-331.86" y2="-341.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="452.61" y1="-341.4" y2="-342.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.61" x2="451.89" y1="-342.78" y2="-344.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.89" x2="450.9" y1="-344.01" y2="-345.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="450.9" x2="449.67" y1="-345.0" y2="-345.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="449.67" x2="448.29" y1="-345.72" y2="-346.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.29" x2="429.9" y1="-346.08" y2="-346.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="429.9" y1="-346.08" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="425.1" y1="-331.86" y2="-331.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="425.1" y1="-331.86" y2="-346.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="409.74" y1="-346.08" y2="-346.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="409.74" x2="408.12" y1="-346.08" y2="-350.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.12" x2="405.09" y1="-350.01" y2="-353.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="405.09" x2="401.13" y1="-353.04" y2="-354.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="401.13" x2="396.87" y1="-354.66" y2="-354.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.87" x2="394.62" y1="-354.66" y2="-353.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.62" x2="393.63" y1="-353.76" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="393.63" x2="364.17" y1="-354.72" y2="-354.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="362.25" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="346.77" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="360.75" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.75" x2="346.77" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.05" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.38" x2="346.77" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="362.46" x2="346.77" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="361.35" x2="346.77" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="361.35" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="362.7" x2="346.77" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="427.2" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.2" x2="438.84" y1="-252.36" y2="-252.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="438.84" y1="-252.36" y2="-265.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="431.88" y1="-265.2" y2="-265.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="431.88" x2="430.53" y1="-265.2" y2="-264.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="430.53" x2="429.3" y1="-264.81" y2="-264.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.3" x2="428.28" y1="-264.12" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.28" x2="427.56" y1="-263.1" y2="-261.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.56" x2="427.2" y1="-261.87" y2="-260.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.2" x2="427.2" y1="-260.49" y2="-252.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.2" x2="412.05" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.22" x2="427.2" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.28" x2="417.24" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.95" x2="395.1" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="390.48" x2="289.02" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="293.79" x2="385.71" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="380.97" x2="298.53" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="303.3" x2="331.17" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="308.04" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="312.81" x2="329.04" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="317.55" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="322.32" x2="329.04" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="379.89" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="379.89" x2="396.0" y1="-213.84" y2="-229.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.0" x2="457.5" y1="-229.92" y2="-229.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="457.5" x2="462.72" y1="-229.92" y2="-235.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="462.72" x2="462.72" y1="-235.14" y2="-250.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="462.72" x2="502.5" y1="-250.92" y2="-250.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.5" x2="516.0" y1="-250.92" y2="-264.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.0" x2="516.0" y1="-264.42" y2="-283.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.51" x2="452.37" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.37" x2="502.89" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.04" x2="452.37" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.37" x2="505.17" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="511.83" x2="452.37" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.19" x2="502.89" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.16" x2="408.45" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="406.71" x2="425.1" y1="-312.84" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="425.1" y1="-312.84" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="402.03" y1="-327.06" y2="-327.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.03" x2="402.03" y1="-327.06" y2="-317.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.03" x2="402.39" y1="-317.52" y2="-316.17" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.39" x2="403.11" y1="-316.17" y2="-314.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="403.11" x2="404.1" y1="-314.94" y2="-313.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="404.1" x2="405.33" y1="-313.92" y2="-313.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="405.33" x2="406.71" y1="-313.2" y2="-312.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.81" x2="396.75" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="402.03" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.03" x2="397.05" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="397.05" x2="425.1" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="429.9" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="520.08" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.56" x2="523.8" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="531.0" x2="516.0" y1="-328.92" y2="-343.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.76" x2="452.97" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="506.94" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.44" x2="452.97" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="452.97" x2="504.39" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="505.47" x2="411.09" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="411.18" x2="512.58" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="519.42" x2="523.8" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="520.17" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="538.8" y1="-287.64" y2="-287.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.8" x2="540.75" y1="-287.19" y2="-286.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="540.75" x2="542.79" y1="-286.23" y2="-285.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.79" x2="544.92" y1="-285.54" y2="-285.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.92" x2="545.73" y1="-285.21" y2="-285.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="545.73" y1="-285.21" y2="-298.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="546.27" y1="-298.68" y2="-298.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="546.27" y1="-298.68" y2="-285.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="547.08" y1="-285.21" y2="-285.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.08" x2="549.21" y1="-285.21" y2="-285.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.21" x2="551.25" y1="-285.54" y2="-286.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.25" x2="553.2" y1="-286.23" y2="-287.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.2" x2="553.8" y1="-287.19" y2="-287.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="553.8" y1="-287.64" y2="-225.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-225.42" y2="-209.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="538.2" y1="-209.82" y2="-287.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="539.43" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.8" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="538.2" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="553.47" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.7" x2="538.2" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="543.96" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="539.19" x2="538.2" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="531.0" x2="531.0" y1="-204.42" y2="-328.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="530.91" x2="537.72" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-347.82" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-345.81" y2="-345.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="553.44" y1="-345.81" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="557.13" y1="-347.82" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="559.11" y1="-351.51" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="559.11" y1="-356.31" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="557.13" y1="-361.53" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.13" x2="553.44" y1="-366.36" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.44" x2="548.61" y1="-370.05" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="543.39" y1="-372.03" y2="-372.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="538.56" y1="-372.03" y2="-370.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="534.87" y1="-370.05" y2="-366.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="532.89" y1="-366.36" y2="-361.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="532.89" y1="-361.53" y2="-356.31" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="534.87" y1="-356.31" y2="-351.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.87" x2="538.56" y1="-351.51" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.69" x2="528.21" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="529.11" x2="669.6" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="628.68" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-347.82" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-350.13" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-354.54" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-360.81" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-368.46" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-377.01" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-385.86" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-394.41" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-402.06" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-408.33" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-412.74" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-415.02" y2="-415.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-415.02" y2="-412.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-412.74" y2="-408.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-408.33" y2="-402.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-402.06" y2="-394.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-394.41" y2="-385.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-385.86" y2="-377.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-377.01" y2="-368.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-368.46" y2="-360.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-360.81" y2="-354.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-354.54" y2="-350.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-350.13" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-347.82" y2="-347.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="613.32" x2="554.31" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="557.94" x2="602.25" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="596.7" x2="559.11" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.51" x2="592.86" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="590.13" x2="555.75" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.25" x2="442.35" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="533.49" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="532.89" x2="442.26" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.19" x2="429.81" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="425.19" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.81" x2="587.4" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.64" x2="442.35" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="588.9" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="590.76" x2="442.35" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="593.49" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.81" x2="442.35" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.21" x2="604.17" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="637.83" x2="669.6" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="314.25" y1="-415.26" y2="-415.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="669.6" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="314.25" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="669.6" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="639.24" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="649.41" x2="669.6" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="656.61" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="655.41" x2="655.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="661.02" x2="669.6" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="665.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="667.83" x2="669.6" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.97" x2="279.9" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.27" x2="285.75" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.05" x2="205.74" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="205.05" x2="263.91" y1="-415.26" y2="-415.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="201.6" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="194.88" x2="263.1" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="196.2" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="196.2" x2="263.1" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="196.2" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="196.2" x2="263.1" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="195.42" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="191.55" x2="263.1" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="196.32" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.7" x2="263.1" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="197.7" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.7" x2="263.1" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="197.7" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="197.7" x2="263.1" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="224.37" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="216.63" x2="197.7" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="201.45" x2="209.55" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="207.15" x2="203.85" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.7" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.7" x2="204.3" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.7" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="206.7" x2="204.3" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="204.3" x2="206.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="208.35" x2="202.65" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.5" x2="190.5" y1="-508.92" y2="-462.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="190.5" x2="183.0" y1="-462.42" y2="-454.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="183.0" x2="183.0" y1="-454.92" y2="-437.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="183.0" x2="183.72" y1="-437.64" y2="-436.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="183.72" x2="180.0" y1="-436.92" y2="-434.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="180.0" x2="180.0" y1="-434.7" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="165.0" y1="-390.72" y2="-433.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="165.0" x2="161.28" y1="-433.2" y2="-436.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="161.28" x2="160.5" y1="-436.92" y2="-437.7" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="160.5" x2="160.5" y1="-437.7" y2="-508.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="110.61" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-510.33" y2="-510.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.92" x2="146.7" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="115.2" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.15" x2="117.15" y1="-496.8" y2="-496.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.27" x2="147.15" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="149.55" x2="117.99" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.71" x2="153.3" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="119.4" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="119.4" x2="119.4" y1="-481.92" y2="-481.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="118.68" x2="153.3" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="117.96" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="117.24" x2="153.3" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="115.11" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="112.83" x2="153.3" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="153.3" x2="110.43" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.64" x2="110.64" y1="-453.54" y2="-453.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="106.02" x2="149.58" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="101.61" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-442.53" y2="-442.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="94.41" x2="148.8" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.8" x2="84.24" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="87.42" x2="87.42" y1="-435.0" y2="-435.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="72.78" x2="72.78" y1="-431.67" y2="-431.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="57.78" x2="57.78" y1="-432.78" y2="-432.78" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="53.97" x2="23.4" y1="-434.28" y2="-434.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="148.8" y1="-429.54" y2="-429.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.12" x2="23.4" y1="-424.77" y2="-424.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="157.8" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="157.8" x2="23.4" y1="-415.26" y2="-415.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="157.8" y1="-410.52" y2="-410.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-408.12" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-408.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-390.72" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="150.0" x2="150.0" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="110.25" x2="23.4" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="110.25" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="43.8" x2="43.8" y1="-438.27" y2="-438.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="42.84" x2="23.4" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="36.87" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="31.44" x2="23.4" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="28.2" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="24.96" x2="23.4" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.58" x2="23.58" y1="-460.05" y2="-460.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="100.41" x2="100.41" y1="-521.34" y2="-521.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="101.76" x2="146.7" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="146.7" x2="106.17" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="94.71" x2="148.35" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="232.65" x2="269.34" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="264.57" x2="234.3" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.3" x2="263.1" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="234.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="234.3" x2="263.1" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="234.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="233.85" x2="263.1" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="263.1" x2="231.45" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="290.28" x2="279.9" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="289.26" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="290.4" x2="279.9" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="295.17" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="304.83" x2="417.99" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="418.38" x2="421.41" y1="-442.83" y2="-439.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="421.41" x2="425.37" y1="-439.83" y2="-438.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.37" x2="429.63" y1="-438.18" y2="-438.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.63" x2="433.59" y1="-438.18" y2="-439.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="433.59" x2="436.62" y1="-439.83" y2="-442.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="436.62" x2="438.24" y1="-442.83" y2="-446.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.24" x2="438.24" y1="-446.79" y2="-451.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.24" x2="436.71" y1="-451.08" y2="-454.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="436.71" x2="438.93" y1="-454.8" y2="-454.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.93" x2="441.75" y1="-454.8" y2="-457.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="441.75" y1="-457.62" y2="-507.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="438.93" y1="-507.66" y2="-510.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.93" x2="416.07" y1="-510.45" y2="-510.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.07" x2="413.25" y1="-510.45" y2="-507.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="413.25" y1="-507.66" y2="-457.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="416.07" y1="-457.62" y2="-454.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.07" x2="418.29" y1="-454.8" y2="-454.8" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="418.29" x2="416.76" y1="-454.8" y2="-451.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.76" x2="416.76" y1="-451.08" y2="-446.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.76" x2="418.38" y1="-446.79" y2="-442.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.76" x2="309.6" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.74" x2="417.69" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="309.72" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="413.25" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="314.25" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="413.25" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="314.25" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="413.25" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="314.82" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="413.25" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="314.25" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="413.25" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.25" x2="314.25" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="415.98" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="439.02" x2="492.18" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="496.92" x2="441.75" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="501.69" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.7" x2="441.75" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="507.24" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="509.82" x2="441.75" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="517.26" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.74" x2="547.26" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.74" x2="553.23" y1="-481.62" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.23" x2="558.33" y1="-481.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.33" x2="562.2" y1="-483.72" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.2" x2="564.3" y1="-487.62" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="564.3" y1="-492.69" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="562.2" y1="-516.18" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="562.2" x2="558.33" y1="-521.25" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.33" x2="553.23" y1="-525.12" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.23" x2="547.74" y1="-527.22" y2="-527.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.74" x2="542.67" y1="-527.22" y2="-525.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.67" x2="538.8" y1="-525.12" y2="-521.25" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.8" x2="536.7" y1="-521.25" y2="-516.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.7" x2="536.7" y1="-516.18" y2="-492.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.7" x2="538.8" y1="-492.69" y2="-487.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.8" x2="542.67" y1="-487.62" y2="-483.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.67" x2="547.74" y1="-483.72" y2="-481.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.74" x2="574.17" y1="-481.83" y2="-481.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="441.75" y1="-477.09" y2="-477.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="574.8" y1="-472.32" y2="-472.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="576.27" x2="441.75" y1="-467.58" y2="-467.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.75" x2="577.74" y1="-462.81" y2="-462.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="579.96" x2="441.75" y1="-458.07" y2="-458.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.31" x2="583.2" y1="-453.3" y2="-453.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="586.44" x2="438.24" y1="-448.56" y2="-448.56" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.01" x2="591.87" y1="-443.79" y2="-443.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="597.84" x2="431.7" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="423.3" x2="279.9" y1="-439.05" y2="-439.05" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="300.0" x2="300.0" y1="-453.42" y2="-487.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="300.0" x2="307.5" y1="-487.86" y2="-486.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="279.9" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.9" x2="285.75" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="188.4" x2="187.2" y1="-420.03" y2="-420.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="195.0" x2="195.0" y1="-411.42" y2="-390.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="285.75" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="203.7" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="277.56" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.79" x2="204.27" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="285.75" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.75" x2="203.7" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="203.7" x2="286.92" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="314.25" x2="342.51" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="339.3" x2="314.25" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="378.9" x2="398.7" y1="-343.62" y2="-343.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="398.7" x2="399.0" y1="-343.62" y2="-343.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="408.66" x2="503.79" y1="-348.69" y2="-348.69" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="502.89" x2="451.92" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="425.1" y1="-343.95" y2="-343.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="429.9" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="425.1" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="425.1" x2="429.9" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="429.9" x2="425.1" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="400.5" x2="378.9" y1="-303.42" y2="-303.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="404.07" x2="506.97" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="525.03" x2="534.06" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="554.28" x2="669.6" y1="-339.18" y2="-339.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="557.91" y1="-334.44" y2="-334.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="559.11" x2="669.6" y1="-329.67" y2="-329.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="560.19" y1="-324.93" y2="-324.93" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.93" x2="669.6" y1="-320.16" y2="-320.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="568.17" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="669.6" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="568.2" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="669.6" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="568.2" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="606.12" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="600.36" y1="-292.74" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="594.12" y1="-288.33" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="589.68" y1="-282.06" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="587.4" y1="-274.41" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="587.4" y1="-265.86" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="589.68" y1="-257.01" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.68" x2="594.12" y1="-248.46" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.12" x2="600.36" y1="-240.81" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="600.36" x2="608.04" y1="-234.54" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="608.04" x2="616.59" y1="-230.13" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="625.41" y1="-227.82" y2="-227.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="633.96" y1="-227.82" y2="-230.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="641.64" y1="-230.13" y2="-234.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="647.88" y1="-234.54" y2="-240.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="652.32" y1="-240.81" y2="-248.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="654.6" y1="-248.46" y2="-257.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="654.6" y1="-257.01" y2="-265.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="652.32" y1="-265.86" y2="-274.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.32" x2="647.88" y1="-274.41" y2="-282.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.88" x2="641.64" y1="-282.06" y2="-288.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.64" x2="633.96" y1="-288.33" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="633.96" x2="625.41" y1="-292.74" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="625.41" x2="616.59" y1="-295.02" y2="-295.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="616.59" x2="608.04" y1="-295.02" y2="-292.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="598.95" x2="568.2" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="594.18" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="591.42" x2="568.2" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="589.2" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.94" x2="568.2" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="587.4" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="568.2" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="588.3" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="589.59" x2="568.2" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="592.2" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="595.59" x2="568.2" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="600.33" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="609.12" x2="568.2" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="568.2" x2="669.6" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="567.93" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="669.6" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="559.56" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="554.79" x2="669.6" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="631.68" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="646.41" x2="669.6" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.63" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="659.43" x2="669.6" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="663.84" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="666.99" x2="669.6" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.27" x2="669.6" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="615.84" x2="550.05" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.28" x2="601.26" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="594.03" x2="540.54" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="535.77" x2="588.09" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="584.37" x2="531.03" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="526.26" x2="581.13" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="578.28" x2="521.52" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.75" x2="576.81" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="575.34" x2="512.01" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="507.24" x2="574.17" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="502.14" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="500.1" x2="441.96" y1="-152.88" y2="-152.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="441.96" y1="-152.88" y2="-109.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="439.17" y1="-109.68" y2="-106.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="439.17" x2="417.48" y1="-106.86" y2="-106.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.48" x2="414.66" y1="-106.86" y2="-109.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="414.66" y1="-109.68" y2="-198.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="413.22" y1="-198.96" y2="-198.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="413.22" x2="411.09" y1="-198.96" y2="-196.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="411.09" x2="407.13" y1="-196.83" y2="-195.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="407.13" x2="402.87" y1="-195.18" y2="-195.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.87" x2="398.91" y1="-195.18" y2="-196.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="398.91" x2="395.88" y1="-196.83" y2="-199.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.88" x2="394.26" y1="-199.83" y2="-203.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.26" x2="394.26" y1="-203.79" y2="-208.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.26" x2="395.88" y1="-208.08" y2="-212.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="395.88" x2="398.91" y1="-212.01" y2="-215.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="398.91" x2="402.87" y1="-215.04" y2="-216.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="402.87" x2="407.13" y1="-216.66" y2="-216.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="407.13" x2="411.09" y1="-216.66" y2="-215.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="411.09" x2="412.77" y1="-215.04" y2="-213.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="412.77" x2="414.06" y1="-213.36" y2="-213.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.06" x2="414.06" y1="-213.36" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.06" x2="428.31" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-213.84" y2="-221.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="418.74" y1="-221.58" y2="-221.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="418.74" x2="417.36" y1="-221.58" y2="-221.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="417.36" x2="416.13" y1="-221.22" y2="-220.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="416.13" x2="415.14" y1="-220.5" y2="-219.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="415.14" x2="414.42" y1="-219.51" y2="-218.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.42" x2="414.06" y1="-218.28" y2="-216.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.06" x2="414.06" y1="-216.9" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.06" x2="428.31" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-213.84" y2="-221.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="437.76" y1="-221.58" y2="-221.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.76" x2="437.82" y1="-221.58" y2="-221.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="437.82" x2="439.05" y1="-221.64" y2="-222.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="439.05" x2="440.43" y1="-222.36" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="440.43" x2="448.56" y1="-222.72" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.56" x2="448.56" y1="-222.72" y2="-211.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.56" x2="451.44" y1="-211.08" y2="-211.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="464.25" y1="-211.08" y2="-211.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.25" x2="464.25" y1="-211.08" y2="-218.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.25" x2="463.89" y1="-218.04" y2="-219.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.89" x2="463.17" y1="-219.42" y2="-220.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.17" x2="462.18" y1="-220.65" y2="-221.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="462.18" x2="460.95" y1="-221.64" y2="-222.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="460.95" x2="459.57" y1="-222.36" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="459.57" x2="451.44" y1="-222.72" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="451.44" y1="-222.72" y2="-211.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="451.44" y1="-211.08" y2="-208.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="464.25" y1="-208.2" y2="-208.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.25" x2="464.25" y1="-208.2" y2="-201.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.25" x2="463.89" y1="-201.27" y2="-199.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.89" x2="463.17" y1="-199.89" y2="-198.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.17" x2="462.54" y1="-198.66" y2="-198.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="462.54" x2="463.47" y1="-198.0" y2="-197.07" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.47" x2="467.37" y1="-197.07" y2="-198.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="467.37" x2="471.63" y1="-198.66" y2="-198.66" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="471.63" x2="475.59" y1="-198.66" y2="-197.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.59" x2="478.62" y1="-197.04" y2="-194.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="478.62" x2="480.24" y1="-194.01" y2="-190.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="480.24" x2="480.24" y1="-190.08" y2="-185.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="480.24" x2="478.62" y1="-185.79" y2="-181.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="478.62" x2="475.59" y1="-181.83" y2="-178.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.59" x2="471.63" y1="-178.83" y2="-177.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="471.63" x2="467.37" y1="-177.18" y2="-177.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="467.37" x2="463.65" y1="-177.18" y2="-178.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.65" x2="463.65" y1="-178.71" y2="-177.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.65" x2="461.07" y1="-177.54" y2="-174.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="461.07" x2="491.37" y1="-174.96" y2="-174.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="491.37" x2="523.8" y1="-174.96" y2="-207.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.8" y1="-207.42" y2="-273.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.44" y1="-273.18" y2="-272.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.44" x2="523.2" y1="-272.82" y2="-272.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.2" x2="523.2" y1="-272.73" y2="-263.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.2" x2="522.09" y1="-263.01" y2="-260.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="522.09" x2="520.08" y1="-260.34" y2="-258.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="520.08" x2="506.58" y1="-258.33" y2="-244.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="506.58" x2="503.94" y1="-244.83" y2="-243.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.94" x2="475.2" y1="-243.72" y2="-243.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.2" x2="475.2" y1="-243.72" y2="-240.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.2" x2="472.38" y1="-240.09" y2="-237.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="472.38" x2="469.92" y1="-237.27" y2="-237.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.92" x2="469.92" y1="-237.27" y2="-233.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.92" x2="468.81" y1="-233.73" y2="-231.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="468.81" x2="463.59" y1="-231.06" y2="-225.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.59" x2="463.59" y1="-225.84" y2="-225.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.59" x2="461.58" y1="-225.84" y2="-223.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="461.58" x2="458.94" y1="-223.83" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="458.94" x2="398.97" y1="-222.72" y2="-222.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="398.97" x2="383.97" y1="-222.72" y2="-207.72" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="383.97" x2="381.33" y1="-207.72" y2="-206.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="381.33" x2="356.34" y1="-206.64" y2="-206.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="356.34" y1="-206.64" y2="-167.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="356.91" y1="-167.97" y2="-168.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.91" x2="360.87" y1="-168.54" y2="-170.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.87" x2="365.13" y1="-170.16" y2="-170.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.13" x2="369.09" y1="-170.16" y2="-168.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="369.09" x2="372.12" y1="-168.54" y2="-165.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="372.12" x2="373.74" y1="-165.51" y2="-161.58" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="373.74" x2="373.74" y1="-161.58" y2="-157.29" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="373.74" x2="372.12" y1="-157.29" y2="-153.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="372.12" x2="369.09" y1="-153.33" y2="-150.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="369.09" x2="365.13" y1="-150.33" y2="-148.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.13" x2="360.87" y1="-148.68" y2="-148.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="360.87" x2="356.91" y1="-148.68" y2="-150.33" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.91" x2="356.34" y1="-150.33" y2="-150.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="356.34" y1="-150.9" y2="-126.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="356.58" y1="-126.54" y2="-126.15" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.58" x2="356.94" y1="-126.15" y2="-124.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.94" x2="356.94" y1="-124.77" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.94" x2="342.69" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="342.69" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="356.94" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.94" x2="356.94" y1="-121.71" y2="-118.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.94" x2="356.58" y1="-118.62" y2="-117.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.58" x2="356.34" y1="-117.27" y2="-116.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="356.34" y1="-116.85" y2="-109.68" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="353.52" y1="-109.68" y2="-106.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="353.52" x2="331.83" y1="-106.86" y2="-106.86" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="331.83" x2="330.42" y1="-106.86" y2="-108.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="330.42" x2="329.97" y1="-108.3" y2="-108.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.97" x2="328.62" y1="-108.03" y2="-107.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.62" x2="321.66" y1="-107.67" y2="-107.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="321.66" y1="-107.67" y2="-120.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="318.78" y1="-120.48" y2="-120.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="318.78" y1="-120.48" y2="-107.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="311.82" y1="-107.67" y2="-107.67" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.82" x2="310.47" y1="-107.67" y2="-108.03" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.47" x2="309.24" y1="-108.03" y2="-108.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.24" x2="308.58" y1="-108.75" y2="-109.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="308.58" x2="307.44" y1="-109.41" y2="-108.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="307.44" x2="288.12" y1="-108.27" y2="-108.27" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="288.12" x2="285.3" y1="-108.27" y2="-111.09" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="285.3" y1="-111.09" y2="-114.54" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="283.59" y1="-114.54" y2="-112.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="283.59" x2="279.63" y1="-112.83" y2="-111.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.63" x2="275.37" y1="-111.18" y2="-111.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="275.37" x2="271.59" y1="-111.18" y2="-112.74" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="285.45" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="277.5" x2="297.78" y1="-121.92" y2="-121.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="308.58" x2="307.62" y1="-134.46" y2="-135.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="307.62" x2="307.95" y1="-135.42" y2="-135.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="307.95" x2="309.18" y1="-135.51" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.18" x2="310.17" y1="-136.2" y2="-137.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.17" x2="310.89" y1="-137.22" y2="-138.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.89" x2="311.25" y1="-138.45" y2="-139.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.25" x2="311.25" y1="-139.83" y2="-146.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.25" x2="298.44" y1="-146.76" y2="-146.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="298.44" x2="298.44" y1="-146.76" y2="-149.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="298.44" x2="311.25" y1="-149.64" y2="-149.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.25" x2="311.25" y1="-149.64" y2="-156.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.25" x2="310.89" y1="-156.6" y2="-157.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.89" x2="310.17" y1="-157.98" y2="-159.21" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.17" x2="309.54" y1="-159.21" y2="-159.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.54" x2="310.65" y1="-159.84" y2="-160.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.65" x2="310.65" y1="-160.98" y2="-168.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.65" x2="329.04" y1="-168.24" y2="-168.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="329.04" y1="-168.24" y2="-164.43" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="329.04" y1="-164.43" y2="-136.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="328.62" y1="-136.08" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.62" x2="321.66" y1="-136.2" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="321.66" y1="-136.2" y2="-123.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="328.44" y1="-123.36" y2="-123.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.44" x2="328.44" y1="-123.36" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.44" x2="342.69" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="342.18" y1="-121.71" y2="-121.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.18" x2="320.22" y1="-121.2" y2="-121.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="321.66" y1="-120.48" y2="-123.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="318.78" y1="-123.36" y2="-123.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="318.78" y1="-123.36" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="311.82" y1="-136.2" y2="-136.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.82" x2="310.47" y1="-136.2" y2="-135.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.47" x2="309.24" y1="-135.81" y2="-135.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="309.24" x2="308.58" y1="-135.12" y2="-134.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="308.31" x2="308.85" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.16" x2="329.04" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="311.25" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="311.25" x2="329.04" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="310.59" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="310.65" x2="329.04" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="329.04" x2="310.65" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="301.8" x2="297.0" y1="-175.44" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="297.0" x2="279.72" y1="-170.64" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="279.72" x2="276.0" y1="-170.64" y2="-166.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="276.0" x2="276.0" y1="-166.92" y2="-151.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="276.0" x2="270.0" y1="-151.92" y2="-145.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="270.0" x2="260.88" y1="-145.92" y2="-145.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="273.24" x2="282.84" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.75" x2="278.49" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="282.57" x2="295.56" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="298.44" x2="329.04" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="343.35" y1="-160.08" y2="-159.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="343.35" x2="363.0" y1="-159.42" y2="-159.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.4" x2="356.34" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="414.66" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="414.66" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="414.66" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="410.4" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="399.6" x2="356.34" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="395.28" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="394.26" x2="356.34" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="387.06" x2="395.4" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="391.8" x2="400.17" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="396.57" x2="415.95" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.06" x2="409.83" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="405.21" x2="405.0" y1="-206.16" y2="-205.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="405.21" x2="428.31" y1="-206.16" y2="-206.16" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="445.83" y1="-213.84" y2="-213.84" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="445.83" x2="450.0" y1="-213.84" y2="-209.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="523.8" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="464.25" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="463.38" x2="523.8" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="462.81" y1="-225.06" y2="-225.06" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="467.58" x2="523.8" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="469.92" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="474.45" x2="523.8" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="504.81" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="510.6" x2="523.8" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="515.34" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="520.11" x2="523.8" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.2" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.2" x2="523.8" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="523.8" x2="523.2" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.8" x2="452.37" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="450.06" x2="508.8" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="504.51" x2="473.85" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="475.2" x2="499.74" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="546.27" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="545.73" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="546.27" y1="-296.4" y2="-296.4" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="545.73" y1="-299.19" y2="-299.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="545.73" y1="-299.19" y2="-312.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="544.92" y1="-312.63" y2="-312.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="544.92" x2="542.79" y1="-312.63" y2="-312.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="542.79" x2="540.75" y1="-312.3" y2="-311.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="540.75" x2="538.8" y1="-311.64" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.8" x2="538.2" y1="-310.65" y2="-310.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="538.2" y1="-310.23" y2="-318.18" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="538.56" y1="-318.18" y2="-317.82" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.56" x2="543.39" y1="-317.82" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="543.39" x2="548.61" y1="-315.81" y2="-315.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.61" x2="548.85" y1="-315.81" y2="-315.9" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="548.85" x2="553.8" y1="-315.9" y2="-310.95" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="553.8" y1="-310.95" y2="-310.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.8" x2="553.2" y1="-310.23" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.2" x2="551.25" y1="-310.65" y2="-311.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="551.25" x2="549.21" y1="-311.64" y2="-312.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.21" x2="547.08" y1="-312.3" y2="-312.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="547.08" x2="546.27" y1="-312.63" y2="-312.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="546.27" y1="-312.63" y2="-299.19" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="545.73" y1="-301.14" y2="-301.14" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="545.73" x2="546.27" y1="-305.91" y2="-305.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="546.27" x2="545.73" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="549.33" x2="538.2" y1="-315.42" y2="-315.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.2" x2="538.8" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="553.2" x2="553.8" y1="-310.65" y2="-310.65" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.0" x2="546.0" y1="-313.92" y2="-328.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.0" x2="561.0" y1="-313.92" y2="-222.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.0" x2="498.66" y1="-222.42" y2="-160.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="498.66" x2="428.31" y1="-160.08" y2="-160.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="494.34" y1="-167.76" y2="-167.76" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="494.34" x2="531.0" y1="-167.76" y2="-204.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="522.45" x2="464.25" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="464.25" x2="517.68" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="512.94" x2="476.07" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="479.52" x2="508.17" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="503.43" x2="480.24" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="478.8" x2="498.66" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="493.92" x2="472.44" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="466.56" x2="463.62" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="469.5" x2="450.72" y1="-187.92" y2="-187.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="450.72" x2="450.0" y1="-187.92" y2="-187.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="448.56" x2="451.44" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="451.44" x2="448.56" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-220.32" y2="-220.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="428.31" x2="428.31" y1="-215.55" y2="-215.55" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.95" x2="346.77" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="346.77" x2="427.2" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="441.72" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.72" x2="438.84" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="438.84" x2="441.72" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="552.57" x2="553.8" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="635.88" x2="669.6" y1="-291.63" y2="-291.63" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="643.05" y1="-286.89" y2="-286.89" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="647.82" x2="669.6" y1="-282.12" y2="-282.12" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="650.58" y1="-277.38" y2="-277.38" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="652.8" x2="669.6" y1="-272.61" y2="-272.61" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.06" y1="-267.87" y2="-267.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-263.1" y2="-263.1" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-258.36" y2="-258.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="653.7" x2="669.6" y1="-253.59" y2="-253.59" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="652.41" y1="-248.85" y2="-248.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="649.8" x2="669.6" y1="-244.08" y2="-244.08" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="646.41" y1="-239.34" y2="-239.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="641.67" x2="669.6" y1="-234.57" y2="-234.57" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="632.88" y1="-229.83" y2="-229.83" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.17" x2="558.54" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.3" x2="574.23" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="575.7" x2="561.3" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="516.03" x2="441.96" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="441.96" x2="449.61" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="360.12" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="365.88" x2="414.66" y1="-148.98" y2="-148.98" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="372.27" y1="-153.75" y2="-153.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="373.74" x2="414.66" y1="-158.49" y2="-158.49" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="373.05" y1="-163.26" y2="-163.26" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="369.6" x2="414.66" y1="-168.0" y2="-168.0" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-139.47" y2="-139.47" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="414.66" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.82" x2="414.66" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.94" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="356.34" x2="414.66" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="414.66" x2="356.34" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="328.44" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.44" x2="328.44" y1="-121.71" y2="-120.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="328.44" x2="321.66" y1="-120.48" y2="-120.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="318.78" y1="-120.45" y2="-120.45" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="321.66" y1="-115.71" y2="-115.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="318.78" y1="-110.94" y2="-110.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="321.66" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="321.66" x2="318.78" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="318.78" x2="321.66" y1="-134.73" y2="-134.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="342.69" y1="-121.71" y2="-121.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="342.69" x2="301.8" y1="-175.44" y2="-175.44" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="296.7" x2="297.0" y1="-175.44" y2="-170.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="285.3" x2="271.59" y1="-182.28" y2="-182.28" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.59" x2="277.5" y1="-177.51" y2="-177.51" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.65" x2="271.59" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="270.0" x2="305.73" y1="-187.02" y2="-187.02" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="300.96" x2="143.7" y1="-191.79" y2="-191.79" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="136.98" x2="136.2" y1="-172.77" y2="-172.77" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="129.0" x2="129.0" y1="-159.42" y2="-241.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="129.0" x2="114.0" y1="-241.92" y2="-256.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="129.0" x2="141.0" y1="-159.42" y2="-147.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="141.0" x2="148.62" y1="-147.42" y2="-147.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="148.62" x2="150.12" y1="-147.42" y2="-145.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="88.92" x2="88.92" y1="-106.5" y2="-106.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="261.45" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="261.45" x2="267.51" y1="-194.52" y2="-194.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="267.51" x2="268.89" y1="-194.52" y2="-194.91" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="268.89" x2="270.12" y1="-194.91" y2="-195.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="270.12" x2="271.11" y1="-195.6" y2="-196.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.11" x2="271.83" y1="-196.62" y2="-197.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.83" x2="272.19" y1="-197.85" y2="-199.23" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.19" x2="272.19" y1="-199.23" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.19" x2="261.45" y1="-206.88" y2="-206.88" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="261.45" x2="261.45" y1="-206.88" y2="-194.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="261.45" x2="260.34" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="260.34" x2="261.45" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="272.19" x2="286.71" y1="-206.04" y2="-206.04" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="291.45" x2="272.19" y1="-201.3" y2="-201.3" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="271.05" x2="296.22" y1="-196.53" y2="-196.53" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="281.94" x2="272.19" y1="-210.81" y2="-210.81" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="442.35" x2="588.6" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="587.4" x2="442.35" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="427.5" x2="427.5" y1="-448.92" y2="-482.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="501.66" x2="512.19" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="508.23" x2="506.43" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="528.81" x2="542.19" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="538.23" x2="532.77" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.7" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.7" x2="534.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.7" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="536.7" x2="534.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="534.3" x2="536.7" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="537.24" x2="533.76" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="531.18" x2="539.82" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="561.18" x2="574.17" y1="-486.6" y2="-486.6" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="574.74" x2="563.76" y1="-491.34" y2="-491.34" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="576.21" y1="-496.11" y2="-496.11" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="577.68" x2="564.3" y1="-500.85" y2="-500.85" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="579.84" y1="-505.62" y2="-505.62" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="583.08" x2="564.3" y1="-510.36" y2="-510.36" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="564.3" x2="586.32" y1="-515.13" y2="-515.13" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="591.66" x2="562.77" y1="-519.87" y2="-519.87" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="558.81" x2="597.63" y1="-524.64" y2="-524.64" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="644.19" x2="669.6" y1="-405.75" y2="-405.75" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="648.51" y1="-401.01" y2="-401.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.24" x2="669.6" y1="-396.24" y2="-396.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.1" y1="-391.5" y2="-391.5" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.36" x2="669.6" y1="-386.73" y2="-386.73" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="654.6" y1="-381.99" y2="-381.99" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="654.6" x2="669.6" y1="-377.22" y2="-377.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="653.4" y1="-372.48" y2="-372.48" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="651.87" x2="669.6" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="649.14" y1="-362.97" y2="-362.97" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="645.3" x2="669.6" y1="-358.2" y2="-358.2" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="669.6" x2="639.75" y1="-353.46" y2="-353.46" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="513.3" x2="510.3" y1="-144.24" y2="-144.24" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="509.16" x2="513.3" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="487.65" x2="484.35" y1="-125.22" y2="-125.22" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="485.49" x2="486.51" y1="-129.96" y2="-129.96" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="25.68" x2="23.4" y1="-367.71" y2="-367.71" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="4.8" x1="23.4" x2="26.28" y1="-386.73" y2="-386.73" /><circle cx="124.5" cy="-346.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="195.0" cy="-411.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="300.0" cy="-453.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="349.5" cy="-394.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="399.0" cy="-343.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="400.5" cy="-303.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="406.5" cy="-262.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="405.0" cy="-205.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="363.0" cy="-159.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="277.5" cy="-121.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="456.0" cy="-135.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="469.5" cy="-187.92" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="475.5" cy="-297.42" fill="rgb(183, 115, 51)" r="5.94" /><circle cx="427.5" cy="-448.92" fill="rgb(183, 115, 51)" r="5.94" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="349.5" x2="340.44" y1="-394.92" y2="-404.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="340.44" x2="300.0" y1="-404.01" y2="-404.01" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="300.0" x2="298.56" y1="-404.01" y2="-405.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="298.56" x2="285.0" y1="-405.42" y2="-405.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="285.0" x2="271.5" y1="-405.42" y2="-418.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="271.5" x2="271.5" y1="-418.92" y2="-514.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="271.5" x2="279.0" y1="-514.92" y2="-522.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="279.0" x2="492.0" y1="-522.42" y2="-522.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="492.0" x2="510.0" y1="-522.42" y2="-504.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="510.0" x2="520.5" y1="-504.42" y2="-504.42" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="427.5" x2="421.56" y1="-329.46" y2="-323.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="421.56" x2="378.9" y1="-323.52" y2="-323.52" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="378.96" x2="378.9" y1="-283.41" y2="-283.32" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="378.96" x2="427.5" y1="-283.41" y2="-283.41" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="406.5" x2="379.2" y1="-262.92" y2="-262.92" /><line stroke="rgb(183, 115, 51)" stroke-linecap="round" stroke-width="7.2" x1="379.2" x2="378.9" y1="-262.92" y2="-263.22" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="144.9" y="-331.32" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="159.9" y="-331.32" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="174.9" y="-331.32" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="189.9" y="-331.32" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="189.9" y="-403.92" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="174.9" y="-403.92" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="159.9" y="-403.92" /><rect fill="rgb(127, 127, 191)" height="26.4" width="10.2" x="144.9" y="-403.92" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-217.395" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-209.715" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-202.035" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-194.355" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-186.675" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-178.995" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-171.315" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-163.635" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-155.955" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-148.305" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-140.625" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-132.945" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-125.265" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="332.625" y="-117.585" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-117.585" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-125.265" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-132.945" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-140.625" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-148.305" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-155.955" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-163.635" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-171.315" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-178.995" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-186.675" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-194.355" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-202.035" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-209.715" /><rect fill="rgb(127, 127, 191)" height="7.11" width="20.13" x="418.245" y="-217.395" /><rect fill="rgb(127, 127, 191)" height="129.96" width="125.34" x="217.83" y="-368.4" /><rect fill="rgb(127, 127, 191)" height="15.0" width="27.9" x="364.95" y="-310.92" /><rect fill="rgb(127, 127, 191)" height="15.0" width="27.9" x="364.95" y="-331.02" /><rect fill="rgb(127, 127, 191)" height="15.0" width="27.9" x="364.95" y="-351.12" /><rect fill="rgb(127, 127, 191)" height="15.0" width="27.9" x="364.95" y="-290.82" /><rect fill="rgb(127, 127, 191)" height="15.0" width="27.9" x="364.95" y="-270.72" /><rect fill="rgb(127, 127, 191)" height="49.65" width="21.3" x="289.35" y="-428.835" /><rect fill="rgb(127, 127, 191)" height="49.65" width="21.3" x="289.35" y="-512.685" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="114.435" y="-398.52" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="114.435" y="-376.08" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="286.935" y="-179.52" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="286.935" y="-157.08" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="439.935" y="-196.08" /><rect fill="rgb(127, 127, 191)" height="17.76" width="20.13" x="439.935" y="-218.52" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="431.4" y="-260.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="453.84" y="-260.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="516.9" y="-145.485" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="539.34" y="-145.485" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="311.34" y="-131.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="288.9" y="-131.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="116.34" y="-296.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="93.9" y="-296.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="152.4" y="-446.985" /><rect fill="rgb(127, 127, 191)" height="20.13" width="17.76" x="174.84" y="-446.985" /><rect fill="rgb(127, 127, 191)" height="48.45" width="21.3" x="416.85" y="-506.865" /><rect fill="rgb(127, 127, 191)" height="48.45" width="21.3" x="416.85" y="-406.455" /><rect fill="rgb(127, 127, 191)" height="24.84" width="42.57" x="406.215" y="-341.88" /><rect fill="rgb(127, 127, 191)" height="24.84" width="42.57" x="406.215" y="-295.83" /><circle cx="516.0" cy="-283.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-298.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-328.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="516.0" cy="-313.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="516.0" cy="-343.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="546.0" cy="-358.92" fill="rgb(127, 127, 191)" r="9.51" /><circle cx="621.0" cy="-381.42" fill="rgb(127, 127, 191)" r="20.4" /><circle cx="621.0" cy="-261.42" fill="rgb(127, 127, 191)" r="20.4" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="143.01" y="-123.12" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="143.01" y="-154.62" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="143.01" y="-184.62" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="143.01" y="-216.12" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="253.77" y="-216.12" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="253.77" y="-184.62" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="253.77" y="-154.62" /><rect fill="rgb(127, 127, 191)" height="17.4" width="14.22" x="253.77" y="-123.12" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-256.92" y2="-256.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="36.0" x2="54.0" y1="-286.92" y2="-286.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-316.92" y2="-316.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="36.0" x2="54.0" y1="-346.92" y2="-346.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="54.0" x2="36.0" y1="-376.92" y2="-376.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="160.5" x2="160.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="190.5" x2="190.5" y1="-517.92" y2="-499.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="220.5" x2="220.5" y1="-499.92" y2="-517.92" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="520.5" x2="520.5" y1="-513.42" y2="-495.42" /><line stroke="rgb(127, 127, 191)" stroke-linecap="round" stroke-width="20.4" x1="550.5" x2="550.5" y1="-495.42" y2="-513.42" /><rect fill="rgb(127, 127, 191)" height="16.56" width="16.56" x="490.11" y="-143.7" /><rect fill="rgb(127, 127, 191)" height="16.56" width="16.56" x="465.33" y="-143.7" /><circle cx="624.0" cy="-151.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="624.0" cy="-481.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="69.0" cy="-481.92" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="70.5" cy="-153.42" fill="rgb(127, 127, 191)" r="20.1" /><circle cx="277.5" cy="-121.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="363.0" cy="-159.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="405.0" cy="-205.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="469.5" cy="-187.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="456.0" cy="-135.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="406.5" cy="-262.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="400.5" cy="-303.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="399.0" cy="-343.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="349.5" cy="-394.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="300.0" cy="-453.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="195.0" cy="-411.42" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="124.5" cy="-346.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="427.5" cy="-448.92" fill="rgb(127, 127, 191)" r="7.14" /><circle cx="475.5" cy="-297.42" fill="rgb(127, 127, 191)" r="7.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="9.0" y1="-91.92" y2="-541.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="9.0" x2="684.0" y1="-541.92" y2="-541.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="684.0" y1="-541.92" y2="-91.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="684.0" x2="9.0" y1="-91.92" y2="-91.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.6" x2="51.66" y1="-153.42" y2="-154.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.84" y1="-154.92" y2="-156.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="52.14" y1="-156.42" y2="-157.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="52.56" y1="-157.89" y2="-159.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="53.07" y1="-159.33" y2="-160.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="53.7" y1="-160.74" y2="-162.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="54.45" y1="-162.09" y2="-163.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="55.29" y1="-163.41" y2="-164.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="56.25" y1="-164.64" y2="-165.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="57.27" y1="-165.81" y2="-166.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="58.38" y1="-166.92" y2="-167.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="59.58" y1="-167.94" y2="-168.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="60.84" y1="-168.84" y2="-169.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="62.16" y1="-169.65" y2="-170.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="63.54" y1="-170.37" y2="-171.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="64.95" y1="-171.0" y2="-171.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="66.39" y1="-171.48" y2="-171.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.89" y1="-171.87" y2="-172.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="69.36" y1="-172.14" y2="-172.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="70.89" y1="-172.29" y2="-172.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.39" y1="-172.32" y2="-172.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="73.86" y1="-172.23" y2="-172.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="75.33" y1="-172.02" y2="-171.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="76.77" y1="-171.69" y2="-171.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="78.15" y1="-171.24" y2="-170.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="79.5" y1="-170.7" y2="-170.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="80.79" y1="-170.04" y2="-169.26" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="82.02" y1="-169.26" y2="-168.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="83.19" y1="-168.39" y2="-167.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="84.27" y1="-167.43" y2="-166.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="85.23" y1="-166.38" y2="-165.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="86.13" y1="-165.24" y2="-164.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.94" y1="-164.04" y2="-162.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="87.63" y1="-162.75" y2="-161.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="88.2" y1="-161.43" y2="-160.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="88.68" y1="-160.05" y2="-158.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="89.04" y1="-158.61" y2="-157.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="89.28" y1="-157.14" y2="-155.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.4" y1="-155.67" y2="-154.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.4" y1="-154.17" y2="-152.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.4" x2="89.28" y1="-152.67" y2="-151.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.28" x2="89.04" y1="-151.17" y2="-149.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="89.04" x2="88.68" y1="-149.7" y2="-148.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.68" x2="88.2" y1="-148.23" y2="-146.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="88.2" x2="87.63" y1="-146.79" y2="-145.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.63" x2="86.94" y1="-145.41" y2="-144.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.94" x2="86.13" y1="-144.09" y2="-142.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.23" y1="-142.8" y2="-141.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.23" x2="84.27" y1="-141.6" y2="-140.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.27" x2="83.19" y1="-140.46" y2="-139.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.19" x2="82.02" y1="-139.41" y2="-138.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.02" x2="80.79" y1="-138.45" y2="-137.58" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.79" x2="79.5" y1="-137.58" y2="-136.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.5" x2="78.15" y1="-136.8" y2="-136.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.15" x2="76.77" y1="-136.14" y2="-135.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.77" x2="75.33" y1="-135.6" y2="-135.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.33" x2="73.86" y1="-135.15" y2="-134.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.86" x2="72.39" y1="-134.82" y2="-134.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.39" x2="70.89" y1="-134.61" y2="-134.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.36" y1="-134.52" y2="-134.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.36" x2="67.89" y1="-134.55" y2="-134.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.89" x2="66.39" y1="-134.7" y2="-134.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.95" y1="-134.97" y2="-135.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.95" x2="63.54" y1="-135.36" y2="-135.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.54" x2="62.16" y1="-135.84" y2="-136.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.16" x2="60.84" y1="-136.47" y2="-137.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.84" x2="59.58" y1="-137.19" y2="-138.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.58" x2="58.38" y1="-138.0" y2="-138.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.38" x2="57.27" y1="-138.9" y2="-139.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="57.27" x2="56.25" y1="-139.92" y2="-141.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.25" x2="55.29" y1="-141.03" y2="-142.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.29" x2="54.45" y1="-142.2" y2="-143.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.45" x2="53.7" y1="-143.43" y2="-144.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.7" x2="53.07" y1="-144.75" y2="-146.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.07" x2="52.56" y1="-146.1" y2="-147.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.56" x2="52.14" y1="-147.51" y2="-148.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.14" x2="51.84" y1="-148.95" y2="-150.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.84" x2="51.66" y1="-150.42" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.66" x2="51.6" y1="-151.92" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.1" x2="50.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="51.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="51.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="52.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="52.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="53.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="54.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="55.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="56.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="58.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="59.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="60.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="62.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="63.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="64.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="66.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="67.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="69.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="70.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="72.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="73.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="75.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="76.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="78.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="79.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="80.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="81.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="82.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="83.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="84.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="85.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="86.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="86.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="87.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="87.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.9" x2="87.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.78" x2="87.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.54" x2="87.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="87.18" x2="86.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.7" x2="86.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="86.13" x2="85.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="85.44" x2="84.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="84.63" x2="83.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="83.73" x2="82.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="82.77" x2="81.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="81.69" x2="80.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="80.52" x2="79.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="79.29" x2="78.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="78.0" x2="76.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="76.65" x2="75.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="75.27" x2="73.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="73.83" x2="72.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="72.36" x2="70.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="70.89" x2="69.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="69.39" x2="67.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="67.86" x2="66.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="66.39" x2="64.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="64.89" x2="63.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="63.45" x2="62.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="62.04" x2="60.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="60.66" x2="59.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="59.34" x2="58.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="58.08" x2="56.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="56.88" x2="55.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="55.77" x2="54.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="54.75" x2="53.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="53.79" x2="52.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.95" x2="52.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="52.2" x2="51.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.57" x2="51.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="51.06" x2="50.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.64" x2="50.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.34" x2="50.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="50.16" x2="50.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-381.42" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-382.92" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-384.42" y2="-385.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-385.89" y2="-387.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-387.36" y2="-388.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-388.77" y2="-390.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-390.15" y2="-391.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-391.44" y2="-392.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-392.7" y2="-393.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-393.9" y2="-395.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-395.01" y2="-396.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-396.03" y2="-396.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-396.96" y2="-397.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-397.8" y2="-398.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-398.52" y2="-399.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-399.15" y2="-399.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-399.69" y2="-400.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-400.08" y2="-400.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-400.38" y2="-400.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-400.56" y2="-400.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-400.62" y2="-400.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-400.56" y2="-400.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-400.38" y2="-400.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-400.08" y2="-399.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-399.69" y2="-399.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-399.15" y2="-398.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-398.52" y2="-397.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-397.8" y2="-396.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-396.96" y2="-396.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-396.03" y2="-395.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-395.01" y2="-393.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-393.9" y2="-392.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-392.7" y2="-391.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-391.44" y2="-390.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-390.15" y2="-388.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-388.77" y2="-387.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-387.36" y2="-385.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-385.89" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-384.42" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-382.92" y2="-381.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-381.42" y2="-379.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-379.92" y2="-378.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-378.42" y2="-376.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-376.95" y2="-375.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-375.48" y2="-374.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-374.07" y2="-372.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-372.69" y2="-371.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-371.4" y2="-370.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-370.14" y2="-368.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-368.94" y2="-367.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-367.83" y2="-366.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-366.81" y2="-365.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-365.88" y2="-365.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-365.04" y2="-364.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-364.32" y2="-363.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-363.69" y2="-363.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-363.15" y2="-362.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-362.76" y2="-362.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-362.46" y2="-362.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-362.28" y2="-362.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-362.22" y2="-362.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-362.28" y2="-362.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-362.46" y2="-362.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-362.76" y2="-363.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-363.15" y2="-363.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-363.69" y2="-364.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-364.32" y2="-365.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-365.04" y2="-365.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-365.88" y2="-366.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-366.81" y2="-367.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-367.83" y2="-368.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-368.94" y2="-370.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-370.14" y2="-371.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-371.4" y2="-372.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-372.69" y2="-374.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-374.07" y2="-375.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-375.48" y2="-376.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-376.95" y2="-378.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-378.42" y2="-379.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-379.92" y2="-381.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-481.92" y2="-483.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-483.42" y2="-484.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-484.92" y2="-486.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-486.39" y2="-487.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-487.83" y2="-489.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-489.24" y2="-490.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-490.59" y2="-491.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-491.91" y2="-493.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-493.14" y2="-494.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-494.31" y2="-495.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-495.42" y2="-496.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-496.44" y2="-497.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-497.34" y2="-498.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-498.15" y2="-498.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-498.87" y2="-499.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-499.5" y2="-499.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-499.98" y2="-500.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-500.37" y2="-500.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-500.64" y2="-500.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-500.79" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-500.82" y2="-500.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-500.73" y2="-500.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-500.52" y2="-500.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-500.19" y2="-499.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-499.74" y2="-499.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-499.2" y2="-498.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-498.54" y2="-497.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-497.76" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-496.89" y2="-495.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-495.93" y2="-494.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-494.88" y2="-493.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-493.74" y2="-492.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-492.54" y2="-491.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-491.25" y2="-489.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-489.93" y2="-488.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-488.55" y2="-487.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-487.11" y2="-485.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-485.64" y2="-484.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-484.17" y2="-482.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-482.67" y2="-481.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-481.17" y2="-479.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-479.67" y2="-478.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-478.2" y2="-476.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-476.73" y2="-475.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-475.29" y2="-473.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-473.91" y2="-472.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-472.59" y2="-471.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-471.3" y2="-470.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-470.1" y2="-468.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-468.96" y2="-467.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-467.91" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-466.95" y2="-466.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-466.08" y2="-465.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-465.3" y2="-464.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-464.64" y2="-464.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-464.1" y2="-463.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-463.65" y2="-463.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-463.32" y2="-463.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-463.11" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-463.02" y2="-463.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-463.05" y2="-463.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-463.2" y2="-463.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-463.47" y2="-463.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-463.86" y2="-464.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-464.34" y2="-464.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-464.97" y2="-465.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-465.69" y2="-466.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-466.5" y2="-467.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-467.4" y2="-468.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-468.42" y2="-469.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-469.53" y2="-470.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-470.7" y2="-471.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-471.93" y2="-473.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-473.25" y2="-474.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-474.6" y2="-476.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-476.01" y2="-477.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-477.45" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-478.92" y2="-480.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-480.42" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.8" x2="601.86" y1="-261.42" y2="-262.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="602.04" y1="-262.92" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="602.34" y1="-264.42" y2="-265.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.73" y1="-265.89" y2="-267.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="603.27" y1="-267.36" y2="-268.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="603.9" y1="-268.77" y2="-270.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="604.62" y1="-270.15" y2="-271.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="605.46" y1="-271.44" y2="-272.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="606.39" y1="-272.7" y2="-273.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="607.41" y1="-273.9" y2="-275.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="608.52" y1="-275.01" y2="-276.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="609.72" y1="-276.03" y2="-276.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="610.98" y1="-276.96" y2="-277.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="612.27" y1="-277.8" y2="-278.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="613.65" y1="-278.52" y2="-279.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="615.06" y1="-279.15" y2="-279.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="616.53" y1="-279.69" y2="-280.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="618.0" y1="-280.08" y2="-280.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="619.5" y1="-280.38" y2="-280.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="621.0" y1="-280.56" y2="-280.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="622.5" y1="-280.62" y2="-280.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="624.0" y1="-280.56" y2="-280.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="625.47" y1="-280.38" y2="-280.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="626.94" y1="-280.08" y2="-279.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="628.35" y1="-279.69" y2="-279.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="629.73" y1="-279.15" y2="-278.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="631.02" y1="-278.52" y2="-277.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="632.28" y1="-277.8" y2="-276.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="633.48" y1="-276.96" y2="-276.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="634.59" y1="-276.03" y2="-275.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="635.61" y1="-275.01" y2="-273.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="636.54" y1="-273.9" y2="-272.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="637.38" y1="-272.7" y2="-271.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="638.1" y1="-271.44" y2="-270.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="638.73" y1="-270.15" y2="-268.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.27" y1="-268.77" y2="-267.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="639.66" y1="-267.36" y2="-265.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.96" y1="-265.89" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="640.14" y1="-264.42" y2="-262.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="640.2" y1="-262.92" y2="-261.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.2" x2="640.14" y1="-261.42" y2="-259.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.14" x2="639.96" y1="-259.92" y2="-258.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.96" x2="639.66" y1="-258.42" y2="-256.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.66" x2="639.27" y1="-256.95" y2="-255.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.27" x2="638.73" y1="-255.48" y2="-254.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="638.1" y1="-254.07" y2="-252.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.1" x2="637.38" y1="-252.69" y2="-251.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.38" x2="636.54" y1="-251.4" y2="-250.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.54" x2="635.61" y1="-250.14" y2="-248.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.61" x2="634.59" y1="-248.94" y2="-247.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.59" x2="633.48" y1="-247.83" y2="-246.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.48" x2="632.28" y1="-246.81" y2="-245.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="632.28" x2="631.02" y1="-245.88" y2="-245.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.02" x2="629.73" y1="-245.04" y2="-244.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="629.73" x2="628.35" y1="-244.32" y2="-243.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.35" x2="626.94" y1="-243.69" y2="-243.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="626.94" x2="625.47" y1="-243.15" y2="-242.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.47" x2="624.0" y1="-242.76" y2="-242.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.0" x2="622.5" y1="-242.46" y2="-242.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.5" x2="621.0" y1="-242.28" y2="-242.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.0" x2="619.5" y1="-242.22" y2="-242.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.5" x2="618.0" y1="-242.28" y2="-242.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.0" x2="616.53" y1="-242.46" y2="-242.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="616.53" x2="615.06" y1="-242.76" y2="-243.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.06" x2="613.65" y1="-243.15" y2="-243.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.65" x2="612.27" y1="-243.69" y2="-244.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="612.27" x2="610.98" y1="-244.32" y2="-245.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.98" x2="609.72" y1="-245.04" y2="-245.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.72" x2="608.52" y1="-245.88" y2="-246.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.52" x2="607.41" y1="-246.81" y2="-247.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.41" x2="606.39" y1="-247.83" y2="-248.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.39" x2="605.46" y1="-248.94" y2="-250.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.46" x2="604.62" y1="-250.14" y2="-251.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="604.62" x2="603.9" y1="-251.4" y2="-252.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.9" x2="603.27" y1="-252.69" y2="-254.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="603.27" x2="602.73" y1="-254.07" y2="-255.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.73" x2="602.34" y1="-255.48" y2="-256.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.34" x2="602.04" y1="-256.95" y2="-258.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="602.04" x2="601.86" y1="-258.42" y2="-259.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="601.86" x2="601.8" y1="-259.92" y2="-261.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.1" x2="605.16" y1="-151.92" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.34" y1="-153.42" y2="-154.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.64" y1="-154.92" y2="-156.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="606.06" y1="-156.39" y2="-157.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="606.57" y1="-157.83" y2="-159.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="607.2" y1="-159.24" y2="-160.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="607.95" y1="-160.59" y2="-161.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="608.79" y1="-161.91" y2="-163.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="609.75" y1="-163.14" y2="-164.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="610.77" y1="-164.31" y2="-165.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="611.88" y1="-165.42" y2="-166.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="613.08" y1="-166.44" y2="-167.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="614.34" y1="-167.34" y2="-168.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="615.66" y1="-168.15" y2="-168.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="617.04" y1="-168.87" y2="-169.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="618.45" y1="-169.5" y2="-169.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="619.89" y1="-169.98" y2="-170.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="621.39" y1="-170.37" y2="-170.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="622.86" y1="-170.64" y2="-170.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="624.39" y1="-170.79" y2="-170.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="625.89" y1="-170.82" y2="-170.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="627.36" y1="-170.73" y2="-170.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="628.83" y1="-170.52" y2="-170.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="630.27" y1="-170.19" y2="-169.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="631.65" y1="-169.74" y2="-169.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="633.0" y1="-169.2" y2="-168.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="634.29" y1="-168.54" y2="-167.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="635.52" y1="-167.76" y2="-166.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="636.69" y1="-166.89" y2="-165.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="637.77" y1="-165.93" y2="-164.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="638.73" y1="-164.88" y2="-163.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="639.63" y1="-163.74" y2="-162.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="640.44" y1="-162.54" y2="-161.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="641.13" y1="-161.25" y2="-159.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="641.7" y1="-159.93" y2="-158.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="642.18" y1="-158.55" y2="-157.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="642.54" y1="-157.11" y2="-155.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.78" y1="-155.64" y2="-154.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.9" y1="-154.17" y2="-152.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.9" y1="-152.67" y2="-151.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.9" x2="642.78" y1="-151.17" y2="-149.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.78" x2="642.54" y1="-149.67" y2="-148.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.54" x2="642.18" y1="-148.2" y2="-146.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="642.18" x2="641.7" y1="-146.73" y2="-145.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.7" x2="641.13" y1="-145.29" y2="-143.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="641.13" x2="640.44" y1="-143.91" y2="-142.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="640.44" x2="639.63" y1="-142.59" y2="-141.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="639.63" x2="638.73" y1="-141.3" y2="-140.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="638.73" x2="637.77" y1="-140.1" y2="-138.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="637.77" x2="636.69" y1="-138.96" y2="-137.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="636.69" x2="635.52" y1="-137.91" y2="-136.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="635.52" x2="634.29" y1="-136.95" y2="-136.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="634.29" x2="633.0" y1="-136.08" y2="-135.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="633.0" x2="631.65" y1="-135.3" y2="-134.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="631.65" x2="630.27" y1="-134.64" y2="-134.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="630.27" x2="628.83" y1="-134.1" y2="-133.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="628.83" x2="627.36" y1="-133.65" y2="-133.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="627.36" x2="625.89" y1="-133.32" y2="-133.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="625.89" x2="624.39" y1="-133.11" y2="-133.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="624.39" x2="622.86" y1="-133.02" y2="-133.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="622.86" x2="621.39" y1="-133.05" y2="-133.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="621.39" x2="619.89" y1="-133.2" y2="-133.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="619.89" x2="618.45" y1="-133.47" y2="-133.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="618.45" x2="617.04" y1="-133.86" y2="-134.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="617.04" x2="615.66" y1="-134.34" y2="-134.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="615.66" x2="614.34" y1="-134.97" y2="-135.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="614.34" x2="613.08" y1="-135.69" y2="-136.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="613.08" x2="611.88" y1="-136.5" y2="-137.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="611.88" x2="610.77" y1="-137.4" y2="-138.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="610.77" x2="609.75" y1="-138.42" y2="-139.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="609.75" x2="608.79" y1="-139.53" y2="-140.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="608.79" x2="607.95" y1="-140.7" y2="-141.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.95" x2="607.2" y1="-141.93" y2="-143.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="607.2" x2="606.57" y1="-143.25" y2="-144.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.57" x2="606.06" y1="-144.6" y2="-146.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="606.06" x2="605.64" y1="-146.01" y2="-147.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.64" x2="605.34" y1="-147.45" y2="-148.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.34" x2="605.16" y1="-148.92" y2="-150.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.0" x1="605.16" x2="605.1" y1="-150.42" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.5" x2="583.56" y1="-151.92" y2="-154.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.56" x2="583.74" y1="-154.11" y2="-156.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.74" x2="584.04" y1="-156.3" y2="-158.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.04" x2="584.46" y1="-158.46" y2="-160.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.46" x2="584.97" y1="-160.62" y2="-162.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.97" x2="585.63" y1="-162.75" y2="-164.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="585.63" x2="586.38" y1="-164.85" y2="-166.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="586.38" x2="587.25" y1="-166.92" y2="-168.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="587.25" x2="588.21" y1="-168.93" y2="-170.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="588.21" x2="589.29" y1="-170.88" y2="-172.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="589.29" x2="590.49" y1="-172.8" y2="-174.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="590.49" x2="591.75" y1="-174.66" y2="-176.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="591.75" x2="593.13" y1="-176.43" y2="-178.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.13" x2="594.6" y1="-178.14" y2="-179.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="594.6" x2="596.16" y1="-179.76" y2="-181.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="596.16" x2="597.78" y1="-181.32" y2="-182.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.78" x2="599.49" y1="-182.79" y2="-184.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="599.49" x2="601.26" y1="-184.17" y2="-185.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="601.26" x2="603.12" y1="-185.43" y2="-186.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="603.12" x2="605.04" y1="-186.63" y2="-187.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="605.04" x2="606.99" y1="-187.71" y2="-188.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="606.99" x2="609.0" y1="-188.67" y2="-189.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="609.0" x2="611.07" y1="-189.54" y2="-190.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="611.07" x2="613.17" y1="-190.29" y2="-190.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="613.17" x2="615.3" y1="-190.95" y2="-191.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="615.3" x2="617.46" y1="-191.46" y2="-191.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="617.46" x2="619.62" y1="-191.88" y2="-192.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="619.62" x2="621.81" y1="-192.18" y2="-192.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="621.81" x2="624.0" y1="-192.36" y2="-192.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="624.0" x2="626.19" y1="-192.42" y2="-192.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="626.19" x2="628.38" y1="-192.36" y2="-192.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="628.38" x2="630.54" y1="-192.18" y2="-191.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="630.54" x2="632.7" y1="-191.88" y2="-191.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="632.7" x2="634.83" y1="-191.46" y2="-190.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="634.83" x2="636.93" y1="-190.95" y2="-190.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="636.93" x2="639.0" y1="-190.29" y2="-189.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="639.0" x2="641.01" y1="-189.54" y2="-188.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="641.01" x2="642.96" y1="-188.67" y2="-187.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="642.96" x2="644.88" y1="-187.71" y2="-186.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="644.88" x2="646.74" y1="-186.63" y2="-185.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="646.74" x2="648.51" y1="-185.43" y2="-184.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="648.51" x2="650.22" y1="-184.17" y2="-182.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="650.22" x2="651.84" y1="-182.79" y2="-181.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="651.84" x2="653.4" y1="-181.32" y2="-179.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="653.4" x2="654.87" y1="-179.76" y2="-178.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="654.87" x2="656.25" y1="-178.14" y2="-176.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="656.25" x2="657.51" y1="-176.43" y2="-174.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="657.51" x2="658.71" y1="-174.66" y2="-172.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="658.71" x2="659.79" y1="-172.8" y2="-170.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="659.79" x2="660.75" y1="-170.88" y2="-168.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="660.75" x2="661.62" y1="-168.93" y2="-166.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="661.62" x2="662.37" y1="-166.92" y2="-164.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="662.37" x2="663.03" y1="-164.85" y2="-162.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.03" x2="663.54" y1="-162.75" y2="-160.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.54" x2="663.96" y1="-160.62" y2="-158.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.96" x2="664.26" y1="-158.46" y2="-156.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.26" x2="664.44" y1="-156.3" y2="-154.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.44" x2="664.5" y1="-154.11" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.5" x2="664.44" y1="-151.92" y2="-149.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.44" x2="664.26" y1="-149.73" y2="-147.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.26" x2="663.96" y1="-147.54" y2="-145.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.96" x2="663.54" y1="-145.38" y2="-143.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.54" x2="663.03" y1="-143.22" y2="-141.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.03" x2="662.37" y1="-141.09" y2="-138.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="662.37" x2="661.62" y1="-138.99" y2="-136.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="661.62" x2="660.75" y1="-136.92" y2="-134.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="660.75" x2="659.79" y1="-134.91" y2="-132.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="659.79" x2="658.71" y1="-132.96" y2="-131.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="658.71" x2="657.51" y1="-131.04" y2="-129.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="657.51" x2="656.25" y1="-129.18" y2="-127.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="656.25" x2="654.87" y1="-127.41" y2="-125.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="654.87" x2="653.4" y1="-125.7" y2="-124.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="653.4" x2="651.84" y1="-124.08" y2="-122.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="651.84" x2="650.22" y1="-122.52" y2="-121.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="650.22" x2="648.51" y1="-121.05" y2="-119.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="648.51" x2="646.74" y1="-119.67" y2="-118.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="646.74" x2="644.88" y1="-118.41" y2="-117.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="644.88" x2="642.96" y1="-117.21" y2="-116.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="642.96" x2="641.01" y1="-116.13" y2="-115.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="641.01" x2="639.0" y1="-115.17" y2="-114.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="639.0" x2="636.93" y1="-114.3" y2="-113.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="636.93" x2="634.83" y1="-113.55" y2="-112.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="634.83" x2="632.7" y1="-112.89" y2="-112.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="632.7" x2="630.54" y1="-112.38" y2="-111.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="630.54" x2="628.38" y1="-111.96" y2="-111.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="628.38" x2="626.19" y1="-111.66" y2="-111.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="626.19" x2="624.0" y1="-111.48" y2="-111.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="624.0" x2="621.81" y1="-111.42" y2="-111.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="621.81" x2="619.62" y1="-111.48" y2="-111.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="619.62" x2="617.46" y1="-111.66" y2="-111.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="617.46" x2="615.3" y1="-111.96" y2="-112.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="615.3" x2="613.17" y1="-112.38" y2="-112.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="613.17" x2="611.07" y1="-112.89" y2="-113.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="611.07" x2="609.0" y1="-113.55" y2="-114.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="609.0" x2="606.99" y1="-114.3" y2="-115.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="606.99" x2="605.04" y1="-115.17" y2="-116.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="605.04" x2="603.12" y1="-116.13" y2="-117.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="603.12" x2="601.26" y1="-117.21" y2="-118.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="601.26" x2="599.49" y1="-118.41" y2="-119.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="599.49" x2="597.78" y1="-119.67" y2="-121.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.78" x2="596.16" y1="-121.05" y2="-122.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="596.16" x2="594.6" y1="-122.52" y2="-124.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="594.6" x2="593.13" y1="-124.08" y2="-125.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.13" x2="591.75" y1="-125.7" y2="-127.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="591.75" x2="590.49" y1="-127.41" y2="-129.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="590.49" x2="589.29" y1="-129.18" y2="-131.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="589.29" x2="588.21" y1="-131.04" y2="-132.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="588.21" x2="587.25" y1="-132.96" y2="-134.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="587.25" x2="586.38" y1="-134.91" y2="-136.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="586.38" x2="585.63" y1="-136.92" y2="-138.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="585.63" x2="584.97" y1="-138.99" y2="-141.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.97" x2="584.46" y1="-141.09" y2="-143.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.46" x2="584.04" y1="-143.22" y2="-145.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.04" x2="583.74" y1="-145.38" y2="-147.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.74" x2="583.56" y1="-147.54" y2="-149.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.56" x2="583.5" y1="-149.73" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.94" x2="597.12" y1="-211.32" y2="-211.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.12" x2="600.33" y1="-211.32" y2="-214.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="600.33" x2="600.33" y1="-214.53" y2="-230.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.12" x2="603.54" y1="-230.55" y2="-230.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="610.05" x2="616.47" y1="-224.13" y2="-230.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="616.47" x2="616.47" y1="-230.55" y2="-211.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="622.86" x2="610.05" y1="-211.32" y2="-211.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.94" x2="590.73" y1="-211.32" y2="-214.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.5" x2="583.56" y1="-481.92" y2="-484.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.56" x2="583.74" y1="-484.11" y2="-486.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.74" x2="584.04" y1="-486.3" y2="-488.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.04" x2="584.46" y1="-488.46" y2="-490.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.46" x2="584.97" y1="-490.62" y2="-492.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.97" x2="585.63" y1="-492.75" y2="-494.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="585.63" x2="586.38" y1="-494.85" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="586.38" x2="587.25" y1="-496.92" y2="-498.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="587.25" x2="588.21" y1="-498.93" y2="-500.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="588.21" x2="589.29" y1="-500.88" y2="-502.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="589.29" x2="590.49" y1="-502.8" y2="-504.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="590.49" x2="591.75" y1="-504.66" y2="-506.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="591.75" x2="593.13" y1="-506.43" y2="-508.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.13" x2="594.6" y1="-508.14" y2="-509.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="594.6" x2="596.16" y1="-509.76" y2="-511.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="596.16" x2="597.78" y1="-511.32" y2="-512.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.78" x2="599.49" y1="-512.79" y2="-514.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="599.49" x2="601.26" y1="-514.17" y2="-515.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="601.26" x2="603.12" y1="-515.43" y2="-516.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="603.12" x2="605.04" y1="-516.63" y2="-517.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="605.04" x2="606.99" y1="-517.71" y2="-518.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="606.99" x2="609.0" y1="-518.67" y2="-519.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="609.0" x2="611.07" y1="-519.54" y2="-520.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="611.07" x2="613.17" y1="-520.29" y2="-520.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="613.17" x2="615.3" y1="-520.95" y2="-521.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="615.3" x2="617.46" y1="-521.46" y2="-521.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="617.46" x2="619.62" y1="-521.88" y2="-522.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="619.62" x2="621.81" y1="-522.18" y2="-522.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="621.81" x2="624.0" y1="-522.36" y2="-522.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="624.0" x2="626.19" y1="-522.42" y2="-522.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="626.19" x2="628.38" y1="-522.36" y2="-522.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="628.38" x2="630.54" y1="-522.18" y2="-521.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="630.54" x2="632.7" y1="-521.88" y2="-521.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="632.7" x2="634.83" y1="-521.46" y2="-520.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="634.83" x2="636.93" y1="-520.95" y2="-520.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="636.93" x2="639.0" y1="-520.29" y2="-519.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="639.0" x2="641.01" y1="-519.54" y2="-518.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="641.01" x2="642.96" y1="-518.67" y2="-517.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="642.96" x2="644.88" y1="-517.71" y2="-516.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="644.88" x2="646.74" y1="-516.63" y2="-515.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="646.74" x2="648.51" y1="-515.43" y2="-514.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="648.51" x2="650.22" y1="-514.17" y2="-512.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="650.22" x2="651.84" y1="-512.79" y2="-511.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="651.84" x2="653.4" y1="-511.32" y2="-509.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="653.4" x2="654.87" y1="-509.76" y2="-508.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="654.87" x2="656.25" y1="-508.14" y2="-506.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="656.25" x2="657.51" y1="-506.43" y2="-504.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="657.51" x2="658.71" y1="-504.66" y2="-502.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="658.71" x2="659.79" y1="-502.8" y2="-500.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="659.79" x2="660.75" y1="-500.88" y2="-498.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="660.75" x2="661.62" y1="-498.93" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="661.62" x2="662.37" y1="-496.92" y2="-494.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="662.37" x2="663.03" y1="-494.85" y2="-492.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.03" x2="663.54" y1="-492.75" y2="-490.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.54" x2="663.96" y1="-490.62" y2="-488.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.96" x2="664.26" y1="-488.46" y2="-486.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.26" x2="664.44" y1="-486.3" y2="-484.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.44" x2="664.5" y1="-484.11" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.5" x2="664.44" y1="-481.92" y2="-479.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.44" x2="664.26" y1="-479.73" y2="-477.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="664.26" x2="663.96" y1="-477.54" y2="-475.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.96" x2="663.54" y1="-475.38" y2="-473.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.54" x2="663.03" y1="-473.22" y2="-471.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="663.03" x2="662.37" y1="-471.09" y2="-468.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="662.37" x2="661.62" y1="-468.99" y2="-466.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="661.62" x2="660.75" y1="-466.92" y2="-464.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="660.75" x2="659.79" y1="-464.91" y2="-462.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="659.79" x2="658.71" y1="-462.96" y2="-461.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="658.71" x2="657.51" y1="-461.04" y2="-459.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="657.51" x2="656.25" y1="-459.18" y2="-457.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="656.25" x2="654.87" y1="-457.41" y2="-455.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="654.87" x2="653.4" y1="-455.7" y2="-454.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="653.4" x2="651.84" y1="-454.08" y2="-452.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="651.84" x2="650.22" y1="-452.52" y2="-451.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="650.22" x2="648.51" y1="-451.05" y2="-449.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="648.51" x2="646.74" y1="-449.67" y2="-448.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="646.74" x2="644.88" y1="-448.41" y2="-447.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="644.88" x2="642.96" y1="-447.21" y2="-446.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="642.96" x2="641.01" y1="-446.13" y2="-445.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="641.01" x2="639.0" y1="-445.17" y2="-444.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="639.0" x2="636.93" y1="-444.3" y2="-443.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="636.93" x2="634.83" y1="-443.55" y2="-442.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="634.83" x2="632.7" y1="-442.89" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="632.7" x2="630.54" y1="-442.38" y2="-441.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="630.54" x2="628.38" y1="-441.96" y2="-441.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="628.38" x2="626.19" y1="-441.66" y2="-441.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="626.19" x2="624.0" y1="-441.48" y2="-441.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="624.0" x2="621.81" y1="-441.42" y2="-441.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="621.81" x2="619.62" y1="-441.48" y2="-441.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="619.62" x2="617.46" y1="-441.66" y2="-441.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="617.46" x2="615.3" y1="-441.96" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="615.3" x2="613.17" y1="-442.38" y2="-442.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="613.17" x2="611.07" y1="-442.89" y2="-443.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="611.07" x2="609.0" y1="-443.55" y2="-444.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="609.0" x2="606.99" y1="-444.3" y2="-445.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="606.99" x2="605.04" y1="-445.17" y2="-446.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="605.04" x2="603.12" y1="-446.13" y2="-447.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="603.12" x2="601.26" y1="-447.21" y2="-448.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="601.26" x2="599.49" y1="-448.41" y2="-449.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="599.49" x2="597.78" y1="-449.67" y2="-451.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="597.78" x2="596.16" y1="-451.05" y2="-452.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="596.16" x2="594.6" y1="-452.52" y2="-454.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="594.6" x2="593.13" y1="-454.08" y2="-455.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="593.13" x2="591.75" y1="-455.7" y2="-457.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="591.75" x2="590.49" y1="-457.41" y2="-459.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="590.49" x2="589.29" y1="-459.18" y2="-461.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="589.29" x2="588.21" y1="-461.04" y2="-462.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="588.21" x2="587.25" y1="-462.96" y2="-464.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="587.25" x2="586.38" y1="-464.91" y2="-466.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="586.38" x2="585.63" y1="-466.92" y2="-468.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="585.63" x2="584.97" y1="-468.99" y2="-471.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.97" x2="584.46" y1="-471.09" y2="-473.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.46" x2="584.04" y1="-473.22" y2="-475.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="584.04" x2="583.74" y1="-475.38" y2="-477.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.74" x2="583.56" y1="-477.54" y2="-479.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="583.56" x2="583.5" y1="-479.73" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="565.5" x2="558.0" y1="-496.92" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="558.0" x2="543.0" y1="-489.42" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="543.0" x2="535.5" y1="-489.42" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="535.5" x2="528.0" y1="-496.92" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="528.0" x2="513.0" y1="-489.42" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="513.0" x2="505.5" y1="-489.42" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="505.5" x2="505.5" y1="-496.92" y2="-511.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="505.5" x2="513.0" y1="-511.92" y2="-519.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="513.0" x2="528.0" y1="-519.42" y2="-519.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="528.0" x2="535.5" y1="-519.42" y2="-511.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="535.5" x2="543.0" y1="-511.92" y2="-519.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="543.0" x2="558.0" y1="-519.42" y2="-519.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="558.0" x2="565.5" y1="-519.42" y2="-511.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="565.5" x2="565.5" y1="-511.92" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="535.5" x2="535.5" y1="-496.92" y2="-511.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="235.5" x2="235.5" y1="-516.42" y2="-501.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="235.5" x2="228.0" y1="-501.42" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="228.0" x2="213.0" y1="-493.92" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="213.0" x2="205.5" y1="-493.92" y2="-501.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="205.5" x2="198.0" y1="-501.42" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.0" x2="183.0" y1="-493.92" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="183.0" x2="175.5" y1="-493.92" y2="-501.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="175.5" x2="168.0" y1="-501.42" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="168.0" x2="153.0" y1="-493.92" y2="-493.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="153.0" x2="145.5" y1="-493.92" y2="-501.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.5" x2="145.5" y1="-501.42" y2="-516.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.5" x2="153.0" y1="-516.42" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="153.0" x2="168.0" y1="-523.92" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="168.0" x2="175.5" y1="-523.92" y2="-516.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="175.5" x2="183.0" y1="-516.42" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="183.0" x2="198.0" y1="-523.92" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.0" x2="205.5" y1="-523.92" y2="-516.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="205.5" x2="213.0" y1="-516.42" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="213.0" x2="228.0" y1="-523.92" y2="-523.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="228.0" x2="235.5" y1="-523.92" y2="-516.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="205.5" x2="205.5" y1="-516.42" y2="-501.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="175.5" x2="175.5" y1="-501.42" y2="-516.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="28.5" x2="28.56" y1="-481.92" y2="-484.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="28.56" x2="28.74" y1="-484.11" y2="-486.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="28.74" x2="29.04" y1="-486.3" y2="-488.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.04" x2="29.46" y1="-488.46" y2="-490.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.46" x2="29.97" y1="-490.62" y2="-492.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.97" x2="30.63" y1="-492.75" y2="-494.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.63" x2="31.38" y1="-494.85" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="31.38" x2="32.25" y1="-496.92" y2="-498.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.25" x2="33.21" y1="-498.93" y2="-500.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="33.21" x2="34.29" y1="-500.88" y2="-502.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="34.29" x2="35.49" y1="-502.8" y2="-504.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="35.49" x2="36.75" y1="-504.66" y2="-506.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="36.75" x2="38.13" y1="-506.43" y2="-508.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="38.13" x2="39.6" y1="-508.14" y2="-509.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="39.6" x2="41.16" y1="-509.76" y2="-511.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="41.16" x2="42.78" y1="-511.32" y2="-512.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="42.78" x2="44.49" y1="-512.79" y2="-514.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="44.49" x2="46.26" y1="-514.17" y2="-515.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="46.26" x2="48.12" y1="-515.43" y2="-516.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="48.12" x2="50.04" y1="-516.63" y2="-517.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="50.04" x2="51.99" y1="-517.71" y2="-518.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="51.99" x2="54.0" y1="-518.67" y2="-519.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="54.0" x2="56.07" y1="-519.54" y2="-520.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="56.07" x2="58.17" y1="-520.29" y2="-520.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="58.17" x2="60.3" y1="-520.95" y2="-521.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.3" x2="62.46" y1="-521.46" y2="-521.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="62.46" x2="64.62" y1="-521.88" y2="-522.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="64.62" x2="66.81" y1="-522.18" y2="-522.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="66.81" x2="69.0" y1="-522.36" y2="-522.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="69.0" x2="71.19" y1="-522.42" y2="-522.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="71.19" x2="73.38" y1="-522.36" y2="-522.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="73.38" x2="75.54" y1="-522.18" y2="-521.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="75.54" x2="77.7" y1="-521.88" y2="-521.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="77.7" x2="79.83" y1="-521.46" y2="-520.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="79.83" x2="81.93" y1="-520.95" y2="-520.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="81.93" x2="84.0" y1="-520.29" y2="-519.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="84.0" x2="86.01" y1="-519.54" y2="-518.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="86.01" x2="87.96" y1="-518.67" y2="-517.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="87.96" x2="89.88" y1="-517.71" y2="-516.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="89.88" x2="91.74" y1="-516.63" y2="-515.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="91.74" x2="93.51" y1="-515.43" y2="-514.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="93.51" x2="95.22" y1="-514.17" y2="-512.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="95.22" x2="96.84" y1="-512.79" y2="-511.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="96.84" x2="98.4" y1="-511.32" y2="-509.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="98.4" x2="99.87" y1="-509.76" y2="-508.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="99.87" x2="101.25" y1="-508.14" y2="-506.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="101.25" x2="102.51" y1="-506.43" y2="-504.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="102.51" x2="103.71" y1="-504.66" y2="-502.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="103.71" x2="104.79" y1="-502.8" y2="-500.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="104.79" x2="105.75" y1="-500.88" y2="-498.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="105.75" x2="106.62" y1="-498.93" y2="-496.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="106.62" x2="107.37" y1="-496.92" y2="-494.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="107.37" x2="108.03" y1="-494.85" y2="-492.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.03" x2="108.54" y1="-492.75" y2="-490.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.54" x2="108.96" y1="-490.62" y2="-488.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.96" x2="109.26" y1="-488.46" y2="-486.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.26" x2="109.44" y1="-486.3" y2="-484.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.44" x2="109.5" y1="-484.11" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.5" x2="109.44" y1="-481.92" y2="-479.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.44" x2="109.26" y1="-479.73" y2="-477.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.26" x2="108.96" y1="-477.54" y2="-475.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.96" x2="108.54" y1="-475.38" y2="-473.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.54" x2="108.03" y1="-473.22" y2="-471.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.03" x2="107.37" y1="-471.09" y2="-468.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="107.37" x2="106.62" y1="-468.99" y2="-466.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="106.62" x2="105.75" y1="-466.92" y2="-464.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="105.75" x2="104.79" y1="-464.91" y2="-462.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="104.79" x2="103.71" y1="-462.96" y2="-461.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="103.71" x2="102.51" y1="-461.04" y2="-459.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="102.51" x2="101.25" y1="-459.18" y2="-457.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="101.25" x2="99.87" y1="-457.41" y2="-455.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="99.87" x2="98.4" y1="-455.7" y2="-454.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="98.4" x2="96.84" y1="-454.08" y2="-452.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="96.84" x2="95.22" y1="-452.52" y2="-451.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="95.22" x2="93.51" y1="-451.05" y2="-449.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="93.51" x2="91.74" y1="-449.67" y2="-448.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="91.74" x2="89.88" y1="-448.41" y2="-447.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="89.88" x2="87.96" y1="-447.21" y2="-446.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="87.96" x2="86.01" y1="-446.13" y2="-445.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="86.01" x2="84.0" y1="-445.17" y2="-444.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="84.0" x2="81.93" y1="-444.3" y2="-443.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="81.93" x2="79.83" y1="-443.55" y2="-442.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="79.83" x2="77.7" y1="-442.89" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="77.7" x2="75.54" y1="-442.38" y2="-441.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="75.54" x2="73.38" y1="-441.96" y2="-441.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="73.38" x2="71.19" y1="-441.66" y2="-441.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="71.19" x2="69.0" y1="-441.48" y2="-441.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="69.0" x2="66.81" y1="-441.42" y2="-441.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="66.81" x2="64.62" y1="-441.48" y2="-441.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="64.62" x2="62.46" y1="-441.66" y2="-441.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="62.46" x2="60.3" y1="-441.96" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.3" x2="58.17" y1="-442.38" y2="-442.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="58.17" x2="56.07" y1="-442.89" y2="-443.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="56.07" x2="54.0" y1="-443.55" y2="-444.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="54.0" x2="51.99" y1="-444.3" y2="-445.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="51.99" x2="50.04" y1="-445.17" y2="-446.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="50.04" x2="48.12" y1="-446.13" y2="-447.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="48.12" x2="46.26" y1="-447.21" y2="-448.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="46.26" x2="44.49" y1="-448.41" y2="-449.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="44.49" x2="42.78" y1="-449.67" y2="-451.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="42.78" x2="41.16" y1="-451.05" y2="-452.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="41.16" x2="39.6" y1="-452.52" y2="-454.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="39.6" x2="38.13" y1="-454.08" y2="-455.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="38.13" x2="36.75" y1="-455.7" y2="-457.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="36.75" x2="35.49" y1="-457.41" y2="-459.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="35.49" x2="34.29" y1="-459.18" y2="-461.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="34.29" x2="33.21" y1="-461.04" y2="-462.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="33.21" x2="32.25" y1="-462.96" y2="-464.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.25" x2="31.38" y1="-464.91" y2="-466.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="31.38" x2="30.63" y1="-466.92" y2="-468.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.63" x2="29.97" y1="-468.99" y2="-471.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.97" x2="29.46" y1="-471.09" y2="-473.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.46" x2="29.04" y1="-473.22" y2="-475.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="29.04" x2="28.74" y1="-475.38" y2="-477.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="28.74" x2="28.56" y1="-477.54" y2="-479.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="28.56" x2="28.5" y1="-479.73" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="30.0" y1="-391.92" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.0" y1="-384.42" y2="-369.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="37.5" y1="-369.42" y2="-361.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="30.0" y1="-361.92" y2="-354.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.0" y1="-354.42" y2="-339.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="37.5" y1="-339.42" y2="-331.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="52.5" y1="-331.92" y2="-331.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="60.0" y1="-331.92" y2="-339.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="60.0" y1="-339.42" y2="-354.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="52.5" y1="-354.42" y2="-361.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="37.5" y1="-361.92" y2="-361.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="60.0" y1="-361.92" y2="-369.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="60.0" y1="-369.42" y2="-384.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="52.5" y1="-384.42" y2="-391.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="37.5" y1="-391.92" y2="-391.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="30.0" y1="-331.92" y2="-324.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.0" y1="-324.42" y2="-309.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="37.5" y1="-309.42" y2="-301.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="30.0" y1="-301.92" y2="-294.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.0" y1="-294.42" y2="-279.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="37.5" y1="-279.42" y2="-271.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="30.0" y1="-271.92" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.0" y1="-264.42" y2="-249.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="37.5" y1="-249.42" y2="-241.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="37.5" x2="52.5" y1="-241.92" y2="-241.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="60.0" y1="-241.92" y2="-249.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="60.0" y1="-249.42" y2="-264.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="52.5" y1="-264.42" y2="-271.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="37.5" y1="-271.92" y2="-271.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="60.0" y1="-271.92" y2="-279.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="60.0" y1="-279.42" y2="-294.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="52.5" y1="-294.42" y2="-301.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="37.5" y1="-301.92" y2="-301.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="52.5" x2="60.0" y1="-301.92" y2="-309.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="60.0" y1="-309.42" y2="-324.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="60.0" x2="52.5" y1="-324.42" y2="-331.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.5" x2="142.5" y1="-335.82" y2="-348.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.5" x2="142.5" y1="-348.42" y2="-360.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.5" x2="142.5" y1="-360.42" y2="-373.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.5" x2="142.56" y1="-373.02" y2="-373.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.56" x2="142.71" y1="-373.71" y2="-374.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.71" x2="142.98" y1="-374.4" y2="-375.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.98" x2="143.37" y1="-375.06" y2="-375.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.37" x2="143.82" y1="-375.66" y2="-376.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.82" x2="144.36" y1="-376.2" y2="-376.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.36" x2="144.96" y1="-376.65" y2="-377.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.96" x2="145.62" y1="-377.04" y2="-377.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.62" x2="146.31" y1="-377.31" y2="-377.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.31" x2="147.0" y1="-377.46" y2="-377.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.0" x2="198.0" y1="-377.52" y2="-377.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.0" x2="198.69" y1="-377.52" y2="-377.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.69" x2="199.38" y1="-377.46" y2="-377.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="199.38" x2="200.04" y1="-377.31" y2="-377.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="200.04" x2="200.64" y1="-377.04" y2="-376.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="200.64" x2="201.18" y1="-376.65" y2="-376.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="201.18" x2="201.63" y1="-376.2" y2="-375.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="201.63" x2="202.02" y1="-375.66" y2="-375.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.02" x2="202.29" y1="-375.06" y2="-374.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.29" x2="202.44" y1="-374.4" y2="-373.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.44" x2="202.5" y1="-373.71" y2="-373.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.5" x2="202.5" y1="-373.02" y2="-335.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.5" x2="202.44" y1="-335.82" y2="-335.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.44" x2="202.29" y1="-335.13" y2="-334.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.29" x2="202.02" y1="-334.44" y2="-333.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="202.02" x2="201.63" y1="-333.78" y2="-333.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="201.63" x2="201.18" y1="-333.18" y2="-332.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="201.18" x2="200.64" y1="-332.64" y2="-332.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="200.64" x2="200.04" y1="-332.19" y2="-331.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="200.04" x2="199.38" y1="-331.8" y2="-331.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="199.38" x2="198.69" y1="-331.53" y2="-331.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.69" x2="198.0" y1="-331.38" y2="-331.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="198.0" x2="147.0" y1="-331.32" y2="-331.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.0" x2="146.31" y1="-331.32" y2="-331.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.31" x2="145.62" y1="-331.38" y2="-331.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.62" x2="144.96" y1="-331.53" y2="-331.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.96" x2="144.36" y1="-331.8" y2="-332.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.36" x2="143.82" y1="-332.19" y2="-332.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.82" x2="143.37" y1="-332.64" y2="-333.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.37" x2="142.98" y1="-333.18" y2="-333.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.98" x2="142.71" y1="-333.78" y2="-334.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.71" x2="142.56" y1="-334.44" y2="-335.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.56" x2="142.5" y1="-335.13" y2="-335.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="142.5" x2="143.31" y1="-348.42" y2="-348.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.31" x2="144.12" y1="-348.48" y2="-348.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.12" x2="144.9" y1="-348.63" y2="-348.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.9" x2="145.62" y1="-348.93" y2="-349.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.62" x2="146.28" y1="-349.29" y2="-349.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.28" x2="146.88" y1="-349.77" y2="-350.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.88" x2="147.39" y1="-350.31" y2="-350.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.39" x2="147.84" y1="-350.97" y2="-351.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.84" x2="148.14" y1="-351.66" y2="-352.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.14" x2="148.38" y1="-352.41" y2="-353.19" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.38" x2="148.5" y1="-353.19" y2="-354.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.5" x2="148.5" y1="-354.0" y2="-354.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.5" x2="148.38" y1="-354.84" y2="-355.65" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.38" x2="148.14" y1="-355.65" y2="-356.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="148.14" x2="147.84" y1="-356.43" y2="-357.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.84" x2="147.39" y1="-357.18" y2="-357.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="147.39" x2="146.88" y1="-357.87" y2="-358.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.88" x2="146.28" y1="-358.53" y2="-359.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="146.28" x2="145.62" y1="-359.07" y2="-359.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="145.62" x2="144.9" y1="-359.55" y2="-359.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.9" x2="144.12" y1="-359.91" y2="-360.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="144.12" x2="143.31" y1="-360.21" y2="-360.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="143.31" x2="142.5" y1="-360.36" y2="-360.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.0" x2="30.06" y1="-153.42" y2="-155.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.06" x2="30.24" y1="-155.61" y2="-157.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.24" x2="30.54" y1="-157.8" y2="-159.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.54" x2="30.96" y1="-159.96" y2="-162.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.96" x2="31.47" y1="-162.12" y2="-164.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="31.47" x2="32.13" y1="-164.25" y2="-166.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.13" x2="32.88" y1="-166.35" y2="-168.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.88" x2="33.75" y1="-168.42" y2="-170.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="33.75" x2="34.71" y1="-170.43" y2="-172.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="34.71" x2="35.79" y1="-172.38" y2="-174.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="35.79" x2="36.99" y1="-174.3" y2="-176.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="36.99" x2="38.25" y1="-176.16" y2="-177.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="38.25" x2="39.63" y1="-177.93" y2="-179.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="39.63" x2="41.1" y1="-179.64" y2="-181.26" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="41.1" x2="42.66" y1="-181.26" y2="-182.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="42.66" x2="44.28" y1="-182.82" y2="-184.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="44.28" x2="45.99" y1="-184.29" y2="-185.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="45.99" x2="47.76" y1="-185.67" y2="-186.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="47.76" x2="49.62" y1="-186.93" y2="-188.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="49.62" x2="51.54" y1="-188.13" y2="-189.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="51.54" x2="53.49" y1="-189.21" y2="-190.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="53.49" x2="55.5" y1="-190.17" y2="-191.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="55.5" x2="57.57" y1="-191.04" y2="-191.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="57.57" x2="59.67" y1="-191.79" y2="-192.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="59.67" x2="61.8" y1="-192.45" y2="-192.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="61.8" x2="63.96" y1="-192.96" y2="-193.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="63.96" x2="66.12" y1="-193.38" y2="-193.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="66.12" x2="68.31" y1="-193.68" y2="-193.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="68.31" x2="70.5" y1="-193.86" y2="-193.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="70.5" x2="72.69" y1="-193.92" y2="-193.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="72.69" x2="74.88" y1="-193.86" y2="-193.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="74.88" x2="77.04" y1="-193.68" y2="-193.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="77.04" x2="79.2" y1="-193.38" y2="-192.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="79.2" x2="81.33" y1="-192.96" y2="-192.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="81.33" x2="83.43" y1="-192.45" y2="-191.79" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="83.43" x2="85.5" y1="-191.79" y2="-191.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="85.5" x2="87.51" y1="-191.04" y2="-190.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="87.51" x2="89.46" y1="-190.17" y2="-189.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="89.46" x2="91.38" y1="-189.21" y2="-188.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="91.38" x2="93.24" y1="-188.13" y2="-186.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="93.24" x2="95.01" y1="-186.93" y2="-185.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="95.01" x2="96.72" y1="-185.67" y2="-184.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="96.72" x2="98.34" y1="-184.29" y2="-182.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="98.34" x2="99.9" y1="-182.82" y2="-181.26" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="99.9" x2="101.37" y1="-181.26" y2="-179.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="101.37" x2="102.75" y1="-179.64" y2="-177.93" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="102.75" x2="104.01" y1="-177.93" y2="-176.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="104.01" x2="105.21" y1="-176.16" y2="-174.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="105.21" x2="106.29" y1="-174.3" y2="-172.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="106.29" x2="107.25" y1="-172.38" y2="-170.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="107.25" x2="108.12" y1="-170.43" y2="-168.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.12" x2="108.87" y1="-168.42" y2="-166.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.87" x2="109.53" y1="-166.35" y2="-164.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.53" x2="110.04" y1="-164.25" y2="-162.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.04" x2="110.46" y1="-162.12" y2="-159.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.46" x2="110.76" y1="-159.96" y2="-157.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.76" x2="110.94" y1="-157.8" y2="-155.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.94" x2="111.0" y1="-155.61" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="111.0" x2="110.94" y1="-153.42" y2="-151.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.94" x2="110.76" y1="-151.23" y2="-149.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.76" x2="110.46" y1="-149.04" y2="-146.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.46" x2="110.04" y1="-146.88" y2="-144.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="110.04" x2="109.53" y1="-144.72" y2="-142.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="109.53" x2="108.87" y1="-142.59" y2="-140.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.87" x2="108.12" y1="-140.49" y2="-138.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="108.12" x2="107.25" y1="-138.42" y2="-136.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="107.25" x2="106.29" y1="-136.41" y2="-134.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="106.29" x2="105.21" y1="-134.46" y2="-132.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="105.21" x2="104.01" y1="-132.54" y2="-130.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="104.01" x2="102.75" y1="-130.68" y2="-128.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="102.75" x2="101.37" y1="-128.91" y2="-127.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="101.37" x2="99.9" y1="-127.2" y2="-125.58" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="99.9" x2="98.34" y1="-125.58" y2="-124.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="98.34" x2="96.72" y1="-124.02" y2="-122.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="96.72" x2="95.01" y1="-122.55" y2="-121.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="95.01" x2="93.24" y1="-121.17" y2="-119.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="93.24" x2="91.38" y1="-119.91" y2="-118.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="91.38" x2="89.46" y1="-118.71" y2="-117.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="89.46" x2="87.51" y1="-117.63" y2="-116.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="87.51" x2="85.5" y1="-116.67" y2="-115.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="85.5" x2="83.43" y1="-115.8" y2="-115.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="83.43" x2="81.33" y1="-115.05" y2="-114.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="81.33" x2="79.2" y1="-114.39" y2="-113.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="79.2" x2="77.04" y1="-113.88" y2="-113.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="77.04" x2="74.88" y1="-113.46" y2="-113.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="74.88" x2="72.69" y1="-113.16" y2="-112.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="72.69" x2="70.5" y1="-112.98" y2="-112.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="70.5" x2="68.31" y1="-112.92" y2="-112.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="68.31" x2="66.12" y1="-112.98" y2="-113.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="66.12" x2="63.96" y1="-113.16" y2="-113.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="63.96" x2="61.8" y1="-113.46" y2="-113.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="61.8" x2="59.67" y1="-113.88" y2="-114.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="59.67" x2="57.57" y1="-114.39" y2="-115.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="57.57" x2="55.5" y1="-115.05" y2="-115.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="55.5" x2="53.49" y1="-115.8" y2="-116.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="53.49" x2="51.54" y1="-116.67" y2="-117.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="51.54" x2="49.62" y1="-117.63" y2="-118.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="49.62" x2="47.76" y1="-118.71" y2="-119.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="47.76" x2="45.99" y1="-119.91" y2="-121.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="45.99" x2="44.28" y1="-121.17" y2="-122.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="44.28" x2="42.66" y1="-122.55" y2="-124.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="42.66" x2="41.1" y1="-124.02" y2="-125.58" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="41.1" x2="39.63" y1="-125.58" y2="-127.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="39.63" x2="38.25" y1="-127.2" y2="-128.91" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="38.25" x2="36.99" y1="-128.91" y2="-130.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="36.99" x2="35.79" y1="-130.68" y2="-132.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="35.79" x2="34.71" y1="-132.54" y2="-134.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="34.71" x2="33.75" y1="-134.46" y2="-136.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="33.75" x2="32.88" y1="-136.41" y2="-138.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.88" x2="32.13" y1="-138.42" y2="-140.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="32.13" x2="31.47" y1="-140.49" y2="-142.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="31.47" x2="30.96" y1="-142.59" y2="-144.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.96" x2="30.54" y1="-144.72" y2="-146.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.54" x2="30.24" y1="-146.88" y2="-149.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.24" x2="30.06" y1="-149.04" y2="-151.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.8" x1="30.06" x2="30.0" y1="-151.23" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.6" x1="142.5" x2="202.5" y1="-335.52" y2="-335.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="207.87" x2="212.37" y1="-386.67" y2="-386.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="212.37" x2="214.62" y1="-386.67" y2="-388.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="214.62" x2="214.62" y1="-388.92" y2="-400.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="219.45" x2="221.7" y1="-397.95" y2="-400.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="221.7" x2="226.2" y1="-400.2" y2="-400.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="226.2" x2="228.45" y1="-400.2" y2="-397.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="228.45" x2="228.45" y1="-397.95" y2="-395.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="228.45" x2="226.2" y1="-395.7" y2="-393.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="226.2" x2="228.45" y1="-393.45" y2="-391.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="228.45" x2="228.45" y1="-391.17" y2="-388.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="228.45" x2="226.2" y1="-388.92" y2="-386.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="226.2" x2="221.7" y1="-386.67" y2="-386.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="221.7" x2="219.45" y1="-386.67" y2="-388.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="223.95" x2="226.2" y1="-393.45" y2="-393.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="207.87" x2="205.62" y1="-386.67" y2="-388.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="205.62" x2="205.62" y1="-388.92" y2="-400.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="186.48" x2="177.48" y1="-469.77" y2="-483.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="172.68" x2="172.68" y1="-483.3" y2="-469.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="177.48" x2="186.48" y1="-469.77" y2="-483.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="172.68" x2="168.18" y1="-483.3" y2="-478.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="168.18" x2="163.65" y1="-478.8" y2="-483.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="163.65" x2="163.65" y1="-483.3" y2="-469.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="158.85" x2="158.85" y1="-472.02" y2="-481.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="158.85" x2="156.6" y1="-481.05" y2="-483.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="156.6" x2="149.85" y1="-483.3" y2="-483.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="149.85" x2="149.85" y1="-483.3" y2="-469.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="149.85" x2="156.6" y1="-469.77" y2="-469.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="156.6" x2="158.85" y1="-469.77" y2="-472.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="80.85" y1="-388.89" y2="-384.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="67.35" y1="-386.61" y2="-386.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="67.35" y1="-384.36" y2="-388.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="69.6" x2="67.35" y1="-379.56" y2="-377.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="67.35" y1="-377.31" y2="-370.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="80.85" y1="-370.56" y2="-370.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="80.85" y1="-370.56" y2="-377.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="78.6" y1="-377.31" y2="-379.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="78.6" x2="69.6" y1="-379.56" y2="-379.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="67.35" y1="-365.85" y2="-361.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="80.85" y1="-363.6" y2="-363.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="80.85" y1="-361.35" y2="-365.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="80.85" x2="67.35" y1="-356.55" y2="-356.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="71.85" y1="-356.55" y2="-352.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="71.85" x2="67.35" y1="-352.05" y2="-347.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="67.35" x2="80.85" y1="-347.55" y2="-347.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="505.35" x2="505.35" y1="-526.77" y2="-540.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="505.35" x2="512.1" y1="-540.3" y2="-540.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="512.1" x2="514.35" y1="-540.3" y2="-538.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="514.35" x2="514.35" y1="-538.05" y2="-533.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="514.35" x2="512.1" y1="-533.55" y2="-531.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="512.1" x2="505.35" y1="-531.27" y2="-531.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="519.15" x2="519.15" y1="-526.77" y2="-540.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="528.18" x2="528.18" y1="-540.3" y2="-526.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="528.18" x2="523.68" y1="-526.77" y2="-531.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="523.68" x2="519.15" y1="-531.27" y2="-526.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="532.98" x2="532.98" y1="-526.77" y2="-540.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="532.98" x2="539.73" y1="-540.3" y2="-540.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="539.73" x2="541.98" y1="-540.3" y2="-538.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="541.98" x2="541.98" y1="-538.05" y2="-533.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="541.98" x2="539.73" y1="-533.55" y2="-531.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="539.73" x2="532.98" y1="-531.27" y2="-531.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.5" x1="537.48" x2="541.98" y1="-531.27" y2="-526.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.93" x2="603.99" y1="-481.92" y2="-483.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.99" x2="604.17" y1="-483.45" y2="-484.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.17" x2="604.47" y1="-484.98" y2="-486.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.47" x2="604.86" y1="-486.48" y2="-487.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.86" x2="605.4" y1="-487.98" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="605.4" x2="606.0" y1="-489.42" y2="-490.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.0" x2="606.75" y1="-490.83" y2="-492.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.75" x2="607.59" y1="-492.18" y2="-493.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="607.59" x2="608.52" y1="-493.47" y2="-494.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="608.52" x2="609.54" y1="-494.7" y2="-495.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="609.54" x2="610.65" y1="-495.84" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="610.65" x2="611.82" y1="-496.89" y2="-497.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="611.82" x2="613.08" y1="-497.88" y2="-498.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="613.08" x2="614.4" y1="-498.78" y2="-499.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="614.4" x2="615.78" y1="-499.56" y2="-500.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="615.78" x2="617.22" y1="-500.22" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="617.22" x2="618.69" y1="-500.82" y2="-501.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="618.69" x2="620.19" y1="-501.27" y2="-501.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="620.19" x2="621.69" y1="-501.63" y2="-501.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="621.69" x2="623.22" y1="-501.87" y2="-501.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="623.22" x2="624.78" y1="-501.99" y2="-501.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="624.78" x2="626.31" y1="-501.99" y2="-501.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="626.31" x2="627.81" y1="-501.87" y2="-501.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="627.81" x2="629.31" y1="-501.63" y2="-501.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="629.31" x2="630.78" y1="-501.27" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="630.78" x2="632.22" y1="-500.82" y2="-500.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="632.22" x2="633.6" y1="-500.22" y2="-499.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="633.6" x2="634.92" y1="-499.56" y2="-498.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="634.92" x2="636.18" y1="-498.78" y2="-497.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="636.18" x2="637.35" y1="-497.88" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="637.35" x2="638.46" y1="-496.89" y2="-495.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="638.46" x2="639.48" y1="-495.84" y2="-494.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="639.48" x2="640.41" y1="-494.7" y2="-493.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="640.41" x2="641.25" y1="-493.47" y2="-492.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="641.25" x2="642.0" y1="-492.18" y2="-490.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.0" x2="642.6" y1="-490.83" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.6" x2="643.14" y1="-489.42" y2="-487.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.14" x2="643.53" y1="-487.98" y2="-486.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.53" x2="643.83" y1="-486.48" y2="-484.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.83" x2="644.01" y1="-484.98" y2="-483.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.01" x2="644.07" y1="-483.45" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.07" x2="644.01" y1="-481.92" y2="-480.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.01" x2="643.83" y1="-480.39" y2="-478.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.83" x2="643.53" y1="-478.86" y2="-477.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.53" x2="643.14" y1="-477.36" y2="-475.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.14" x2="642.6" y1="-475.86" y2="-474.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.6" x2="642.0" y1="-474.42" y2="-473.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.0" x2="641.25" y1="-473.01" y2="-471.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="641.25" x2="640.41" y1="-471.66" y2="-470.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="640.41" x2="639.48" y1="-470.37" y2="-469.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="639.48" x2="638.46" y1="-469.14" y2="-468.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="638.46" x2="637.35" y1="-468.0" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="637.35" x2="636.18" y1="-466.95" y2="-465.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="636.18" x2="634.92" y1="-465.96" y2="-465.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="634.92" x2="633.6" y1="-465.06" y2="-464.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="633.6" x2="632.22" y1="-464.28" y2="-463.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="632.22" x2="630.78" y1="-463.62" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="630.78" x2="629.31" y1="-463.02" y2="-462.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="629.31" x2="627.81" y1="-462.57" y2="-462.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="627.81" x2="626.31" y1="-462.21" y2="-461.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="626.31" x2="624.78" y1="-461.97" y2="-461.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="624.78" x2="623.22" y1="-461.85" y2="-461.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="623.22" x2="621.69" y1="-461.85" y2="-461.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="621.69" x2="620.19" y1="-461.97" y2="-462.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="620.19" x2="618.69" y1="-462.21" y2="-462.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="618.69" x2="617.22" y1="-462.57" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="617.22" x2="615.78" y1="-463.02" y2="-463.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="615.78" x2="614.4" y1="-463.62" y2="-464.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="614.4" x2="613.08" y1="-464.28" y2="-465.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="613.08" x2="611.82" y1="-465.06" y2="-465.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="611.82" x2="610.65" y1="-465.96" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="610.65" x2="609.54" y1="-466.95" y2="-468.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="609.54" x2="608.52" y1="-468.0" y2="-469.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="608.52" x2="607.59" y1="-469.14" y2="-470.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="607.59" x2="606.75" y1="-470.37" y2="-471.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.75" x2="606.0" y1="-471.66" y2="-473.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.0" x2="605.4" y1="-473.01" y2="-474.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="605.4" x2="604.86" y1="-474.42" y2="-475.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.86" x2="604.47" y1="-475.86" y2="-477.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.47" x2="604.17" y1="-477.36" y2="-478.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.17" x2="603.99" y1="-478.86" y2="-480.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.99" x2="603.93" y1="-480.39" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="712.92" x2="493.23" y1="-402.66" y2="-402.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="493.23" x2="493.23" y1="-402.66" y2="-240.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="493.23" x2="712.92" y1="-240.21" y2="-240.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="712.92" x2="712.92" y1="-240.21" y2="-402.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="416.22" x2="416.22" y1="-224.16" y2="-103.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="416.22" x2="354.78" y1="-103.68" y2="-103.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="354.78" x2="354.78" y1="-103.68" y2="-224.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="344.52" x2="344.52" y1="-243.27" y2="-363.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="241.8" x2="169.2" y1="-216.18" y2="-216.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="169.2" x2="169.2" y1="-216.18" y2="-105.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="169.2" x2="241.8" y1="-105.66" y2="-105.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="241.8" x2="241.8" y1="-105.66" y2="-216.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.43" x2="50.49" y1="-153.42" y2="-154.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.49" x2="50.67" y1="-154.95" y2="-156.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.67" x2="50.97" y1="-156.48" y2="-157.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.97" x2="51.36" y1="-157.98" y2="-159.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.36" x2="51.9" y1="-159.48" y2="-160.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.9" x2="52.5" y1="-160.92" y2="-162.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="52.5" x2="53.25" y1="-162.33" y2="-163.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="53.25" x2="54.09" y1="-163.68" y2="-164.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="54.09" x2="55.02" y1="-164.97" y2="-166.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="55.02" x2="56.04" y1="-166.2" y2="-167.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="56.04" x2="57.15" y1="-167.34" y2="-168.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="57.15" x2="58.32" y1="-168.39" y2="-169.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="58.32" x2="59.58" y1="-169.38" y2="-170.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="59.58" x2="60.9" y1="-170.28" y2="-171.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="60.9" x2="62.28" y1="-171.06" y2="-171.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="62.28" x2="63.72" y1="-171.72" y2="-172.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="63.72" x2="65.19" y1="-172.32" y2="-172.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="65.19" x2="66.69" y1="-172.77" y2="-173.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="66.69" x2="68.19" y1="-173.13" y2="-173.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="68.19" x2="69.72" y1="-173.37" y2="-173.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="69.72" x2="71.28" y1="-173.49" y2="-173.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="71.28" x2="72.81" y1="-173.49" y2="-173.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="72.81" x2="74.31" y1="-173.37" y2="-173.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="74.31" x2="75.81" y1="-173.13" y2="-172.77" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="75.81" x2="77.28" y1="-172.77" y2="-172.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="77.28" x2="78.72" y1="-172.32" y2="-171.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="78.72" x2="80.1" y1="-171.72" y2="-171.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="80.1" x2="81.42" y1="-171.06" y2="-170.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="81.42" x2="82.68" y1="-170.28" y2="-169.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="82.68" x2="83.85" y1="-169.38" y2="-168.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="83.85" x2="84.96" y1="-168.39" y2="-167.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="84.96" x2="85.98" y1="-167.34" y2="-166.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="85.98" x2="86.91" y1="-166.2" y2="-164.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="86.91" x2="87.75" y1="-164.97" y2="-163.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.75" x2="88.5" y1="-163.68" y2="-162.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.5" x2="89.1" y1="-162.33" y2="-160.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.1" x2="89.64" y1="-160.92" y2="-159.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.64" x2="90.03" y1="-159.48" y2="-157.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.03" x2="90.33" y1="-157.98" y2="-156.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.33" x2="90.51" y1="-156.48" y2="-154.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.51" x2="90.57" y1="-154.95" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.57" x2="90.51" y1="-153.42" y2="-151.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.51" x2="90.33" y1="-151.89" y2="-150.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.33" x2="90.03" y1="-150.36" y2="-148.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="90.03" x2="89.64" y1="-148.86" y2="-147.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.64" x2="89.1" y1="-147.36" y2="-145.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.1" x2="88.5" y1="-145.92" y2="-144.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.5" x2="87.75" y1="-144.51" y2="-143.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.75" x2="86.91" y1="-143.16" y2="-141.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="86.91" x2="85.98" y1="-141.87" y2="-140.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="85.98" x2="84.96" y1="-140.64" y2="-139.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="84.96" x2="83.85" y1="-139.5" y2="-138.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="83.85" x2="82.68" y1="-138.45" y2="-137.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="82.68" x2="81.42" y1="-137.46" y2="-136.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="81.42" x2="80.1" y1="-136.56" y2="-135.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="80.1" x2="78.72" y1="-135.78" y2="-135.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="78.72" x2="77.28" y1="-135.12" y2="-134.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="77.28" x2="75.81" y1="-134.52" y2="-134.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="75.81" x2="74.31" y1="-134.07" y2="-133.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="74.31" x2="72.81" y1="-133.71" y2="-133.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="72.81" x2="71.28" y1="-133.47" y2="-133.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="71.28" x2="69.72" y1="-133.35" y2="-133.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="69.72" x2="68.19" y1="-133.35" y2="-133.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="68.19" x2="66.69" y1="-133.47" y2="-133.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="66.69" x2="65.19" y1="-133.71" y2="-134.07" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="65.19" x2="63.72" y1="-134.07" y2="-134.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="63.72" x2="62.28" y1="-134.52" y2="-135.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="62.28" x2="60.9" y1="-135.12" y2="-135.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="60.9" x2="59.58" y1="-135.78" y2="-136.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="59.58" x2="58.32" y1="-136.56" y2="-137.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="58.32" x2="57.15" y1="-137.46" y2="-138.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="57.15" x2="56.04" y1="-138.45" y2="-139.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="56.04" x2="55.02" y1="-139.5" y2="-140.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="55.02" x2="54.09" y1="-140.64" y2="-141.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="54.09" x2="53.25" y1="-141.87" y2="-143.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="53.25" x2="52.5" y1="-143.16" y2="-144.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="52.5" x2="51.9" y1="-144.51" y2="-145.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.9" x2="51.36" y1="-145.92" y2="-147.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.36" x2="50.97" y1="-147.36" y2="-148.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.97" x2="50.67" y1="-148.86" y2="-150.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.67" x2="50.49" y1="-150.36" y2="-151.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.49" x2="50.43" y1="-151.89" y2="-153.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="48.93" x2="48.99" y1="-481.92" y2="-483.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="48.99" x2="49.17" y1="-483.45" y2="-484.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.17" x2="49.47" y1="-484.98" y2="-486.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.47" x2="49.86" y1="-486.48" y2="-487.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.86" x2="50.4" y1="-487.98" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.4" x2="51.0" y1="-489.42" y2="-490.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.0" x2="51.75" y1="-490.83" y2="-492.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.75" x2="52.59" y1="-492.18" y2="-493.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="52.59" x2="53.52" y1="-493.47" y2="-494.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="53.52" x2="54.54" y1="-494.7" y2="-495.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="54.54" x2="55.65" y1="-495.84" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="55.65" x2="56.82" y1="-496.89" y2="-497.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="56.82" x2="58.08" y1="-497.88" y2="-498.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="58.08" x2="59.4" y1="-498.78" y2="-499.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="59.4" x2="60.78" y1="-499.56" y2="-500.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="60.78" x2="62.22" y1="-500.22" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="62.22" x2="63.69" y1="-500.82" y2="-501.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="63.69" x2="65.19" y1="-501.27" y2="-501.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="65.19" x2="66.69" y1="-501.63" y2="-501.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="66.69" x2="68.22" y1="-501.87" y2="-501.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="68.22" x2="69.78" y1="-501.99" y2="-501.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="69.78" x2="71.31" y1="-501.99" y2="-501.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="71.31" x2="72.81" y1="-501.87" y2="-501.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="72.81" x2="74.31" y1="-501.63" y2="-501.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="74.31" x2="75.78" y1="-501.27" y2="-500.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="75.78" x2="77.22" y1="-500.82" y2="-500.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="77.22" x2="78.6" y1="-500.22" y2="-499.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="78.6" x2="79.92" y1="-499.56" y2="-498.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="79.92" x2="81.18" y1="-498.78" y2="-497.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="81.18" x2="82.35" y1="-497.88" y2="-496.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="82.35" x2="83.46" y1="-496.89" y2="-495.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="83.46" x2="84.48" y1="-495.84" y2="-494.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="84.48" x2="85.41" y1="-494.7" y2="-493.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="85.41" x2="86.25" y1="-493.47" y2="-492.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="86.25" x2="87.0" y1="-492.18" y2="-490.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.0" x2="87.6" y1="-490.83" y2="-489.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.6" x2="88.14" y1="-489.42" y2="-487.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.14" x2="88.53" y1="-487.98" y2="-486.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.53" x2="88.83" y1="-486.48" y2="-484.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.83" x2="89.01" y1="-484.98" y2="-483.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.01" x2="89.07" y1="-483.45" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.07" x2="89.01" y1="-481.92" y2="-480.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="89.01" x2="88.83" y1="-480.39" y2="-478.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.83" x2="88.53" y1="-478.86" y2="-477.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.53" x2="88.14" y1="-477.36" y2="-475.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="88.14" x2="87.6" y1="-475.86" y2="-474.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.6" x2="87.0" y1="-474.42" y2="-473.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="87.0" x2="86.25" y1="-473.01" y2="-471.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="86.25" x2="85.41" y1="-471.66" y2="-470.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="85.41" x2="84.48" y1="-470.37" y2="-469.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="84.48" x2="83.46" y1="-469.14" y2="-468.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="83.46" x2="82.35" y1="-468.0" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="82.35" x2="81.18" y1="-466.95" y2="-465.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="81.18" x2="79.92" y1="-465.96" y2="-465.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="79.92" x2="78.6" y1="-465.06" y2="-464.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="78.6" x2="77.22" y1="-464.28" y2="-463.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="77.22" x2="75.78" y1="-463.62" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="75.78" x2="74.31" y1="-463.02" y2="-462.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="74.31" x2="72.81" y1="-462.57" y2="-462.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="72.81" x2="71.31" y1="-462.21" y2="-461.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="71.31" x2="69.78" y1="-461.97" y2="-461.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="69.78" x2="68.22" y1="-461.85" y2="-461.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="68.22" x2="66.69" y1="-461.85" y2="-461.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="66.69" x2="65.19" y1="-461.97" y2="-462.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="65.19" x2="63.69" y1="-462.21" y2="-462.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="63.69" x2="62.22" y1="-462.57" y2="-463.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="62.22" x2="60.78" y1="-463.02" y2="-463.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="60.78" x2="59.4" y1="-463.62" y2="-464.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="59.4" x2="58.08" y1="-464.28" y2="-465.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="58.08" x2="56.82" y1="-465.06" y2="-465.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="56.82" x2="55.65" y1="-465.96" y2="-466.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="55.65" x2="54.54" y1="-466.95" y2="-468.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="54.54" x2="53.52" y1="-468.0" y2="-469.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="53.52" x2="52.59" y1="-469.14" y2="-470.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="52.59" x2="51.75" y1="-470.37" y2="-471.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.75" x2="51.0" y1="-471.66" y2="-473.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="51.0" x2="50.4" y1="-473.01" y2="-474.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="50.4" x2="49.86" y1="-474.42" y2="-475.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.86" x2="49.47" y1="-475.86" y2="-477.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.47" x2="49.17" y1="-477.36" y2="-478.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="49.17" x2="48.99" y1="-478.86" y2="-480.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="48.99" x2="48.93" y1="-480.39" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.93" x2="603.99" y1="-151.92" y2="-153.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.99" x2="604.17" y1="-153.45" y2="-154.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.17" x2="604.47" y1="-154.98" y2="-156.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.47" x2="604.86" y1="-156.48" y2="-157.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.86" x2="605.4" y1="-157.98" y2="-159.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="605.4" x2="606.0" y1="-159.42" y2="-160.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.0" x2="606.75" y1="-160.83" y2="-162.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.75" x2="607.59" y1="-162.18" y2="-163.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="607.59" x2="608.52" y1="-163.47" y2="-164.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="608.52" x2="609.54" y1="-164.7" y2="-165.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="609.54" x2="610.65" y1="-165.84" y2="-166.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="610.65" x2="611.82" y1="-166.89" y2="-167.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="611.82" x2="613.08" y1="-167.88" y2="-168.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="613.08" x2="614.4" y1="-168.78" y2="-169.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="614.4" x2="615.78" y1="-169.56" y2="-170.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="615.78" x2="617.22" y1="-170.22" y2="-170.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="617.22" x2="618.69" y1="-170.82" y2="-171.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="618.69" x2="620.19" y1="-171.27" y2="-171.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="620.19" x2="621.69" y1="-171.63" y2="-171.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="621.69" x2="623.22" y1="-171.87" y2="-171.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="623.22" x2="624.78" y1="-171.99" y2="-171.99" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="624.78" x2="626.31" y1="-171.99" y2="-171.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="626.31" x2="627.81" y1="-171.87" y2="-171.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="627.81" x2="629.31" y1="-171.63" y2="-171.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="629.31" x2="630.78" y1="-171.27" y2="-170.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="630.78" x2="632.22" y1="-170.82" y2="-170.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="632.22" x2="633.6" y1="-170.22" y2="-169.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="633.6" x2="634.92" y1="-169.56" y2="-168.78" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="634.92" x2="636.18" y1="-168.78" y2="-167.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="636.18" x2="637.35" y1="-167.88" y2="-166.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="637.35" x2="638.46" y1="-166.89" y2="-165.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="638.46" x2="639.48" y1="-165.84" y2="-164.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="639.48" x2="640.41" y1="-164.7" y2="-163.47" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="640.41" x2="641.25" y1="-163.47" y2="-162.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="641.25" x2="642.0" y1="-162.18" y2="-160.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.0" x2="642.6" y1="-160.83" y2="-159.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.6" x2="643.14" y1="-159.42" y2="-157.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.14" x2="643.53" y1="-157.98" y2="-156.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.53" x2="643.83" y1="-156.48" y2="-154.98" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.83" x2="644.01" y1="-154.98" y2="-153.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.01" x2="644.07" y1="-153.45" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.07" x2="644.01" y1="-151.92" y2="-150.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="644.01" x2="643.83" y1="-150.39" y2="-148.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.83" x2="643.53" y1="-148.86" y2="-147.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.53" x2="643.14" y1="-147.36" y2="-145.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="643.14" x2="642.6" y1="-145.86" y2="-144.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.6" x2="642.0" y1="-144.42" y2="-143.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="642.0" x2="641.25" y1="-143.01" y2="-141.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="641.25" x2="640.41" y1="-141.66" y2="-140.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="640.41" x2="639.48" y1="-140.37" y2="-139.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="639.48" x2="638.46" y1="-139.14" y2="-138.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="638.46" x2="637.35" y1="-138.0" y2="-136.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="637.35" x2="636.18" y1="-136.95" y2="-135.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="636.18" x2="634.92" y1="-135.96" y2="-135.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="634.92" x2="633.6" y1="-135.06" y2="-134.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="633.6" x2="632.22" y1="-134.28" y2="-133.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="632.22" x2="630.78" y1="-133.62" y2="-133.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="630.78" x2="629.31" y1="-133.02" y2="-132.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="629.31" x2="627.81" y1="-132.57" y2="-132.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="627.81" x2="626.31" y1="-132.21" y2="-131.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="626.31" x2="624.78" y1="-131.97" y2="-131.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="624.78" x2="623.22" y1="-131.85" y2="-131.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="623.22" x2="621.69" y1="-131.85" y2="-131.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="621.69" x2="620.19" y1="-131.97" y2="-132.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="620.19" x2="618.69" y1="-132.21" y2="-132.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="618.69" x2="617.22" y1="-132.57" y2="-133.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="617.22" x2="615.78" y1="-133.02" y2="-133.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="615.78" x2="614.4" y1="-133.62" y2="-134.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="614.4" x2="613.08" y1="-134.28" y2="-135.06" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="613.08" x2="611.82" y1="-135.06" y2="-135.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="611.82" x2="610.65" y1="-135.96" y2="-136.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="610.65" x2="609.54" y1="-136.95" y2="-138.0" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="609.54" x2="608.52" y1="-138.0" y2="-139.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="608.52" x2="607.59" y1="-139.14" y2="-140.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="607.59" x2="606.75" y1="-140.37" y2="-141.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.75" x2="606.0" y1="-141.66" y2="-143.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="606.0" x2="605.4" y1="-143.01" y2="-144.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="605.4" x2="604.86" y1="-144.42" y2="-145.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.86" x2="604.47" y1="-145.86" y2="-147.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.47" x2="604.17" y1="-147.36" y2="-148.86" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="604.17" x2="603.99" y1="-148.86" y2="-150.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="2.4" x1="603.99" x2="603.93" y1="-150.39" y2="-151.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="540.51" x2="531.3" y1="-119.85" y2="-119.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="531.3" x2="531.3" y1="-119.85" y2="-112.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="531.3" x2="535.89" y1="-112.95" y2="-115.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="535.89" x2="538.2" y1="-115.23" y2="-115.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="538.2" x2="540.51" y1="-115.23" y2="-112.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="540.51" x2="540.51" y1="-112.95" y2="-108.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="540.51" x2="538.2" y1="-108.33" y2="-106.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="538.2" x2="533.58" y1="-106.02" y2="-106.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="533.58" x2="531.3" y1="-106.02" y2="-108.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="526.68" x2="522.09" y1="-106.02" y2="-110.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="524.37" x2="517.47" y1="-110.64" y2="-110.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="517.47" x2="517.47" y1="-106.02" y2="-119.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="517.47" x2="524.37" y1="-119.85" y2="-119.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="524.37" x2="526.68" y1="-119.85" y2="-117.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="526.68" x2="526.68" y1="-117.54" y2="-112.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="526.68" x2="524.37" y1="-112.95" y2="-110.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="507.54" x2="498.33" y1="-108.84" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="502.92" x2="502.92" y1="-108.84" y2="-122.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="502.92" x2="498.33" y1="-122.64" y2="-118.05" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="493.71" x2="493.71" y1="-120.36" y2="-111.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="493.71" x2="491.4" y1="-111.15" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="491.4" x2="484.5" y1="-108.84" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.5" x2="484.5" y1="-108.84" y2="-122.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.5" x2="491.4" y1="-122.64" y2="-122.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="491.4" x2="493.71" y1="-122.64" y2="-120.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.91" x2="470.7" y1="-122.64" y2="-122.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.7" x2="470.7" y1="-122.64" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.7" x2="479.91" y1="-108.84" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="475.29" x2="470.7" y1="-115.74" y2="-115.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="466.08" x2="456.87" y1="-108.84" y2="-108.84" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="456.87" x2="456.87" y1="-108.84" y2="-122.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="467.88" x2="477.09" y1="-186.42" y2="-186.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="477.09" x2="479.4" y1="-186.42" y2="-188.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.4" x2="479.4" y1="-188.7" y2="-193.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.4" x2="477.09" y1="-193.32" y2="-195.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="477.09" x2="479.4" y1="-200.22" y2="-202.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.4" x2="479.4" y1="-202.53" y2="-207.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.4" x2="477.09" y1="-207.12" y2="-209.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="477.09" x2="472.5" y1="-209.43" y2="-209.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="472.5" x2="470.19" y1="-209.43" y2="-207.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.19" x2="470.19" y1="-207.12" y2="-204.81" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.19" x2="472.5" y1="-204.81" y2="-200.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="472.5" x2="465.6" y1="-200.22" y2="-200.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="465.6" x2="465.6" y1="-200.22" y2="-209.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="467.88" x2="465.6" y1="-195.6" y2="-193.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="465.6" x2="465.6" y1="-193.32" y2="-188.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="465.6" x2="467.88" y1="-188.7" y2="-186.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="378.06" x2="368.85" y1="-229.2" y2="-229.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="368.85" x2="378.06" y1="-229.2" y2="-238.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="378.06" x2="378.06" y1="-238.41" y2="-240.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="378.06" x2="375.75" y1="-240.72" y2="-243.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="375.75" x2="371.16" y1="-243.03" y2="-243.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="371.16" x2="368.85" y1="-243.03" y2="-240.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="364.26" x2="364.26" y1="-243.03" y2="-231.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="364.26" x2="361.95" y1="-231.51" y2="-229.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="361.95" x2="357.33" y1="-229.2" y2="-229.2" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="357.33" x2="355.05" y1="-229.2" y2="-231.51" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="355.05" x2="355.05" y1="-231.51" y2="-243.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="307.83" x2="300.9" y1="-199.35" y2="-192.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="300.9" x2="310.11" y1="-192.45" y2="-192.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="307.83" x2="307.83" y1="-199.35" y2="-185.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="296.31" x2="291.69" y1="-185.52" y2="-190.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="294.0" x2="287.1" y1="-190.14" y2="-190.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="287.1" x2="287.1" y1="-185.52" y2="-199.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="287.1" x2="294.0" y1="-199.35" y2="-199.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="294.0" x2="296.31" y1="-199.35" y2="-197.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="296.31" x2="296.31" y1="-197.04" y2="-192.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="296.31" x2="294.0" y1="-192.45" y2="-190.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="295.41" x2="293.1" y1="-110.85" y2="-108.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="293.1" x2="293.1" y1="-108.54" y2="-99.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="293.1" x2="295.41" y1="-99.33" y2="-97.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="295.41" x2="300.0" y1="-97.02" y2="-97.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="300.0" x2="302.31" y1="-97.02" y2="-99.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="306.9" x2="316.11" y1="-103.95" y2="-103.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="313.83" x2="313.83" y1="-110.85" y2="-97.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="306.9" x2="313.83" y1="-103.95" y2="-110.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="302.31" x2="300.0" y1="-108.54" y2="-110.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="300.0" x2="295.41" y1="-110.85" y2="-110.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="189.33" x2="189.33" y1="-221.52" y2="-235.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="189.33" x2="182.4" y1="-235.35" y2="-228.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="182.4" x2="191.61" y1="-228.45" y2="-228.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="177.81" x2="177.81" y1="-223.83" y2="-235.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="168.6" x2="168.6" y1="-235.35" y2="-223.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="168.6" x2="170.91" y1="-223.83" y2="-221.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="170.91" x2="175.5" y1="-221.52" y2="-221.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="175.5" x2="177.81" y1="-221.52" y2="-223.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="127.83" x2="123.21" y1="-302.52" y2="-302.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="123.21" x2="120.9" y1="-302.52" y2="-304.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="116.31" x2="111.69" y1="-302.52" y2="-307.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="114.0" x2="107.1" y1="-307.14" y2="-307.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="107.1" x2="107.1" y1="-302.52" y2="-316.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="107.1" x2="114.0" y1="-316.35" y2="-316.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="114.0" x2="116.31" y1="-316.35" y2="-314.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="116.31" x2="116.31" y1="-314.04" y2="-309.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="116.31" x2="114.0" y1="-309.45" y2="-307.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="120.9" x2="123.21" y1="-314.04" y2="-316.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="123.21" x2="127.83" y1="-316.35" y2="-316.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="127.83" x2="130.11" y1="-316.35" y2="-314.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.11" x2="130.11" y1="-314.04" y2="-311.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.11" x2="127.83" y1="-311.73" y2="-309.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="127.83" x2="130.11" y1="-309.45" y2="-307.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.11" x2="130.11" y1="-307.14" y2="-304.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.11" x2="127.83" y1="-304.83" y2="-302.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="127.83" x2="125.52" y1="-309.45" y2="-309.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="126.21" x2="123.9" y1="-404.52" y2="-406.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="126.21" x2="130.83" y1="-404.52" y2="-404.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.83" x2="133.11" y1="-404.52" y2="-406.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="133.11" x2="133.11" y1="-406.83" y2="-409.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="133.11" x2="130.83" y1="-409.14" y2="-411.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.83" x2="128.52" y1="-411.45" y2="-411.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.83" x2="133.11" y1="-411.45" y2="-413.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="133.11" x2="133.11" y1="-413.73" y2="-416.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="133.11" x2="130.83" y1="-416.04" y2="-418.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="130.83" x2="126.21" y1="-418.35" y2="-418.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="126.21" x2="123.9" y1="-418.35" y2="-416.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="119.31" x2="117.0" y1="-416.04" y2="-418.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="117.0" x2="112.41" y1="-418.35" y2="-418.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="112.41" x2="110.1" y1="-418.35" y2="-416.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="110.1" x2="110.1" y1="-416.04" y2="-406.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="110.1" x2="112.41" y1="-406.83" y2="-404.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="112.41" x2="117.0" y1="-404.52" y2="-404.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="117.0" x2="119.31" y1="-404.52" y2="-406.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="199.47" x2="199.47" y1="-430.02" y2="-443.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="199.47" x2="206.37" y1="-443.85" y2="-443.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="206.37" x2="208.68" y1="-443.85" y2="-441.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="208.68" x2="208.68" y1="-441.54" y2="-436.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="208.68" x2="206.37" y1="-436.95" y2="-434.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="206.37" x2="199.47" y1="-434.64" y2="-434.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="204.09" x2="208.68" y1="-434.64" y2="-430.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="213.3" x2="222.51" y1="-430.02" y2="-430.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="217.89" x2="217.89" y1="-430.02" y2="-443.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="217.89" x2="213.3" y1="-443.85" y2="-439.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="251.58" x2="251.58" y1="-424.68" y2="-494.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="251.58" x2="288.18" y1="-494.37" y2="-494.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="311.82" x2="348.42" y1="-494.37" y2="-494.37" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="348.42" x2="348.42" y1="-494.37" y2="-424.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="348.42" x2="321.27" y1="-424.68" y2="-397.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="321.27" x2="311.82" y1="-397.5" y2="-397.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="288.18" x2="278.73" y1="-397.5" y2="-397.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="278.73" x2="251.58" y1="-397.5" y2="-424.68" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="289.38" x2="287.07" y1="-400.44" y2="-401.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="287.07" x2="284.82" y1="-401.04" y2="-401.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="284.82" x2="282.6" y1="-401.73" y2="-402.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="282.6" x2="280.44" y1="-402.57" y2="-403.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="280.44" x2="278.31" y1="-403.5" y2="-404.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="278.31" x2="276.24" y1="-404.55" y2="-405.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="276.24" x2="274.26" y1="-405.69" y2="-406.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="274.26" x2="272.31" y1="-406.95" y2="-408.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="272.31" x2="270.45" y1="-408.3" y2="-409.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="270.45" x2="268.65" y1="-409.74" y2="-411.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="268.65" x2="266.94" y1="-411.3" y2="-412.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="266.94" x2="265.32" y1="-412.92" y2="-414.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="265.32" x2="263.76" y1="-414.63" y2="-416.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="263.76" x2="262.32" y1="-416.43" y2="-418.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="262.32" x2="260.97" y1="-418.29" y2="-420.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="260.97" x2="259.74" y1="-420.24" y2="-422.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="259.74" x2="258.6" y1="-422.25" y2="-424.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="258.6" x2="257.55" y1="-424.32" y2="-426.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="257.55" x2="256.62" y1="-426.45" y2="-428.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="256.62" x2="255.78" y1="-428.61" y2="-430.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="255.78" x2="255.09" y1="-430.83" y2="-433.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="255.09" x2="254.49" y1="-433.08" y2="-435.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="254.49" x2="254.01" y1="-435.36" y2="-437.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="254.01" x2="253.65" y1="-437.7" y2="-440.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.65" x2="253.41" y1="-440.04" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.41" x2="253.29" y1="-442.38" y2="-444.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.29" x2="253.29" y1="-444.75" y2="-447.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.29" x2="253.41" y1="-447.09" y2="-449.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.41" x2="253.65" y1="-449.46" y2="-451.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="253.65" x2="254.01" y1="-451.8" y2="-454.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="254.01" x2="254.49" y1="-454.14" y2="-456.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="254.49" x2="255.09" y1="-456.48" y2="-458.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="255.09" x2="255.78" y1="-458.76" y2="-461.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="255.78" x2="256.62" y1="-461.01" y2="-463.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="256.62" x2="257.55" y1="-463.23" y2="-465.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="257.55" x2="258.6" y1="-465.39" y2="-467.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="258.6" x2="259.74" y1="-467.52" y2="-469.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="259.74" x2="260.97" y1="-469.59" y2="-471.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="260.97" x2="262.32" y1="-471.6" y2="-473.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="262.32" x2="263.76" y1="-473.55" y2="-475.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="263.76" x2="265.32" y1="-475.41" y2="-477.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="265.32" x2="266.94" y1="-477.21" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="266.94" x2="268.65" y1="-478.92" y2="-480.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="268.65" x2="270.45" y1="-480.54" y2="-482.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="270.45" x2="272.31" y1="-482.1" y2="-483.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="272.31" x2="274.26" y1="-483.54" y2="-484.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="274.26" x2="276.24" y1="-484.89" y2="-486.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="276.24" x2="278.31" y1="-486.15" y2="-487.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="278.31" x2="280.44" y1="-487.29" y2="-488.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="280.44" x2="282.6" y1="-488.34" y2="-489.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="282.6" x2="284.82" y1="-489.27" y2="-490.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="284.82" x2="287.07" y1="-490.11" y2="-490.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="287.07" x2="289.38" y1="-490.8" y2="-491.4" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="310.62" x2="312.93" y1="-491.4" y2="-490.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="312.93" x2="315.18" y1="-490.8" y2="-490.11" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="315.18" x2="317.4" y1="-490.11" y2="-489.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="317.4" x2="319.56" y1="-489.27" y2="-488.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="319.56" x2="321.69" y1="-488.34" y2="-487.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="321.69" x2="323.76" y1="-487.29" y2="-486.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="323.76" x2="325.74" y1="-486.15" y2="-484.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="325.74" x2="327.69" y1="-484.89" y2="-483.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="327.69" x2="329.55" y1="-483.54" y2="-482.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="329.55" x2="331.35" y1="-482.1" y2="-480.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="331.35" x2="333.06" y1="-480.54" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="333.06" x2="334.68" y1="-478.92" y2="-477.21" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="334.68" x2="336.24" y1="-477.21" y2="-475.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="336.24" x2="337.68" y1="-475.41" y2="-473.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="337.68" x2="339.03" y1="-473.55" y2="-471.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="339.03" x2="340.26" y1="-471.6" y2="-469.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="340.26" x2="341.4" y1="-469.59" y2="-467.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="341.4" x2="342.45" y1="-467.52" y2="-465.39" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="342.45" x2="343.38" y1="-465.39" y2="-463.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="343.38" x2="344.22" y1="-463.23" y2="-461.01" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="344.22" x2="344.91" y1="-461.01" y2="-458.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="344.91" x2="345.51" y1="-458.76" y2="-456.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="345.51" x2="345.99" y1="-456.48" y2="-454.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="345.99" x2="346.35" y1="-454.14" y2="-451.8" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.35" x2="346.59" y1="-451.8" y2="-449.46" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.59" x2="346.71" y1="-449.46" y2="-447.09" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.71" x2="346.71" y1="-447.09" y2="-444.75" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.71" x2="346.59" y1="-444.75" y2="-442.38" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.59" x2="346.35" y1="-442.38" y2="-440.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="346.35" x2="345.99" y1="-440.04" y2="-437.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="345.99" x2="345.51" y1="-437.7" y2="-435.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="345.51" x2="344.91" y1="-435.36" y2="-433.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="344.91" x2="344.22" y1="-433.08" y2="-430.83" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="344.22" x2="343.38" y1="-430.83" y2="-428.61" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="343.38" x2="342.45" y1="-428.61" y2="-426.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="342.45" x2="341.4" y1="-426.45" y2="-424.32" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="341.4" x2="340.26" y1="-424.32" y2="-422.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="340.26" x2="339.03" y1="-422.25" y2="-420.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="339.03" x2="337.68" y1="-420.24" y2="-418.29" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="337.68" x2="336.24" y1="-418.29" y2="-416.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="336.24" x2="334.68" y1="-416.43" y2="-414.63" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="334.68" x2="333.06" y1="-414.63" y2="-412.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="333.06" x2="331.35" y1="-412.92" y2="-411.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="331.35" x2="329.55" y1="-411.3" y2="-409.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="329.55" x2="327.69" y1="-409.74" y2="-408.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="327.69" x2="325.74" y1="-408.3" y2="-406.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="325.74" x2="323.76" y1="-406.95" y2="-405.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="323.76" x2="321.69" y1="-405.69" y2="-404.55" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="321.69" x2="319.56" y1="-404.55" y2="-403.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="319.56" x2="317.4" y1="-403.5" y2="-402.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="317.4" x2="315.18" y1="-402.57" y2="-401.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="315.18" x2="312.93" y1="-401.73" y2="-401.04" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="312.93" x2="310.62" y1="-401.04" y2="-400.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="352.47" x2="352.47" y1="-371.85" y2="-360.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="352.47" x2="354.78" y1="-360.33" y2="-358.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="354.78" x2="359.37" y1="-358.02" y2="-358.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="359.37" x2="361.68" y1="-358.02" y2="-360.33" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="361.68" x2="361.68" y1="-360.33" y2="-371.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="366.3" x2="370.89" y1="-367.23" y2="-371.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="370.89" x2="370.89" y1="-371.85" y2="-358.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="366.3" x2="375.51" y1="-358.02" y2="-358.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="394.44" x2="367.26" y1="-372.18" y2="-399.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="367.26" x2="367.26" y1="-399.36" y2="-492.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="367.26" x2="415.68" y1="-492.66" y2="-492.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="439.32" x2="487.74" y1="-492.66" y2="-492.66" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="487.74" x2="487.74" y1="-492.66" y2="-399.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="487.74" x2="460.56" y1="-399.36" y2="-372.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="460.56" x2="439.32" y1="-372.18" y2="-372.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="415.68" x2="394.44" y1="-372.18" y2="-372.18" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="445.47" x2="445.47" y1="-319.35" y2="-305.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="445.47" x2="454.68" y1="-305.52" y2="-305.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="459.3" x2="468.51" y1="-305.52" y2="-305.52" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="463.89" x2="463.89" y1="-305.52" y2="-319.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="463.89" x2="459.3" y1="-319.35" y2="-314.73" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="459.6" x2="466.5" y1="-278.85" y2="-278.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="466.5" x2="468.81" y1="-278.85" y2="-276.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="468.81" x2="468.81" y1="-276.54" y2="-271.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="468.81" x2="466.5" y1="-271.95" y2="-269.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="466.5" x2="459.6" y1="-269.64" y2="-269.64" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="464.19" x2="468.81" y1="-269.64" y2="-265.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="473.4" x2="482.61" y1="-265.02" y2="-274.23" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="482.61" x2="482.61" y1="-274.23" y2="-276.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="482.61" x2="480.33" y1="-276.54" y2="-278.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="480.33" x2="475.71" y1="-278.85" y2="-278.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="475.71" x2="473.4" y1="-278.85" y2="-276.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="473.4" x2="482.61" y1="-265.02" y2="-265.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="459.6" x2="459.6" y1="-265.02" y2="-278.85" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="439.32" x2="441.87" y1="-375.12" y2="-375.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="441.87" x2="444.39" y1="-375.72" y2="-376.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="444.39" x2="446.88" y1="-376.41" y2="-377.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="446.88" x2="449.34" y1="-377.22" y2="-378.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="449.34" x2="451.74" y1="-378.15" y2="-379.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="451.74" x2="454.11" y1="-379.17" y2="-380.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="454.11" x2="456.42" y1="-380.34" y2="-381.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="456.42" x2="458.67" y1="-381.57" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="458.67" x2="460.86" y1="-382.92" y2="-384.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="460.86" x2="462.99" y1="-384.36" y2="-385.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="462.99" x2="465.03" y1="-385.92" y2="-387.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="465.03" x2="467.01" y1="-387.54" y2="-389.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="467.01" x2="468.9" y1="-389.28" y2="-391.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="468.9" x2="470.7" y1="-391.08" y2="-392.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.7" x2="472.44" y1="-392.97" y2="-394.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="472.44" x2="474.06" y1="-394.95" y2="-397.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="474.06" x2="475.62" y1="-397.02" y2="-399.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="475.62" x2="477.06" y1="-399.12" y2="-401.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="477.06" x2="478.38" y1="-401.31" y2="-403.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="478.38" x2="479.64" y1="-403.59" y2="-405.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.64" x2="480.78" y1="-405.9" y2="-408.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="480.78" x2="481.8" y1="-408.24" y2="-410.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="481.8" x2="482.73" y1="-410.67" y2="-413.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="482.73" x2="483.54" y1="-413.13" y2="-415.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="483.54" x2="484.23" y1="-415.62" y2="-418.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.23" x2="484.8" y1="-418.14" y2="-420.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.8" x2="485.28" y1="-420.69" y2="-423.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.28" x2="485.64" y1="-423.27" y2="-425.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.64" x2="485.88" y1="-425.88" y2="-428.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.88" x2="486.0" y1="-428.49" y2="-431.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="486.0" x2="486.0" y1="-431.1" y2="-433.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="486.0" x2="485.88" y1="-433.74" y2="-436.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.88" x2="485.64" y1="-436.35" y2="-438.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.64" x2="485.28" y1="-438.96" y2="-441.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="485.28" x2="484.8" y1="-441.57" y2="-444.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.8" x2="484.23" y1="-444.15" y2="-446.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="484.23" x2="483.54" y1="-446.7" y2="-449.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="483.54" x2="482.73" y1="-449.22" y2="-451.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="482.73" x2="481.8" y1="-451.71" y2="-454.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="481.8" x2="480.78" y1="-454.17" y2="-456.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="480.78" x2="479.64" y1="-456.6" y2="-458.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="479.64" x2="478.38" y1="-458.94" y2="-461.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="478.38" x2="477.06" y1="-461.25" y2="-463.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="477.06" x2="475.62" y1="-463.53" y2="-465.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="475.62" x2="474.06" y1="-465.72" y2="-467.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="474.06" x2="472.44" y1="-467.82" y2="-469.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="472.44" x2="470.7" y1="-469.89" y2="-471.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="470.7" x2="468.9" y1="-471.87" y2="-473.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="468.9" x2="467.01" y1="-473.76" y2="-475.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="467.01" x2="465.03" y1="-475.56" y2="-477.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="465.03" x2="462.99" y1="-477.3" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="462.99" x2="460.86" y1="-478.92" y2="-480.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="460.86" x2="458.67" y1="-480.48" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="458.67" x2="456.42" y1="-481.92" y2="-483.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="456.42" x2="454.11" y1="-483.27" y2="-484.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="454.11" x2="451.74" y1="-484.5" y2="-485.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="451.74" x2="449.34" y1="-485.67" y2="-486.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="449.34" x2="446.88" y1="-486.69" y2="-487.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="446.88" x2="444.39" y1="-487.62" y2="-488.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="444.39" x2="441.87" y1="-488.43" y2="-489.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="441.87" x2="439.32" y1="-489.12" y2="-489.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="415.68" x2="413.13" y1="-489.72" y2="-489.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="413.13" x2="410.61" y1="-489.12" y2="-488.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="410.61" x2="408.12" y1="-488.43" y2="-487.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="408.12" x2="405.66" y1="-487.62" y2="-486.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="405.66" x2="403.26" y1="-486.69" y2="-485.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="403.26" x2="400.89" y1="-485.67" y2="-484.5" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="400.89" x2="398.58" y1="-484.5" y2="-483.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="398.58" x2="396.33" y1="-483.27" y2="-481.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="396.33" x2="394.14" y1="-481.92" y2="-480.48" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="394.14" x2="392.01" y1="-480.48" y2="-478.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="392.01" x2="389.97" y1="-478.92" y2="-477.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="389.97" x2="387.99" y1="-477.3" y2="-475.56" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="387.99" x2="386.1" y1="-475.56" y2="-473.76" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="386.1" x2="384.3" y1="-473.76" y2="-471.87" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="384.3" x2="382.56" y1="-471.87" y2="-469.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="382.56" x2="380.94" y1="-469.89" y2="-467.82" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="380.94" x2="379.38" y1="-467.82" y2="-465.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="379.38" x2="377.94" y1="-465.72" y2="-463.53" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="377.94" x2="376.62" y1="-463.53" y2="-461.25" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="376.62" x2="375.36" y1="-461.25" y2="-458.94" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="375.36" x2="374.22" y1="-458.94" y2="-456.6" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="374.22" x2="373.2" y1="-456.6" y2="-454.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="373.2" x2="372.27" y1="-454.17" y2="-451.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="372.27" x2="371.46" y1="-451.71" y2="-449.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="371.46" x2="370.77" y1="-449.22" y2="-446.7" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="370.77" x2="370.2" y1="-446.7" y2="-444.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="370.2" x2="369.72" y1="-444.15" y2="-441.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.72" x2="369.36" y1="-441.57" y2="-438.96" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.36" x2="369.12" y1="-438.96" y2="-436.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.12" x2="369.0" y1="-436.35" y2="-433.74" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.0" x2="369.0" y1="-433.74" y2="-431.1" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.0" x2="369.12" y1="-431.1" y2="-428.49" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.12" x2="369.36" y1="-428.49" y2="-425.88" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.36" x2="369.72" y1="-425.88" y2="-423.27" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="369.72" x2="370.2" y1="-423.27" y2="-420.69" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="370.2" x2="370.77" y1="-420.69" y2="-418.14" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="370.77" x2="371.46" y1="-418.14" y2="-415.62" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="371.46" x2="372.27" y1="-415.62" y2="-413.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="372.27" x2="373.2" y1="-413.13" y2="-410.67" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="373.2" x2="374.22" y1="-410.67" y2="-408.24" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="374.22" x2="375.36" y1="-408.24" y2="-405.9" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="375.36" x2="376.62" y1="-405.9" y2="-403.59" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="376.62" x2="377.94" y1="-403.59" y2="-401.31" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="377.94" x2="379.38" y1="-401.31" y2="-399.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="379.38" x2="380.94" y1="-399.12" y2="-397.02" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="380.94" x2="382.56" y1="-397.02" y2="-394.95" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="382.56" x2="384.3" y1="-394.95" y2="-392.97" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="384.3" x2="386.1" y1="-392.97" y2="-391.08" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="386.1" x2="387.99" y1="-391.08" y2="-389.28" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="387.99" x2="389.97" y1="-389.28" y2="-387.54" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="389.97" x2="392.01" y1="-387.54" y2="-385.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="392.01" x2="394.14" y1="-385.92" y2="-384.36" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="394.14" x2="396.33" y1="-384.36" y2="-382.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="396.33" x2="398.58" y1="-382.92" y2="-381.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="398.58" x2="400.89" y1="-381.57" y2="-380.34" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="400.89" x2="403.26" y1="-380.34" y2="-379.17" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="403.26" x2="405.66" y1="-379.17" y2="-378.15" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="405.66" x2="408.12" y1="-378.15" y2="-377.22" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="408.12" x2="410.61" y1="-377.22" y2="-376.41" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="410.61" x2="413.13" y1="-376.41" y2="-375.72" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="1.2" x1="413.13" x2="415.68" y1="-375.72" y2="-375.12" /><rect fill="rgb(255, 255, 255)" height="11.4" width="19.8" x="343.5" y="-349.32" /><rect fill="rgb(255, 255, 255)" height="11.4" width="19.8" x="343.5" y="-329.22" /><rect fill="rgb(255, 255, 255)" height="11.4" width="19.8" x="343.5" y="-309.12" /><rect fill="rgb(255, 255, 255)" height="11.4" width="19.8" x="343.5" y="-289.02" /><rect fill="rgb(255, 255, 255)" height="11.4" width="19.8" x="343.5" y="-268.92" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="466.02" x2="469.71" y1="-498.3" y2="-498.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="469.71" x2="471.57" y1="-498.3" y2="-500.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="475.23" x2="482.64" y1="-498.3" y2="-505.71" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="482.64" x2="482.64" y1="-505.71" y2="-507.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="482.64" x2="480.78" y1="-507.57" y2="-509.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="480.78" x2="477.06" y1="-509.43" y2="-509.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="477.06" x2="475.23" y1="-509.43" y2="-507.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="471.57" x2="469.71" y1="-507.57" y2="-509.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="469.71" x2="466.02" y1="-509.43" y2="-509.43" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="466.02" x2="464.16" y1="-509.43" y2="-507.57" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="464.16" x2="464.16" y1="-507.57" y2="-500.16" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="464.16" x2="466.02" y1="-500.16" y2="-498.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="475.23" x2="482.64" y1="-498.3" y2="-498.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="344.73" x2="337.32" y1="-501.03" y2="-501.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="341.04" x2="341.04" y1="-501.03" y2="-512.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="341.04" x2="337.32" y1="-512.13" y2="-508.44" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="333.69" x2="331.83" y1="-510.3" y2="-512.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="331.83" x2="328.14" y1="-512.13" y2="-512.13" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="328.14" x2="326.28" y1="-512.13" y2="-510.3" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="326.28" x2="326.28" y1="-510.3" y2="-502.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="326.28" x2="328.14" y1="-502.89" y2="-501.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="328.14" x2="331.83" y1="-501.03" y2="-501.03" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.9" x1="331.83" x2="333.69" y1="-501.03" y2="-502.89" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.12" x1="686.07" x2="686.07" y1="-413.67" y2="-229.17" /><rect fill="rgb(255, 255, 255)" height="10.92" width="13.5" x="672.27" y="-239.34" /><rect fill="rgb(255, 255, 255)" height="10.92" width="13.5" x="672.27" y="-414.45" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.75" x1="486.0" x2="487.77" y1="-137.19" y2="-135.42" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.75" x1="487.77" x2="485.7" y1="-135.42" y2="-133.35" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.75" x1="485.7" x2="483.93" y1="-133.35" y2="-135.12" /><line stroke="rgb(255, 255, 255)" stroke-linecap="round" stroke-width="0.75" x1="483.93" x2="486.0" y1="-135.12" y2="-137.19" /><circle cx="482.76" cy="-140.16" fill="rgb(255, 255, 255)" r="1.47" /><circle cx="277.5" cy="-121.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="363.0" cy="-159.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="405.0" cy="-205.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="469.5" cy="-187.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="456.0" cy="-135.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="406.5" cy="-262.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="400.5" cy="-303.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="399.0" cy="-343.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="349.5" cy="-394.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="300.0" cy="-453.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="195.0" cy="-411.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="124.5" cy="-346.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="427.5" cy="-448.92" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="475.5" cy="-297.42" fill="rgb(63, 63, 63)" r="3.54" /><circle cx="516.0" cy="-283.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-298.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-328.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="516.0" cy="-313.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="516.0" cy="-343.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="546.0" cy="-358.92" fill="rgb(63, 63, 63)" r="5.31" /><circle cx="550.5" cy="-504.42" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="520.5" cy="-504.42" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="220.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="190.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="160.5" cy="-508.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-376.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-346.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-316.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-286.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="45.0" cy="-256.92" fill="rgb(63, 63, 63)" r="6.0" /><circle cx="70.5" cy="-153.42" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="69.0" cy="-481.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="624.0" cy="-481.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="624.0" cy="-151.92" fill="rgb(63, 63, 63)" r="18.9" /><circle cx="621.0" cy="-261.42" fill="rgb(63, 63, 63)" r="19.2" /><circle cx="621.0" cy="-381.42" fill="rgb(63, 63, 63)" r="19.2" /></svg> \ No newline at end of file
diff --git a/examples/silk.png b/examples/silk.png
deleted file mode 100644
index b5fd99f..0000000
--- a/examples/silk.png
+++ /dev/null
Binary files differ
diff --git a/examples/silk.svg b/examples/silk.svg
deleted file mode 100644
index b84777d..0000000
--- a/examples/silk.svg
+++ /dev/null
@@ -1,2852 +0,0 @@
-<svg width="1280" height="720">
-<line x1="636.12" y1="161.25" x2="650.34" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.88" y1="161.25" x2="666.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.45" y1="161.25" x2="663.45" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.34" y1="182.58" x2="636.12" y2="182.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="171.9" x2="643.23" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="675.72" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.94" y1="168.36" x2="675.72" y2="168.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.72" y1="171.9" x2="679.29" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.48" y1="171.9" x2="699.48" y2="164.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="730.35" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.78" y1="164.79" x2="726.78" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.24" y1="175.47" x2="730.35" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="175.47" x2="739.08" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.08" y1="168.36" x2="746.19" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="175.47" x2="762.42" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="758.88" y1="161.25" x2="765.99" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="778.26" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="774.72" y1="164.79" x2="774.72" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.42" y1="182.58" x2="762.42" y2="186.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="713.7" y1="175.47" x2="703.02" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="825.78" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.21" y1="175.47" x2="822.21" y2="179.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="182.58" x2="845.97" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="845.97" y1="171.9" x2="849.54" y2="175.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="869.73" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="164.79" x2="873.3" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="893.49" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="164.79" x2="897.03" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="917.25" y1="161.25" x2="927.9" y2="161.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="29.37" y1="15.0" x2="29.37" y2="645.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="31.8" x2="76.17" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="74.07" y1="36.0" x2="78.27" y2="40.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.9" y1="36.0" x2="96.3" y2="36.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="38.1" x2="105.9" y2="42.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.7" y1="29.7" x2="110.1" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.53" y1="31.8" x2="117.63" y2="29.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.33" y1="42.3" x2="129.33" y2="33.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="122.82" y1="81.84" x2="98.01" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.76" y1="81.84" x2="33.03" y2="81.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="33.03" y1="164.52" x2="33.03" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.01" y1="188.16" x2="122.82" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="188.16" x2="190.14" y2="188.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.04" y1="101.1" x2="203.04" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.73" y1="138.9" x2="233.73" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="245.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.37" y1="111.3" x2="251.67" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="89.22" x2="240.48" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.78" y1="46.08" x2="255.15" y2="31.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.32" y1="31.68" x2="298.29" y2="45.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="327.84" y2="61.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.84" y1="51.72" x2="334.92" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.82" y1="51.72" x2="360.93" y2="51.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.37" y1="52.5" x2="411.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="332.73" y1="101.1" x2="332.73" y2="138.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="138.3" x2="351.42" y2="138.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.04" y1="138.9" x2="302.04" y2="101.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="293.37" y2="119.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.37" y1="111.3" x2="287.07" y2="111.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.62" y1="88.92" x2="298.59" y2="74.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.67" y1="151.2" x2="293.67" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="159.0" x2="245.07" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="207.87" x2="212.22" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="212.22" y1="236.82" x2="212.22" y2="242.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.19" y1="236.82" x2="251.19" y2="213.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="266.55" y1="213.18" x2="266.55" y2="207.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.48" y1="266.1" x2="247.29" y2="266.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.85" y1="281.46" x2="224.85" y2="288.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.29" y1="303.9" x2="261.48" y2="303.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.92" y1="288.54" x2="283.92" y2="281.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.3" y1="241.8" x2="409.44" y2="241.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.94" y1="228.18" x2="413.94" y2="221.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="409.44" y1="208.2" x2="399.3" y2="208.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.13" y1="172.68" x2="533.13" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.64" y1="157.32" x2="575.64" y2="172.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.17" y1="95.58" x2="634.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.17" y1="80.1" x2="627.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="70.5" x2="629.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="75.3" x2="654.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="85.98" x2="664.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.17" y1="90.78" x2="649.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.97" y1="80.1" x2="656.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="649.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.57" y1="70.5" x2="664.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="60.0" x2="651.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.77" y1="75.3" x2="687.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.97" y1="70.5" x2="689.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="697.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="687.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.57" y1="80.1" x2="682.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.17" y1="85.98" x2="697.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="712.77" y1="93.18" x2="712.77" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="712.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="70.5" x2="719.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.57" y1="80.1" x2="727.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.77" y1="85.98" x2="727.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="719.97" y1="93.18" x2="717.57" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="93.18" x2="749.97" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="757.17" y1="93.18" x2="742.77" y2="93.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="80.1" x2="757.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.97" y1="80.1" x2="749.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="742.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.57" y1="70.5" x2="757.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.27" y1="75.3" x2="776.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="783.27" y1="85.98" x2="785.67" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="778.47" y1="80.1" x2="778.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="785.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="776.07" y1="70.5" x2="771.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="801.27" y1="80.1" x2="803.67" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="75.3" x2="837.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="839.97" y1="70.5" x2="839.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="847.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.17" y1="85.98" x2="844.77" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.57" y1="80.1" x2="832.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.37" y1="52.5" x2="891.87" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="892.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.77" y1="85.98" x2="902.37" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="88.38" x2="897.57" y2="85.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.97" y1="80.1" x2="899.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.57" y1="70.5" x2="907.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="75.3" x2="927.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.77" y1="85.98" x2="937.17" y2="88.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="929.97" y1="80.1" x2="929.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="922.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.57" y1="70.5" x2="937.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="75.3" x2="957.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="959.97" y1="70.5" x2="959.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="967.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="85.98" x2="967.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="90.78" x2="952.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="957.57" y1="80.1" x2="952.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="75.3" x2="987.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="85.98" x2="997.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="90.78" x2="982.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.97" y1="80.1" x2="989.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="982.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="987.57" y1="70.5" x2="997.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="75.3" x2="1017.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.97" y1="70.5" x2="1019.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1027.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="85.98" x2="1027.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="90.78" x2="1012.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="80.1" x2="1012.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="75.3" x2="1047.57" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="70.5" x2="1049.97" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1057.17" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="85.98" x2="1057.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="90.78" x2="1042.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.57" y1="80.1" x2="1042.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.77" y1="75.3" x2="1077.57" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="85.98" x2="1087.17" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="90.78" x2="1072.77" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1079.97" y1="80.1" x2="1079.97" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1072.77" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1077.57" y1="70.5" x2="1087.17" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.27" y1="75.3" x2="1106.07" y2="80.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="85.98" x2="1115.67" y2="95.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="90.78" x2="1101.27" y2="90.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1108.47" y1="80.1" x2="1108.47" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1101.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1106.07" y1="70.5" x2="1115.67" y2="70.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="90.0" x2="1176.87" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1113.27" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1115.67" y1="103.83" x2="1115.67" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.17" y1="108.63" x2="1072.77" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1089.87" y2="129.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="127.2" x2="1097.1" y2="127.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="139.2" x2="1107.75" y2="141.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="157.2" x2="1107.75" y2="157.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="159.6" x2="1105.35" y2="169.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="171.6" x2="1089.87" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="187.2" x2="1097.1" y2="201.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="192.0" x2="1107.75" y2="194.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="194.4" x2="1105.35" y2="196.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="217.2" x2="1107.75" y2="217.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="224.4" x2="1110.15" y2="229.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="224.4" x2="1089.87" y2="224.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="247.2" x2="1097.1" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="254.4" x2="1114.95" y2="254.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="247.2" x2="1112.55" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="286.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="284.4" x2="1089.87" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="277.2" x2="1114.95" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="307.2" x2="1107.75" y2="307.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="309.6" x2="1105.35" y2="319.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="314.4" x2="1089.87" y2="314.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="337.2" x2="1092.27" y2="337.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="344.4" x2="1097.1" y2="344.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="344.4" x2="1099.5" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="349.2" x2="1105.35" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="344.4" x2="1114.95" y2="346.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1107.75" y1="367.2" x2="1112.55" y2="367.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="374.4" x2="1110.15" y2="379.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1099.5" y2="376.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="374.4" x2="1097.1" y2="374.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="379.2" x2="1097.1" y2="381.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1089.87" y2="399.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="397.2" x2="1097.1" y2="397.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="404.4" x2="1099.5" y2="406.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="404.4" x2="1114.95" y2="404.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="397.2" x2="1112.55" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1099.5" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.67" y1="434.4" x2="1097.1" y2="434.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="439.2" x2="1097.1" y2="441.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1089.87" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1092.27" y1="457.2" x2="1097.1" y2="457.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1097.1" y1="464.4" x2="1099.5" y2="466.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1105.35" y2="459.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="469.2" x2="1107.75" y2="471.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="487.2" x2="1107.75" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="494.4" x2="1114.95" y2="496.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1089.87" y2="487.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="496.8" x2="1099.5" y2="499.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1089.87" y1="517.2" x2="1099.5" y2="526.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="524.4" x2="1112.55" y2="524.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1112.55" y1="547.2" x2="1112.55" y2="561.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1099.5" y2="559.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="556.8" x2="1089.87" y2="547.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="517.2" x2="1089.87" y2="517.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1043.07" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="569.7" x2="1052.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="585.18" x2="1052.67" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.67" y1="589.98" x2="1038.27" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1041.87" y1="600.0" x2="1056.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="592.38" x2="1022.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1020.27" y1="585.18" x2="1010.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="990.27" y2="594.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="592.38" x2="992.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="579.3" x2="992.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.67" y1="574.5" x2="978.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="569.7" x2="962.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.67" y1="574.5" x2="948.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="953.07" y1="585.18" x2="950.67" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="955.47" y1="587.58" x2="957.87" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="585.18" x2="930.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.27" y1="574.5" x2="932.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.67" y1="569.7" x2="932.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="923.07" y1="569.7" x2="918.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="574.5" x2="888.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.67" y1="569.7" x2="902.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="900.27" y1="585.18" x2="902.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.47" y1="585.18" x2="890.67" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="592.38" x2="872.67" y2="587.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="863.07" y2="589.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.47" y1="585.18" x2="858.27" y2="585.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="592.38" x2="828.27" y2="592.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="579.3" x2="842.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.67" y1="574.5" x2="828.27" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="863.07" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="574.5" x2="872.67" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.67" y1="569.7" x2="872.67" y2="579.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.37" y1="607.5" x2="786.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="589.8" x2="770.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.27" y1="580.2" x2="770.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="589.8" x2="752.67" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.67" y1="585.0" x2="738.27" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="753.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="741.87" y2="564.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="747.87" y1="570.0" x2="747.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.87" y1="561.0" x2="777.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="555.0" x2="777.87" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="713.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.67" y1="580.2" x2="722.67" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.67" y1="587.4" x2="692.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="585.0" x2="685.47" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.47" y1="587.4" x2="683.07" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.67" y1="587.4" x2="648.27" y2="587.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.67" y1="587.4" x2="632.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="623.07" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.47" y1="580.2" x2="618.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.67" y1="587.4" x2="602.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.47" y1="580.2" x2="590.67" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="580.2" x2="570.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.67" y1="582.6" x2="525.27" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.47" y1="582.6" x2="518.07" y2="580.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.87" y1="600.0" x2="528.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="495.27" y2="589.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.67" y1="587.4" x2="497.67" y2="582.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="583.08" x2="465.27" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.27" y1="580.68" x2="455.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="590.28" x2="437.67" y2="580.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="585.48" x2="423.27" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="574.8" x2="437.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.67" y1="570.0" x2="423.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="565.2" x2="407.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.67" y1="570.0" x2="393.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.67" y1="580.68" x2="393.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="587.88" x2="377.67" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="574.8" x2="377.67" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.67" y1="570.0" x2="363.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.97" y1="564.27" x2="333.57" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="579.72" x2="333.57" y2="586.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="579.72" x2="305.07" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="584.52" x2="312.27" y2="579.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.07" y1="573.87" x2="305.07" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="569.07" x2="312.27" y2="564.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="558.39" x2="307.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="548.79" x2="314.67" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.67" y1="553.59" x2="319.47" y2="558.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.57" y1="555.99" x2="333.57" y2="551.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.97" y1="558.39" x2="333.57" y2="555.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="319.47" y1="542.94" x2="309.87" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="312.27" y1="533.31" x2="312.27" y2="542.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.27" y1="583.08" x2="363.27" y2="587.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.47" y1="587.88" x2="370.47" y2="585.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.67" y1="580.68" x2="363.27" y2="583.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="570.0" x2="467.67" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.67" y1="565.2" x2="467.67" y2="574.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.07" y1="565.2" x2="453.27" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="497.76" x2="372.36" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.02" y1="492.42" x2="372.54" y2="494.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.36" y1="495.0" x2="372.36" y2="500.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="499.68" x2="346.47" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="487.8" x2="344.97" y2="487.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="472.8" x2="346.47" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.5" y1="462.69" x2="346.53" y2="461.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="457.02" x2="226.77" y2="457.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.6" y1="502.98" x2="341.97" y2="502.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.97" y1="503.01" x2="342.6" y2="503.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.1" y1="485.7" x2="209.1" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="487.8" x2="195.3" y2="475.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="477.3" x2="181.5" y2="481.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="485.7" x2="173.07" y2="477.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="485.7" x2="179.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="173.07" y2="507.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="505.2" x2="179.4" y2="505.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="517.8" x2="186.9" y2="509.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="535.2" x2="186.9" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="545.7" x2="181.5" y2="541.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.07" y1="535.2" x2="173.07" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="539.4" x2="181.5" y2="535.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="535.2" x2="195.3" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="200.7" y2="537.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="545.7" x2="202.8" y2="547.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.0" y1="565.2" x2="202.8" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="567.3" x2="200.7" y2="575.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="577.8" x2="186.9" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.3" y1="565.2" x2="186.9" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="577.8" x2="173.07" y2="577.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.27" y1="577.8" x2="177.27" y2="565.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="620.7" x2="105.6" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="633.3" x2="105.6" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="620.7" x2="97.2" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.8" y1="631.2" x2="91.8" y2="627.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="87.6" y1="624.9" x2="91.8" y2="620.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="620.7" x2="83.4" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="631.2" x2="75.9" y2="633.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.17" y1="457.8" x2="173.07" y2="455.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.5" y1="455.7" x2="179.4" y2="457.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="195.3" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="200.7" y1="457.8" x2="200.7" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.9" y1="457.8" x2="186.9" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="427.5" x2="185.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.37" y1="412.5" x2="203.37" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="105.6" y1="430.8" x2="97.2" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="99.3" y1="424.5" x2="105.6" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="97.2" y1="418.2" x2="97.2" y2="430.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="83.4" y1="430.8" x2="83.4" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.0" y1="420.3" x2="78.0" y2="422.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.57" y1="418.2" x2="75.9" y2="418.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.9" y1="424.5" x2="78.0" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.91" y1="382.5" x2="761.91" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="765.87" y1="367.5" x2="773.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.37" y1="326.82" x2="854.37" y2="363.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.73" y1="375.0" x2="899.04" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.37" y1="363.18" x2="914.37" y2="326.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="899.04" y1="315.0" x2="869.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.4" y1="295.8" x2="862.5" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="854.07" y1="283.2" x2="854.07" y2="295.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.27" y1="287.4" x2="862.5" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="867.9" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.9" y1="285.3" x2="870.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="881.7" y1="283.2" x2="888.0" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="289.5" x2="897.63" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="895.53" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="895.53" y1="285.3" x2="897.63" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="913.53" y2="283.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.43" y1="285.3" x2="911.43" y2="293.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="909.33" y1="291.6" x2="913.53" y2="291.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.37" y1="345.0" x2="869.43" y2="346.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="818.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="825.87" y1="367.5" x2="825.87" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="773.37" y1="360.0" x2="765.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="292.8" x2="784.77" y2="292.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.67" y1="292.8" x2="782.67" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="780.57" y1="280.2" x2="784.77" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="789.78" y1="282.3" x2="791.88" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="292.8" x2="803.61" y2="280.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="803.61" y1="284.4" x2="809.91" y2="284.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="414.57" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.36" y1="425.43" x2="927.36" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="927.54" y1="419.7" x2="931.02" y2="417.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.57" y1="417.9" x2="954.9" y2="417.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.4" y1="415.8" x2="964.5" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="415.8" x2="978.3" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="420.0" x2="992.13" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="990.03" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="990.03" y1="415.8" x2="992.13" y2="413.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="413.7" x2="1003.83" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1003.83" y1="417.9" x2="1008.03" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="976.2" y1="422.1" x2="976.2" y2="415.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.35" y1="427.2" x2="1114.95" y2="427.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="429.9" x2="1195.47" y2="427.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="434.7" x2="1202.7" y2="437.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="439.5" x2="1210.95" y2="441.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="434.7" x2="1215.75" y2="434.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="411.9" x2="1208.55" y2="411.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="399.9" x2="1200.3" y2="397.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="404.7" x2="1200.3" y2="404.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="404.7" x2="1202.7" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="381.9" x2="1200.3" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="374.7" x2="1200.3" y2="374.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="379.5" x2="1195.47" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="381.9" x2="1218.15" y2="381.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="351.9" x2="1208.55" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="339.9" x2="1218.15" y2="349.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1202.7" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.87" y1="344.7" x2="1200.3" y2="344.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="349.5" x2="1200.3" y2="351.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="339.9" x2="1210.95" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="321.9" x2="1208.55" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="314.7" x2="1193.07" y2="314.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="307.5" x2="1218.15" y2="307.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="307.5" x2="1213.35" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1208.55" y2="289.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="291.9" x2="1215.75" y2="291.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="284.7" x2="1215.75" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="284.7" x2="1193.07" y2="284.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1193.07" y2="254.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1213.35" y2="257.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="254.7" x2="1208.55" y2="261.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="261.9" x2="1200.3" y2="247.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1193.07" y2="224.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1208.55" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="219.9" x2="1218.15" y2="229.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="231.9" x2="1200.3" y2="217.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="201.9" x2="1193.07" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="197.1" x2="1210.95" y2="194.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1218.15" y1="189.9" x2="1218.15" y2="199.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="189.9" x2="1210.95" y2="187.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="187.5" x2="1200.3" y2="201.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="171.9" x2="1193.07" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="157.5" x2="1218.15" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="157.5" x2="1213.35" y2="171.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1208.55" y2="139.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.95" y1="141.9" x2="1215.75" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.7" y1="129.9" x2="1200.3" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1197.87" y2="137.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="134.7" x2="1193.07" y2="141.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.35" y1="134.7" x2="1215.75" y2="134.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.17" y1="108.63" x2="1057.17" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="106.23" x2="1049.97" y2="108.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1049.97" y1="108.63" x2="1047.57" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.17" y1="101.43" x2="1027.17" y2="111.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.57" y1="111.06" x2="1027.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1015.17" y1="101.43" x2="1012.77" y2="103.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="111.06" x2="997.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.17" y1="106.23" x2="982.77" y2="106.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.17" y1="103.83" x2="964.77" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.77" y1="101.43" x2="955.17" y2="101.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1193.07" y2="459.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1195.47" y1="457.5" x2="1200.3" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1200.3" y1="464.7" x2="1202.7" y2="467.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="467.1" x2="1213.35" y2="471.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.55" y1="457.5" x2="1218.15" y2="457.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1114.95" y1="577.2" x2="1105.35" y2="577.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1097.1" y2="591.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.5" y1="589.2" x2="1099.5" y2="586.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="607.5" x2="1131.87" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1022.67" y1="579.3" x2="1022.67" y2="569.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1110.12" y1="632.25" x2="1111.62" y2="630.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1119.81" y1="639.75" x2="1119.81" y2="633.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="385.95" x2="847.62" y2="376.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="847.62" y1="381.45" x2="834.12" y2="381.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="372.12" x2="834.12" y2="367.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.12" y1="369.87" x2="845.37" y2="369.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="195.72" y1="590.25" x2="193.02" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="592.95" x2="190.32" y2="592.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.32" y1="590.25" x2="190.32" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.87" y1="598.35" x2="181.47" y2="598.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.17" y1="598.35" x2="184.17" y2="590.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.02" y1="591.6" x2="178.02" y2="597.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="403.83" x2="501.69" y2="250.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="400.86" x2="510.63" y2="401.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.92" y1="389.52" x2="328.92" y2="330.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.19" y1="342.27" x2="311.25" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.77" y1="324.24" x2="352.77" y2="321.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="319.8" x2="357.27" y2="316.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.27" y1="318.3" x2="352.77" y2="318.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.52" y1="315.39" x2="352.77" y2="314.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="261.6" x2="282.36" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="278.7" y2="262.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="278.7" y1="261.6" x2="277.2" y2="260.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.2" y1="260.1" x2="275.7" y2="261.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="270.87" y1="263.4" x2="267.87" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.96" y1="267.9" x2="264.96" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="263.4" x2="266.46" y2="263.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="266.4" x2="264.96" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.02" y1="267.15" x2="261.27" y2="267.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.11" y1="257.85" x2="283.11" y2="260.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.11" y1="257.85" x2="280.11" y2="257.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="248.61" y1="245.85" x2="248.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="244.2" y1="242.1" x2="241.2" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.7" y1="242.1" x2="242.7" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="245.85" x2="239.01" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.61" y1="245.85" x2="246.36" y2="246.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.86" y1="244.35" x2="247.11" y2="244.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.96" y1="244.65" x2="216.96" y2="244.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="244.65" x2="218.46" y2="249.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.52" y1="248.4" x2="215.52" y2="245.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.51" y1="317.1" x2="221.76" y2="317.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="320.1" x2="227.7" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="317.1" x2="229.2" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="319.35" x2="233.61" y2="319.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="317.1" x2="232.86" y2="321.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.76" y1="317.85" x2="224.01" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="332.1" x2="226.2" y2="336.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.7" y1="333.6" x2="229.2" y2="332.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.61" y1="332.85" x2="230.61" y2="333.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.36" y1="334.35" x2="230.61" y2="335.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="233.61" y2="347.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.86" y1="347.1" x2="231.36" y2="347.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.2" y1="347.1" x2="227.7" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.45" y1="348.6" x2="226.2" y2="348.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.2" y1="347.1" x2="226.2" y2="351.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.12" y1="383.4" x2="223.62" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="384.15" x2="222.87" y2="387.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="221.46" y1="383.4" x2="218.46" y2="383.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.02" y1="383.4" x2="215.52" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="384.9" x2="214.02" y2="384.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.02" y1="383.4" x2="214.02" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.46" y1="386.4" x2="219.96" y2="387.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="402.15" x2="174.72" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.22" y1="406.56" x2="174.72" y2="408.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.22" y1="406.56" x2="179.22" y2="409.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.97" y1="403.65" x2="176.97" y2="402.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="370.35" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="482.1" x2="374.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="482.1" x2="378.45" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.26" y1="484.35" x2="371.76" y2="484.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="371.76" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.35" y1="482.1" x2="367.35" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.76" y1="486.6" x2="374.76" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="485.85" x2="381.36" y2="486.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.61" y1="497.1" x2="380.61" y2="497.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.2" y1="500.85" x2="379.2" y2="499.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.7" y1="498.6" x2="379.2" y2="497.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.2" y1="497.1" x2="376.2" y2="501.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.12" y1="548.4" x2="345.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="550.65" x2="344.37" y2="552.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.96" y1="552.9" x2="339.96" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="548.4" x2="341.46" y2="548.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.46" y1="551.4" x2="339.96" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.02" y1="552.15" x2="336.27" y2="552.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.27" y1="572.55" x2="297.27" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.52" y1="576.24" x2="297.27" y2="576.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.52" y1="574.8" x2="292.77" y2="574.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.01" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="478.68" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.65" y1="446.73" x2="488.61" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.12" y1="446.97" x2="490.11" y2="447.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.77" y1="461.76" x2="481.32" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.87" y1="461.52" x2="478.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.86" y1="461.25" x2="480.63" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="461.01" x2="478.89" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.95" y1="460.74" x2="480.36" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="460.5" x2="478.98" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="460.23" x2="480.27" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.3" y1="459.99" x2="479.07" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="459.72" x2="480.33" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.45" y1="459.48" x2="479.16" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.22" y1="459.21" x2="480.6" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.84" y1="458.97" x2="479.25" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.31" y1="458.7" x2="481.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.62" y1="458.46" x2="479.52" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.76" y1="458.7" x2="475.53" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="458.46" x2="480.21" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.94" y1="458.19" x2="482.22" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.95" y1="457.44" x2="475.86" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.71" y1="457.68" x2="481.53" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.23" y1="457.44" x2="485.64" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="457.17" x2="481.68" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.1" y1="456.93" x2="487.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.31" y1="456.66" x2="482.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="456.93" x2="476.19" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.98" y1="457.17" x2="482.4" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.94" y1="456.42" x2="489.0" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.48" y1="456.15" x2="483.39" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.72" y1="456.42" x2="476.7" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.4" y1="456.66" x2="483.27" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.81" y1="455.91" x2="489.96" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.32" y1="455.64" x2="484.23" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.59" y1="455.91" x2="477.39" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.03" y1="456.15" x2="484.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.68" y1="455.4" x2="490.65" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.95" y1="455.13" x2="485.16" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.46" y1="455.4" x2="478.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.84" y1="455.64" x2="485.01" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.61" y1="454.89" x2="491.19" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="454.62" x2="486.09" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.33" y1="454.89" x2="480.09" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.04" y1="455.13" x2="485.91" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.54" y1="454.38" x2="491.49" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.58" y1="454.11" x2="487.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.23" y1="454.38" x2="482.25" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.33" y1="454.11" x2="487.65" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.5" y1="453.87" x2="491.64" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="453.6" x2="487.95" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.1" y1="453.87" x2="484.29" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.07" y1="453.6" x2="488.52" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.43" y1="453.36" x2="491.82" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.88" y1="453.09" x2="488.88" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.97" y1="453.36" x2="485.67" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.21" y1="453.09" x2="489.42" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.36" y1="452.85" x2="491.91" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="452.58" x2="489.45" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.6" y1="452.58" x2="486.78" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="452.34" x2="489.54" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.39" y1="452.34" x2="491.94" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.97" y1="452.07" x2="489.3" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.45" y1="452.07" x2="487.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.14" y1="451.83" x2="489.36" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.21" y1="451.83" x2="491.97" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.94" y1="451.56" x2="489.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="451.56" x2="487.2" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.2" y1="451.32" x2="489.18" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.03" y1="451.32" x2="491.94" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.91" y1="451.05" x2="488.94" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.09" y1="451.05" x2="487.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.11" y1="450.81" x2="489.0" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.85" y1="450.81" x2="491.88" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.85" y1="450.54" x2="488.79" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.94" y1="450.54" x2="487.05" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.9" y1="450.3" x2="488.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.7" y1="450.3" x2="491.79" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.73" y1="450.03" x2="488.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.76" y1="450.03" x2="486.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.45" y1="449.79" x2="488.67" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.52" y1="449.79" x2="491.64" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.55" y1="449.52" x2="488.43" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.58" y1="449.52" x2="486.09" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.58" y1="449.28" x2="488.49" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.34" y1="449.28" x2="491.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.28" y1="449.01" x2="488.25" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.4" y1="449.01" x2="484.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.17" y1="447.99" x2="490.41" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.17" y1="447.75" x2="477.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.76" y1="447.99" x2="483.3" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.3" y1="447.75" x2="483.84" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.82" y1="447.99" x2="485.01" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="448.26" x2="490.65" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="448.5" x2="486.42" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.15" y1="448.26" x2="482.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.28" y1="448.5" x2="476.28" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.49" y1="448.26" x2="482.79" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="482.64" y1="449.01" x2="480.87" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.75" y1="449.28" x2="475.8" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.68" y1="449.52" x2="480.21" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.39" y1="449.28" x2="481.56" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.26" y1="449.01" x2="475.92" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.07" y1="448.77" x2="481.77" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.83" y1="448.5" x2="487.29" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.56" y1="448.77" x2="491.1" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.84" y1="447.48" x2="477.42" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.81" y1="447.24" x2="489.48" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.07" y1="446.46" x2="479.19" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.91" y1="446.22" x2="487.23" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.82" y1="445.95" x2="481.77" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.35" y1="448.77" x2="488.34" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.54" y1="452.85" x2="486.57" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.78" y1="454.62" x2="481.17" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.58" y1="452.07" x2="475.05" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.02" y1="452.07" x2="475.08" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.05" y1="451.83" x2="475.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.56" y1="451.83" x2="479.61" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.61" y1="451.56" x2="476.04" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="451.56" x2="475.08" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.11" y1="451.32" x2="476.61" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="451.32" x2="479.67" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.73" y1="451.05" x2="477.0" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.12" y1="451.05" x2="475.17" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.23" y1="450.81" x2="477.63" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.48" y1="450.81" x2="479.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.0" y1="450.54" x2="477.96" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.17" y1="450.54" x2="475.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.41" y1="450.3" x2="478.68" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.44" y1="450.3" x2="480.15" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.42" y1="450.03" x2="478.95" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="450.03" x2="475.5" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="449.79" x2="479.7" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.43" y1="449.79" x2="480.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.08" y1="449.52" x2="479.91" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.81" y1="457.68" x2="484.41" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.15" y1="457.95" x2="480.39" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.63" y1="458.19" x2="475.56" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.65" y1="457.95" x2="481.08" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.64" y1="458.97" x2="475.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.21" x2="479.61" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.55" y1="459.48" x2="475.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.47" y1="459.72" x2="479.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.46" y1="459.99" x2="475.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.53" y1="460.23" x2="479.43" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="460.5" x2="475.56" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.59" y1="460.74" x2="479.34" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.28" y1="461.01" x2="475.65" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.74" y1="461.25" x2="479.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="461.52" x2="475.8" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.89" y1="461.76" x2="479.16" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.19" y1="462.03" x2="475.98" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.1" y1="462.27" x2="480.06" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.06" y1="462.54" x2="486.84" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="462.27" x2="490.65" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.8" y1="462.03" x2="487.71" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="487.74" y1="462.27" x2="479.1" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="480.9" y1="462.54" x2="476.25" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.37" y1="462.78" x2="476.85" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.61" y1="463.05" x2="482.58" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.0" y1="463.29" x2="484.23" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.53" y1="463.05" x2="490.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="462.78" x2="485.31" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.1" y1="463.05" x2="482.01" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.74" y1="462.78" x2="476.4" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="477.18" y1="463.56" x2="489.39" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.72" y1="463.29" x2="483.72" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="483.63" y1="463.47" x2="489.0" y2="461.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.05" y1="462.78" x2="485.97" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.12" y1="462.54" x2="490.47" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.92" y1="461.76" x2="488.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.61" y1="462.03" x2="484.35" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.28" y1="461.76" x2="489.24" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.88" y1="461.52" x2="491.01" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="461.25" x2="489.24" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.57" y1="461.01" x2="491.25" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.34" y1="460.74" x2="489.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.26" y1="460.5" x2="491.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.25" y1="460.5" x2="486.72" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.81" y1="460.23" x2="491.46" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.49" y1="459.99" x2="486.9" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.93" y1="459.72" x2="491.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="491.13" y1="460.23" x2="490.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.86" y1="460.74" x2="486.57" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.39" y1="461.01" x2="490.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.05" y1="461.25" x2="486.12" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="485.76" y1="461.52" x2="489.63" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.06" y1="463.8" x2="477.54" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.05" y1="464.07" x2="488.64" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="488.13" y1="464.31" x2="478.53" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.13" y1="464.58" x2="487.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="486.66" y1="464.82" x2="480.0" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="481.38" y1="465.09" x2="485.28" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.92" x2="499.02" y2="464.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.8" x2="499.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.56" x2="494.43" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="463.29" x2="499.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="463.05" x2="494.43" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.78" x2="499.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="462.54" x2="494.43" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="462.27" x2="511.02" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.26" y1="462.03" x2="494.43" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.76" x2="511.41" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.53" y1="461.52" x2="504.78" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="461.25" x2="511.68" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="461.01" x2="505.92" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.22" y1="460.74" x2="511.98" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.04" y1="460.5" x2="506.52" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.82" y1="460.23" x2="512.13" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.22" y1="459.99" x2="507.0" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="459.72" x2="512.28" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.37" y1="459.48" x2="507.39" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="459.21" x2="512.46" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="458.97" x2="507.66" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.78" y1="458.7" x2="512.61" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.7" y1="458.46" x2="507.9" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.99" y1="458.19" x2="512.76" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="457.95" x2="508.05" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.08" y1="457.68" x2="512.82" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.85" y1="457.44" x2="508.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="457.17" x2="512.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.94" y1="456.93" x2="508.2" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.66" x2="512.97" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="456.42" x2="508.2" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="456.15" x2="513.03" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.91" x2="508.2" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.64" x2="513.09" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="455.4" x2="508.2" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="455.13" x2="513.06" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.06" y1="454.89" x2="508.2" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.2" y1="454.62" x2="513.03" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.03" y1="454.38" x2="508.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.11" y1="454.11" x2="513.0" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="453.87" x2="508.08" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.05" y1="453.6" x2="512.97" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.97" y1="453.36" x2="507.99" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.96" y1="453.09" x2="512.94" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.91" y1="452.85" x2="507.93" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="452.58" x2="512.85" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.79" y1="452.34" x2="507.84" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.72" y1="452.07" x2="512.73" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.67" y1="451.83" x2="507.63" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.54" y1="451.56" x2="512.61" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.52" y1="451.32" x2="507.39" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.21" y1="451.05" x2="512.4" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.31" y1="450.81" x2="507.03" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.79" y1="450.54" x2="512.19" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="450.3" x2="506.49" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.16" y1="450.03" x2="511.98" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.83" y1="449.79" x2="505.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.84" y1="449.52" x2="511.68" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.5" y1="449.28" x2="499.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="449.52" x2="502.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.69" y1="449.79" x2="499.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.03" x2="501.21" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="450.3" x2="499.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="450.54" x2="500.58" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.34" y1="450.81" x2="499.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.05" x2="500.16" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.01" y1="451.32" x2="499.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="451.56" x2="499.89" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="451.83" x2="499.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.83" x2="494.43" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.07" x2="499.32" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.53" y1="452.34" x2="494.43" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="452.58" x2="499.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="452.85" x2="494.43" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.09" x2="499.29" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="453.36" x2="494.43" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="453.6" x2="499.2" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="453.87" x2="494.43" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.11" x2="499.14" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.38" x2="494.43" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="454.62" x2="499.14" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="454.89" x2="494.43" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.13" x2="499.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.4" x2="494.43" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="455.64" x2="499.14" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="455.91" x2="494.43" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.15" x2="499.14" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.14" y1="456.42" x2="494.43" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="456.66" x2="499.11" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.11" y1="456.93" x2="494.43" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.17" x2="499.14" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.17" y1="457.44" x2="494.43" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="457.68" x2="499.2" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.26" y1="457.95" x2="494.43" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.19" x2="499.32" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.41" y1="458.46" x2="494.43" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="458.7" x2="499.5" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.62" y1="458.97" x2="494.43" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.21" x2="499.74" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.89" y1="459.48" x2="494.43" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="459.72" x2="500.04" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.25" y1="459.99" x2="494.43" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.23" x2="500.49" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.7" y1="460.5" x2="494.43" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="460.74" x2="501.0" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.33" y1="461.01" x2="494.43" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="461.25" x2="501.66" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.26" y1="461.52" x2="494.43" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.21" y1="464.07" x2="499.02" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.02" y1="464.31" x2="496.56" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.91" y1="464.58" x2="499.02" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.31" y1="463.56" x2="509.7" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="463.8" x2="500.55" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.85" y1="464.07" x2="508.95" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.53" y1="464.31" x2="501.27" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.84" y1="464.58" x2="507.99" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.36" y1="464.82" x2="502.5" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.31" y1="465.09" x2="506.19" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.03" y1="463.29" x2="500.07" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.83" y1="463.05" x2="510.33" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.57" y1="462.78" x2="499.59" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.35" y1="462.54" x2="510.81" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.73" y1="460.74" x2="520.89" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.74" y1="460.5" x2="515.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.26" x2="515.4" y2="459.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.94" y1="461.25" x2="521.37" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.55" y1="461.43" x2="522.12" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.51" y1="462.27" x2="531.75" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.72" y1="462.3" x2="531.21" y2="463.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="460.23" x2="520.62" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.53" y1="459.99" x2="515.52" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.49" y1="459.72" x2="520.47" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="459.48" x2="515.46" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="459.21" x2="520.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.07" y1="461.01" x2="521.55" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.7" y1="461.52" x2="516.06" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.21" y1="461.76" x2="522.18" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.53" y1="462.03" x2="525.15" y2="461.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.78" y2="451.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="453.09" x2="520.26" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.14" y1="452.85" x2="515.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.07" y1="452.58" x2="520.02" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.93" y1="452.34" x2="515.01" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="452.07" x2="519.87" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.81" y1="451.83" x2="514.95" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.56" x2="519.78" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="451.32" x2="514.95" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.95" y1="451.05" x2="519.78" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.78" y1="450.87" x2="519.87" y2="450.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.01" y1="450.54" x2="519.87" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.96" y1="450.3" x2="515.04" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.1" y1="450.03" x2="520.11" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.29" y1="449.79" x2="515.13" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.19" y1="449.52" x2="520.62" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.04" y1="449.28" x2="515.28" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.4" y1="449.01" x2="522.39" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.98" y1="449.01" x2="532.2" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.23" y1="448.77" x2="515.49" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.58" y1="448.5" x2="532.23" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.26" y1="448.26" x2="515.7" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.88" y1="447.99" x2="527.25" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.46" y1="447.99" x2="532.29" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.35" y1="447.75" x2="527.55" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.61" y1="447.48" x2="532.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.5" y1="447.24" x2="527.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.73" y1="446.97" x2="532.56" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.62" y1="446.73" x2="527.79" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.85" y1="446.46" x2="532.71" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.46" x2="540.27" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.28" x2="535.35" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="446.73" x2="535.35" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="446.97" x2="540.27" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.24" x2="535.35" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.48" x2="540.27" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="447.75" x2="535.35" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="447.99" x2="540.27" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.26" x2="535.35" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="448.5" x2="540.27" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="448.77" x2="535.35" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.35" y1="449.01" x2="540.27" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.28" x2="535.35" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="449.52" x2="540.27" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="449.79" x2="535.38" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.03" x2="540.27" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.3" x2="535.38" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="450.54" x2="540.27" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="450.81" x2="535.38" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.05" x2="540.27" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.32" x2="535.38" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="451.56" x2="540.27" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="451.83" x2="535.38" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.07" x2="540.27" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.34" x2="535.38" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="452.58" x2="540.27" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="452.85" x2="535.38" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.09" x2="540.27" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.36" x2="535.38" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="453.6" x2="540.27" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="453.87" x2="535.38" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.11" x2="540.27" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.38" x2="535.38" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="454.62" x2="540.27" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="454.89" x2="535.38" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.13" x2="540.27" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.27" y1="455.4" x2="535.38" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="455.64" x2="540.3" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.3" y1="455.91" x2="535.38" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.15" x2="540.33" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.36" y1="456.42" x2="535.38" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="456.66" x2="540.39" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.45" y1="456.93" x2="535.38" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.17" x2="540.51" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.6" y1="457.44" x2="535.38" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="457.68" x2="540.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.81" y1="457.95" x2="535.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.19" x2="540.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.02" y1="458.46" x2="535.38" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="458.7" x2="541.2" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.41" y1="458.97" x2="535.38" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.21" x2="541.59" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.86" y1="459.48" x2="535.38" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="459.72" x2="542.16" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.46" y1="459.99" x2="535.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.23" x2="542.91" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.54" y1="460.5" x2="535.38" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="460.74" x2="547.14" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.01" x2="535.38" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.25" x2="539.97" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.21" y1="461.25" x2="547.14" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="461.52" x2="540.42" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.57" y1="461.76" x2="547.14" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.03" x2="540.75" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.9" y1="462.27" x2="547.14" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="462.54" x2="541.08" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.26" y1="462.78" x2="547.14" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.05" x2="541.44" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="541.65" y1="463.29" x2="547.14" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="463.56" x2="541.98" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.34" y1="463.8" x2="547.14" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.07" x2="542.73" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.12" y1="464.31" x2="547.14" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.14" y1="464.58" x2="543.54" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="544.05" y1="464.82" x2="547.14" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.66" y1="465.09" x2="545.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.09" x2="554.25" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.33" x2="549.36" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="465.6" x2="554.25" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="465.84" x2="549.36" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.11" x2="554.25" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.35" x2="549.36" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="466.62" x2="554.25" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="466.86" x2="549.36" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.13" x2="554.25" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.37" x2="549.36" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="467.64" x2="554.25" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="467.88" x2="549.36" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.15" x2="554.25" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.39" x2="549.36" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="468.66" x2="554.25" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="468.9" x2="549.36" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="469.02" x2="554.25" y2="471.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="469.17" x2="554.25" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.41" x2="550.08" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="550.53" y1="469.68" x2="554.25" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="469.92" x2="550.98" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.43" y1="470.19" x2="554.25" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.43" x2="551.85" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="552.3" y1="470.7" x2="554.25" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="470.94" x2="552.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.2" y1="471.21" x2="554.25" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="471.45" x2="553.65" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.1" y1="471.72" x2="554.25" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.72" x2="562.41" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.62" y1="471.96" x2="560.04" y2="471.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.23" x2="562.86" y2="472.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.07" y1="472.47" x2="560.04" y2="472.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="472.74" x2="563.31" y2="472.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.52" y1="472.98" x2="560.04" y2="472.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.25" x2="563.76" y2="473.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="473.49" x2="560.04" y2="473.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="473.76" x2="564.21" y2="473.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.42" y1="474.0" x2="560.04" y2="474.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.27" x2="564.66" y2="474.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.9" y1="474.51" x2="560.04" y2="474.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="474.78" x2="565.11" y2="474.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.35" y1="475.02" x2="560.04" y2="475.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.29" x2="565.56" y2="475.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.53" x2="560.04" y2="475.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="475.8" x2="566.07" y2="475.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.8" y1="475.56" x2="566.82" y2="476.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="490.32" x2="571.05" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="490.08" x2="571.05" y2="489.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.34" y1="476.04" x2="560.04" y2="476.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.31" x2="566.64" y2="476.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="476.55" x2="560.04" y2="476.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="476.82" x2="567.36" y2="476.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.81" y1="477.06" x2="560.04" y2="477.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.33" x2="568.35" y2="477.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.09" y1="477.57" x2="560.04" y2="477.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="477.84" x2="574.11" y2="477.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.92" y1="478.08" x2="560.04" y2="478.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.35" x2="575.46" y2="478.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="478.59" x2="560.04" y2="478.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="478.86" x2="576.42" y2="478.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.78" y1="479.1" x2="560.04" y2="479.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.37" x2="577.14" y2="479.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.5" y1="479.61" x2="560.04" y2="479.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="479.88" x2="577.8" y2="479.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.07" y1="480.12" x2="560.04" y2="480.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.39" x2="578.34" y2="480.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.61" y1="480.63" x2="560.04" y2="480.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="480.9" x2="578.88" y2="480.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.09" y1="481.14" x2="560.04" y2="481.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.41" x2="579.27" y2="481.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.48" y1="481.65" x2="560.04" y2="481.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="481.92" x2="579.69" y2="481.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.9" y1="482.16" x2="560.04" y2="482.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.43" x2="580.02" y2="482.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.17" y1="482.67" x2="560.04" y2="482.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="482.94" x2="580.32" y2="482.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.47" y1="483.18" x2="560.04" y2="483.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.45" x2="580.62" y2="483.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.74" y1="483.69" x2="560.04" y2="483.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="483.96" x2="580.89" y2="483.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.01" y1="484.2" x2="560.04" y2="484.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.47" x2="581.1" y2="484.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="484.71" x2="560.04" y2="484.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="484.98" x2="581.28" y2="484.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.37" y1="485.22" x2="560.04" y2="485.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="485.49" x2="581.46" y2="485.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.55" y1="485.73" x2="560.04" y2="485.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.0" x2="581.64" y2="486.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.73" y1="486.24" x2="560.04" y2="486.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="486.51" x2="581.76" y2="486.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="486.75" x2="560.04" y2="486.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="487.02" x2="567.18" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.93" y1="487.02" x2="581.85" y2="487.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.88" y1="487.26" x2="568.98" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.55" y1="487.53" x2="581.94" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.97" y1="487.77" x2="569.97" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.27" y1="488.04" x2="582.0" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="488.28" x2="570.51" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.69" y1="488.55" x2="582.09" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="488.79" x2="570.84" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="489.06" x2="582.06" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.06" y1="489.3" x2="571.02" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.05" y1="489.57" x2="582.06" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.03" y1="489.81" x2="571.08" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="490.59" x2="582.03" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.0" y1="490.83" x2="570.93" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.81" y1="491.1" x2="581.97" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.91" y1="491.34" x2="570.69" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.51" y1="491.61" x2="581.85" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.79" y1="491.85" x2="570.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.06" y1="492.12" x2="581.73" y2="492.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.64" y1="492.36" x2="569.82" y2="492.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.58" y1="492.63" x2="581.55" y2="492.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="492.87" x2="569.34" y2="492.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.1" y1="493.14" x2="581.37" y2="493.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.25" y1="493.38" x2="568.86" y2="493.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.62" y1="493.65" x2="581.13" y2="493.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.98" y1="493.89" x2="568.41" y2="493.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.23" y1="494.16" x2="580.86" y2="494.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.68" y1="494.4" x2="568.05" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.9" y1="494.67" x2="575.73" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="494.91" x2="567.72" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.54" y1="495.18" x2="574.89" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.53" y1="495.42" x2="567.36" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="495.69" x2="574.17" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.87" y1="495.93" x2="567.06" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.94" y1="496.2" x2="573.6" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="496.44" x2="566.85" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.76" y1="496.71" x2="573.21" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.03" y1="496.95" x2="566.73" y2="496.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.7" y1="497.22" x2="572.88" y2="497.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.79" y1="497.46" x2="566.67" y2="497.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="497.73" x2="572.67" y2="497.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.61" y1="497.97" x2="566.7" y2="497.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.73" y1="498.24" x2="572.58" y2="498.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.58" y1="498.48" x2="566.79" y2="498.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="498.75" x2="572.64" y2="498.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.73" y1="498.99" x2="567.0" y2="498.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.12" y1="499.26" x2="572.82" y2="499.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.97" y1="499.5" x2="567.3" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="499.77" x2="573.12" y2="499.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.39" y1="500.01" x2="567.69" y2="500.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.96" y1="500.28" x2="573.66" y2="500.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.14" y1="500.52" x2="568.23" y2="500.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.53" y1="500.79" x2="575.19" y2="500.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.52" y1="501.3" x2="569.22" y2="501.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.89" y1="501.03" x2="575.91" y2="501.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.18" y1="500.82" x2="576.18" y2="500.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.95" y1="501.54" x2="569.7" y2="501.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.21" y1="501.81" x2="574.35" y2="501.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="502.05" x2="571.14" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.71" x2="578.43" y2="496.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="496.44" x2="578.73" y2="496.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.06" y1="496.2" x2="578.34" y2="496.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.34" y1="495.93" x2="579.36" y2="495.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.66" y1="495.69" x2="578.34" y2="495.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.28" y1="495.42" x2="579.87" y2="495.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.08" y1="495.18" x2="578.1" y2="495.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.86" y1="494.91" x2="580.29" y2="494.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.5" y1="494.67" x2="577.5" y2="494.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.92" y1="491.34" x2="562.95" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.41" y1="491.1" x2="565.56" y2="491.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.23" y1="490.83" x2="561.99" y2="490.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.66" y1="490.59" x2="564.87" y2="490.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.69" y1="490.32" x2="561.36" y2="490.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.15" y1="490.08" x2="564.6" y2="490.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.54" y1="489.81" x2="560.94" y2="489.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.76" y1="489.57" x2="564.51" y2="489.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.51" y1="489.3" x2="560.64" y2="489.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="489.06" x2="564.54" y2="489.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.6" y1="488.79" x2="560.37" y2="488.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.31" y1="488.55" x2="564.69" y2="488.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.84" y1="488.28" x2="560.22" y2="488.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.16" y1="488.04" x2="565.02" y2="488.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.26" y1="487.77" x2="560.13" y2="487.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.1" y1="487.53" x2="565.65" y2="487.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.1" y1="487.26" x2="560.07" y2="487.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.45" y1="491.61" x2="565.17" y2="491.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.17" y1="471.45" x2="560.04" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="471.21" x2="561.93" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.72" y1="470.94" x2="560.04" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.7" x2="561.48" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="470.43" x2="560.04" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="470.19" x2="561.03" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.82" y1="469.92" x2="560.04" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.68" x2="560.58" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="469.41" x2="560.04" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.04" y1="469.17" x2="560.13" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.88" y1="464.58" x2="566.4" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.16" y1="464.31" x2="560.64" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.37" y1="464.07" x2="565.89" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.62" y1="463.8" x2="560.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="463.56" x2="565.35" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.11" y1="463.29" x2="559.62" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.35" y1="463.05" x2="564.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.57" y1="462.78" x2="559.11" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.84" y1="462.54" x2="564.33" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.06" y1="462.27" x2="558.6" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.33" y1="462.03" x2="563.79" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.55" y1="461.76" x2="558.09" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.82" y1="461.52" x2="563.28" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.01" y1="461.25" x2="557.58" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.31" y1="461.01" x2="562.77" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.5" y1="460.74" x2="557.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.8" y1="460.5" x2="562.23" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.96" y1="460.23" x2="556.56" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.29" y1="459.99" x2="561.72" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.45" y1="459.72" x2="556.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.78" y1="459.48" x2="561.18" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.94" y1="459.21" x2="555.54" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.27" y1="458.97" x2="560.67" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.4" y1="458.7" x2="555.03" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.76" y1="458.46" x2="560.16" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="458.19" x2="554.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.19" x2="549.36" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.95" x2="559.74" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.89" y1="457.68" x2="549.36" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="457.44" x2="560.07" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.25" y1="457.17" x2="549.36" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.93" x2="560.4" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.58" y1="456.66" x2="549.36" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="456.42" x2="560.76" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.91" y1="456.15" x2="549.36" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.91" x2="561.09" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.27" y1="455.64" x2="549.36" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="455.4" x2="561.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.6" y1="455.13" x2="549.36" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.89" x2="561.78" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.93" y1="454.62" x2="556.47" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.44" y1="454.62" x2="549.36" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="454.38" x2="556.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.9" y1="454.11" x2="549.36" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.87" x2="555.66" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.39" y1="453.6" x2="549.36" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="453.36" x2="555.12" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="453.09" x2="549.36" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.85" x2="554.61" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.34" y1="452.58" x2="549.36" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="452.34" x2="554.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="452.07" x2="549.36" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.83" x2="554.31" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.56" x2="549.36" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="451.32" x2="554.31" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="451.05" x2="549.36" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.81" x2="554.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.54" x2="549.36" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="450.3" x2="554.31" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="450.03" x2="549.36" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.79" x2="554.31" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.52" x2="549.36" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="449.28" x2="554.31" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="449.01" x2="549.36" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.77" x2="554.31" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="448.5" x2="549.36" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="448.26" x2="554.31" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.99" x2="549.36" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.75" x2="554.31" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="447.48" x2="549.36" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="447.24" x2="554.31" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.97" x2="549.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.73" x2="554.31" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.31" y1="446.46" x2="549.36" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="446.22" x2="554.31" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.56" y1="449.52" x2="565.35" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.5" y1="449.28" x2="559.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.86" y1="449.01" x2="565.68" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.86" y1="448.77" x2="560.01" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.19" y1="448.5" x2="566.01" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.19" y1="448.26" x2="560.34" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.49" y1="447.99" x2="566.37" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.52" y1="447.75" x2="560.64" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="560.79" y1="447.48" x2="566.7" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.88" y1="447.24" x2="560.94" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.12" y1="446.97" x2="567.03" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.21" y1="446.73" x2="561.27" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.42" y1="446.46" x2="567.39" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.46" x2="575.85" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.22" x2="570.93" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.16" x2="575.85" y2="446.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="446.73" x2="575.85" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="446.97" x2="570.93" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.24" x2="575.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.48" x2="570.93" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="447.75" x2="575.85" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="447.99" x2="570.93" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.26" x2="575.85" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="448.5" x2="570.93" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="448.77" x2="575.85" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.01" x2="570.93" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.28" x2="575.85" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="449.52" x2="570.93" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="449.79" x2="575.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.03" x2="570.93" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.3" x2="575.85" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="450.54" x2="570.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="450.81" x2="575.85" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.05" x2="570.93" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.32" x2="575.85" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="451.56" x2="570.93" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="451.83" x2="575.85" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.07" x2="570.93" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.34" x2="575.85" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="452.58" x2="570.93" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="452.85" x2="575.85" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.09" x2="570.93" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.36" x2="575.85" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="453.6" x2="570.93" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="453.87" x2="575.85" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.11" x2="570.93" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.38" x2="575.85" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="454.62" x2="570.93" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="454.89" x2="575.85" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.13" x2="570.93" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.4" x2="575.85" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="455.64" x2="570.93" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="455.91" x2="575.85" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.15" x2="570.93" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.42" x2="575.85" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="456.66" x2="570.93" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="456.93" x2="575.85" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.17" x2="570.93" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.44" x2="575.85" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="457.68" x2="570.93" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="457.95" x2="575.85" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.19" x2="570.93" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.46" x2="575.85" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="458.7" x2="570.93" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="458.97" x2="575.85" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.21" x2="570.93" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.48" x2="575.85" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="459.72" x2="570.93" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="459.99" x2="575.85" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.23" x2="570.93" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="460.5" x2="575.85" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="460.74" x2="570.93" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.01" x2="575.85" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.85" y1="461.25" x2="570.93" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.93" y1="461.52" x2="575.85" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="464.82" x2="570.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.99" y1="465.09" x2="575.88" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.33" x2="571.02" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.02" y1="465.6" x2="575.88" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="465.84" x2="571.05" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="466.11" x2="575.88" y2="466.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.88" y1="466.35" x2="571.08" y2="466.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.11" y1="466.62" x2="575.94" y2="466.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.97" y1="466.86" x2="571.14" y2="466.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.17" y1="467.13" x2="576.06" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.15" y1="467.37" x2="571.17" y2="467.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.2" y1="467.64" x2="576.33" y2="467.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.6" y1="467.88" x2="571.23" y2="467.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.32" y1="468.15" x2="577.41" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.0" y1="468.15" x2="579.72" y2="468.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.39" x2="571.38" y2="468.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.5" y1="468.66" x2="579.72" y2="468.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="468.9" x2="571.62" y2="468.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.77" y1="469.17" x2="579.72" y2="469.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.41" x2="571.95" y2="469.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.13" y1="469.68" x2="579.72" y2="469.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="469.92" x2="572.4" y2="469.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="572.67" y1="470.19" x2="579.72" y2="470.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.43" x2="572.94" y2="470.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.33" y1="470.7" x2="579.72" y2="470.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="470.94" x2="573.75" y2="470.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.23" y1="471.21" x2="579.72" y2="471.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.72" y1="471.45" x2="574.89" y2="471.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="576.12" y1="471.72" x2="578.7" y2="471.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.58" x2="569.25" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.01" y1="464.31" x2="579.39" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="464.07" x2="568.74" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.5" y1="463.8" x2="579.39" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.56" x2="568.23" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.99" y1="463.29" x2="579.39" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="463.05" x2="567.72" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.48" y1="462.78" x2="579.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.54" x2="567.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.97" y1="462.27" x2="579.39" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.39" y1="462.03" x2="566.7" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.46" y1="461.76" x2="579.39" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.76" x2="586.02" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.52" x2="581.13" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="461.25" x2="586.02" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="461.01" x2="581.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.74" x2="586.02" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="460.5" x2="581.13" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="460.23" x2="586.02" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.99" x2="581.13" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.72" x2="586.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="459.48" x2="581.13" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="459.21" x2="586.02" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.97" x2="581.13" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.7" x2="586.02" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="458.46" x2="581.13" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="458.19" x2="586.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.95" x2="581.13" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.68" x2="586.02" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="457.44" x2="581.13" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="457.17" x2="586.02" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.93" x2="581.13" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.66" x2="586.02" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="456.42" x2="581.13" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="456.15" x2="586.02" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.91" x2="581.13" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.64" x2="586.02" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="455.4" x2="581.13" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="455.13" x2="586.02" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.89" x2="581.13" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.62" x2="586.02" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="454.38" x2="581.13" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="454.11" x2="586.02" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.87" x2="581.13" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.6" x2="586.02" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="453.36" x2="581.13" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="453.09" x2="586.02" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="452.94" x2="586.02" y2="464.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.05" y1="452.85" x2="581.13" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.58" x2="586.08" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.14" y1="452.34" x2="581.13" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="452.07" x2="586.17" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.26" y1="451.83" x2="581.16" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.19" y1="451.56" x2="586.38" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.47" y1="451.32" x2="581.19" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.22" y1="451.05" x2="586.59" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.77" y1="450.81" x2="581.25" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.31" y1="450.54" x2="586.95" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="587.25" y1="450.3" x2="581.37" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.46" y1="450.03" x2="587.61" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="588.18" y1="449.79" x2="581.52" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.58" y1="449.52" x2="589.41" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.86" y1="449.52" x2="598.5" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="449.28" x2="581.7" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.82" y1="449.01" x2="593.7" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="449.01" x2="598.5" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.77" x2="593.76" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="448.5" x2="598.5" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="448.26" x2="593.76" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.99" x2="598.5" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.75" x2="593.76" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="447.48" x2="598.5" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="447.24" x2="593.76" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.97" x2="598.5" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="446.73" x2="593.76" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.76" y1="446.46" x2="598.5" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.46" x2="606.42" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.22" x2="601.44" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.16" x2="601.44" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.25" x2="609.09" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.43" y1="461.01" x2="607.86" y2="460.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.95" x2="606.51" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.54" y1="458.19" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="456.66" x2="606.42" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.93" x2="601.44" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.17" x2="606.42" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.45" y1="457.44" x2="601.44" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="457.68" x2="606.48" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.6" y1="458.46" x2="601.44" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="458.7" x2="606.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.75" y1="458.97" x2="601.44" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.21" x2="606.87" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="459.48" x2="601.44" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="459.72" x2="607.14" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.29" y1="459.99" x2="601.44" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.23" x2="607.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.77" y1="460.5" x2="601.44" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="460.74" x2="608.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.57" y1="462.27" x2="618.0" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.12" y1="462.03" x2="601.44" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.27" x2="606.21" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.3" y2="462.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.12" x2="606.21" y2="464.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="446.73" x2="606.42" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="446.97" x2="601.44" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.24" x2="606.42" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.48" x2="601.44" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="447.75" x2="606.42" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="447.99" x2="601.44" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.26" x2="606.42" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="448.5" x2="601.44" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="448.77" x2="606.42" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.01" x2="601.44" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.28" x2="606.42" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="449.52" x2="601.44" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="449.79" x2="606.42" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.03" x2="601.44" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.3" x2="606.42" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="450.54" x2="601.44" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="450.81" x2="606.42" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.05" x2="601.44" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.32" x2="606.42" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="451.56" x2="601.44" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="451.83" x2="606.42" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.07" x2="601.44" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.34" x2="606.42" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="452.58" x2="601.44" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="452.85" x2="606.42" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.09" x2="601.44" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.36" x2="606.42" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="453.6" x2="601.44" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="453.87" x2="606.42" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.11" x2="601.44" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.38" x2="606.42" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="454.62" x2="601.44" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="454.89" x2="606.42" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.13" x2="601.44" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.4" x2="606.42" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="455.64" x2="601.44" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="455.91" x2="606.42" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.15" x2="601.44" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.15" x2="593.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.91" x2="598.5" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.64" x2="593.52" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="455.4" x2="598.5" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="455.13" x2="593.52" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="454.89" x2="598.5" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.62" x2="593.52" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="454.38" x2="598.5" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="454.11" x2="593.49" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.46" y1="453.87" x2="598.5" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.6" x2="593.46" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.43" y1="453.36" x2="598.5" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="453.09" x2="593.37" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.34" y1="452.85" x2="598.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.58" x2="593.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.25" y1="452.34" x2="598.5" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="452.07" x2="593.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="451.83" x2="598.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.56" x2="593.01" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.92" y1="451.32" x2="598.5" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="451.05" x2="592.74" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.59" y1="450.81" x2="598.5" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.54" x2="592.35" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="450.3" x2="598.5" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="450.03" x2="591.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.15" y1="449.79" x2="598.5" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.49" y1="448.77" x2="581.94" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.09" y1="448.5" x2="593.31" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.1" y1="448.26" x2="582.21" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.39" y1="447.99" x2="592.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.62" y1="447.75" x2="582.6" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="582.78" y1="447.48" x2="592.35" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="592.08" y1="447.24" x2="582.96" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.26" y1="446.97" x2="591.78" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="591.42" y1="446.73" x2="583.68" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.13" y1="446.46" x2="591.06" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.64" y1="446.22" x2="584.7" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.45" y1="445.95" x2="589.53" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.42" x2="598.5" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="456.66" x2="593.52" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="456.93" x2="598.5" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.17" x2="593.52" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.44" x2="598.5" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="457.68" x2="593.52" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="457.95" x2="598.5" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.19" x2="593.52" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.46" x2="598.5" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="458.7" x2="593.52" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="458.97" x2="598.5" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.21" x2="593.52" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.48" x2="598.5" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="459.72" x2="593.52" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="459.99" x2="598.5" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.23" x2="593.52" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="460.5" x2="598.5" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="460.74" x2="593.52" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.01" x2="598.5" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.25" x2="593.52" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="461.52" x2="598.5" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="461.76" x2="593.52" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.03" x2="598.5" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.27" x2="593.52" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="462.54" x2="598.5" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="462.78" x2="593.52" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.05" x2="598.5" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.29" x2="593.52" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="463.56" x2="598.5" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="463.8" x2="593.52" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.07" x2="598.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.5" y1="464.31" x2="593.52" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.52" y1="464.58" x2="598.5" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.58" x2="606.21" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="464.31" x2="601.44" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="464.07" x2="606.21" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.8" x2="601.44" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.56" x2="606.21" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="463.29" x2="601.44" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="463.05" x2="606.21" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.21" y1="462.78" x2="601.44" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="462.54" x2="606.21" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.3" y1="462.12" x2="606.42" y2="462.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="462.54" x2="617.85" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.7" y1="462.78" x2="606.96" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.17" y1="463.05" x2="617.52" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.31" y1="463.29" x2="607.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.65" y1="463.56" x2="617.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.8" y1="463.8" x2="607.92" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.31" y1="464.07" x2="616.5" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="616.17" y1="464.31" x2="608.7" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.12" y1="464.58" x2="615.66" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.12" y1="464.82" x2="609.81" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.89" y1="465.09" x2="614.01" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.94" y1="461.25" x2="618.39" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.45" y1="461.01" x2="612.45" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.75" y1="460.74" x2="618.51" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.57" y1="460.5" x2="612.99" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="460.23" x2="618.6" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.66" y1="459.99" x2="613.32" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="617.01" y1="463.65" x2="617.46" y2="463.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.3" y1="461.52" x2="601.44" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="601.44" y1="461.76" x2="618.21" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.69" y1="459.72" x2="613.44" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.59" y1="459.48" x2="618.69" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.72" y1="459.21" x2="613.65" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.74" y1="458.97" x2="618.75" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.73" x2="618.75" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="457.44" x2="613.92" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.17" x2="618.75" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.93" x2="613.92" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.66" x2="618.75" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="456.42" x2="613.92" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="456.15" x2="618.75" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.91" x2="613.92" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.64" x2="618.75" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="455.4" x2="613.92" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="455.13" x2="618.75" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.89" x2="613.92" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.62" x2="618.75" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="454.38" x2="613.92" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="454.11" x2="618.75" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.87" x2="613.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.6" x2="618.75" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="453.36" x2="613.92" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="453.09" x2="618.75" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.85" x2="613.92" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.58" x2="618.75" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="452.34" x2="613.92" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="452.07" x2="618.75" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.83" x2="613.92" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.56" x2="618.75" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="451.32" x2="613.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="451.05" x2="618.75" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.81" x2="613.92" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.54" x2="618.75" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="450.3" x2="613.92" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="450.03" x2="618.75" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.79" x2="613.92" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.52" x2="618.75" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="449.28" x2="613.92" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="449.01" x2="618.75" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.77" x2="613.92" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="448.5" x2="618.75" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="448.26" x2="613.92" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.99" x2="618.75" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.75" x2="613.92" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="447.48" x2="618.75" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="447.24" x2="613.92" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.97" x2="618.75" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="446.73" x2="613.92" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="446.46" x2="618.75" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="465.15" x2="612.69" y2="465.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.89" y1="465.09" x2="614.58" y2="464.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.7" x2="613.8" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.86" y1="458.46" x2="618.75" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="458.19" x2="613.89" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="457.95" x2="618.75" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.78" y1="459.09" x2="606.6" y2="458.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.78" y1="458.73" x2="618.72" y2="459.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.52" y1="465.18" x2="610.77" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.69" y1="462.36" x2="606.54" y2="462.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="608.31" y2="460.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="611.07" y1="461.43" x2="611.46" y2="461.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.01" y1="463.89" x2="607.47" y2="463.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="613.53" y2="459.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.23" y1="460.17" x2="612.96" y2="460.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="607.89" y1="460.62" x2="607.44" y2="460.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="457.38" x2="629.22" y2="459.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.89" y1="457.44" x2="633.81" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="457.17" x2="628.86" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="456.93" x2="633.78" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.75" y1="456.66" x2="628.86" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="456.42" x2="633.72" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="456.15" x2="628.83" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.83" y1="455.91" x2="633.72" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="455.64" x2="628.83" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="455.4" x2="633.75" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.78" y1="455.13" x2="628.8" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.89" x2="633.81" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.81" y1="454.62" x2="628.8" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.8" y1="454.38" x2="633.84" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.87" y1="454.11" x2="628.83" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.86" y1="453.87" x2="633.93" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.99" y1="453.6" x2="628.89" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="453.36" x2="634.05" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="453.09" x2="628.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.01" y1="452.85" x2="634.14" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.2" y1="452.58" x2="629.07" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="452.34" x2="634.26" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.38" y1="452.07" x2="629.22" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.28" y1="451.83" x2="634.5" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.62" y1="451.56" x2="629.37" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.49" y1="451.32" x2="634.77" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="451.05" x2="629.61" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.73" y1="450.81" x2="635.16" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.43" y1="450.54" x2="629.85" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.97" y1="450.3" x2="635.73" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.12" y1="450.03" x2="630.12" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.3" y1="449.79" x2="636.66" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.56" y1="449.52" x2="630.48" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.63" y1="449.28" x2="645.81" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.99" y1="449.52" x2="639.54" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.29" y1="449.79" x2="646.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.32" y1="450.03" x2="640.8" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.13" y1="450.3" x2="646.47" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.62" y1="450.54" x2="641.43" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.64" y1="450.81" x2="646.74" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.83" y1="451.05" x2="641.85" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.0" y1="451.32" x2="646.92" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.04" y1="451.56" x2="642.12" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.24" y1="451.83" x2="647.13" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.22" y1="452.07" x2="642.33" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.42" y1="452.34" x2="647.31" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.34" y1="452.58" x2="642.51" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.54" y1="452.85" x2="647.37" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.4" y1="453.09" x2="642.57" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.63" y1="449.01" x2="630.84" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.08" y1="448.77" x2="645.39" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.12" y1="448.5" x2="631.32" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.56" y1="448.26" x2="644.88" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.61" y1="447.99" x2="631.83" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.16" y1="447.75" x2="644.34" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="447.48" x2="632.49" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.88" y1="447.24" x2="643.56" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.2" y1="446.97" x2="633.36" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.84" y1="446.73" x2="642.72" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.12" y1="446.46" x2="634.59" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.52" y1="446.22" x2="641.4" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.38" y1="445.95" x2="636.93" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.42" y1="456.45" x2="606.42" y2="457.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="628.92" y1="457.68" x2="633.9" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.96" y1="457.95" x2="628.98" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.04" y1="458.19" x2="634.02" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.11" y1="458.46" x2="629.1" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.13" y1="458.7" x2="634.17" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.29" y1="458.97" x2="629.19" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.25" y1="459.21" x2="634.41" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.56" y1="459.48" x2="629.37" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.46" y1="459.72" x2="634.68" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.8" y1="459.99" x2="629.58" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.67" y1="460.23" x2="635.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.19" y1="460.5" x2="629.79" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="629.88" y1="460.74" x2="635.37" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.58" y1="461.01" x2="630.03" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.21" y1="461.25" x2="635.85" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.24" y1="461.52" x2="630.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.54" y1="461.76" x2="637.05" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.9" y1="461.76" x2="646.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.53" y1="461.52" x2="640.62" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.04" y1="461.25" x2="646.65" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.74" y1="461.01" x2="641.37" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.61" y1="460.74" x2="646.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.92" y1="460.5" x2="641.82" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="641.97" y1="460.23" x2="647.01" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.1" y1="459.99" x2="642.12" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.21" y1="459.72" x2="647.13" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.19" y1="459.48" x2="642.3" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.33" y1="459.21" x2="647.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.28" y1="458.97" x2="642.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="458.7" x2="647.34" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="458.19" x2="654.09" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.03" y1="457.95" x2="649.38" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.32" y1="457.68" x2="654.0" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="457.44" x2="649.26" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="457.17" x2="653.91" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="457.14" x2="653.82" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.77" y1="459.72" x2="654.6" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.48" y1="459.48" x2="649.71" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.68" y1="459.21" x2="654.36" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="458.97" x2="649.62" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.56" y1="458.7" x2="654.18" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="653.88" y2="457.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.93" x2="649.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.08" y1="456.66" x2="653.88" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.64" y1="456.36" x2="668.58" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.44" y1="451.32" x2="662.79" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.91" y1="451.56" x2="667.5" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.83" x2="663.03" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.15" y1="452.07" x2="667.65" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.71" y1="452.34" x2="663.24" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.36" y1="452.58" x2="667.8" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="452.85" x2="663.45" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.51" y1="453.09" x2="667.92" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.01" y1="453.36" x2="663.57" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.63" y1="453.6" x2="668.07" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.13" y1="453.87" x2="663.69" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="454.11" x2="668.16" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="454.38" x2="663.81" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="454.62" x2="668.25" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.28" y1="454.89" x2="663.84" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.13" x2="668.31" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.34" y1="455.4" x2="663.84" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="455.64" x2="668.37" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.4" y1="455.91" x2="663.84" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.84" y1="456.15" x2="668.43" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.43" y1="456.42" x2="663.84" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.78" y1="456.66" x2="668.4" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.37" y1="456.93" x2="663.75" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.72" y1="457.17" x2="668.34" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.31" y1="457.44" x2="663.69" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.66" y1="457.68" x2="668.28" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.22" y1="457.95" x2="663.63" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.6" y1="458.19" x2="668.19" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.16" y1="458.46" x2="663.57" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.48" y1="458.7" x2="668.13" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="668.07" y1="458.97" x2="663.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.24" y1="459.21" x2="667.98" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.86" y1="459.48" x2="663.12" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.0" y1="459.72" x2="667.74" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="459.99" x2="662.88" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="460.23" x2="667.53" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.41" y1="460.5" x2="662.64" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.4" y1="460.74" x2="667.29" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.17" y1="461.01" x2="662.13" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.86" y1="461.25" x2="667.05" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.96" y1="461.52" x2="661.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.11" y1="461.76" x2="666.78" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.57" y1="462.03" x2="660.63" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.89" y1="462.27" x2="666.36" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.12" y1="462.54" x2="658.92" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="462.78" x2="665.91" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="463.05" x2="658.92" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.29" x2="665.4" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.04" y1="463.56" x2="658.92" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.92" y1="463.8" x2="664.65" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.29" y1="464.07" x2="658.92" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.31" x2="663.93" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.57" y1="464.58" x2="658.95" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="464.82" x2="663.12" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="465.09" x2="658.95" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.33" x2="661.65" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.15" y1="465.6" x2="658.95" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="658.77" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.26" y2="462.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.27" x2="651.42" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.21" y1="462.03" x2="656.97" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.49" y1="461.76" x2="651.03" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.82" y1="461.52" x2="656.04" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.62" y1="461.25" x2="650.61" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.43" y1="461.01" x2="655.44" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="460.74" x2="650.22" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.01" y1="460.5" x2="655.08" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="460.23" x2="649.89" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.5" y1="458.46" x2="654.15" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.21" y1="458.91" x2="654.69" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.88" y1="456.42" x2="649.02" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.96" y1="456.15" x2="653.85" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.91" x2="649.02" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.05" y1="455.64" x2="653.85" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.85" y1="455.4" x2="649.08" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="455.13" x2="653.85" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.82" y1="454.89" x2="649.17" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.2" y1="454.62" x2="653.88" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.91" y1="454.38" x2="649.26" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.29" y1="454.11" x2="653.94" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.97" y1="453.87" x2="649.32" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.38" y1="453.6" x2="654.0" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="453.36" x2="649.41" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.44" y1="453.09" x2="654.15" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="452.85" x2="649.5" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.53" y1="452.58" x2="654.3" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.39" y1="452.34" x2="649.56" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.62" y1="452.07" x2="654.48" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.6" y1="451.83" x2="649.65" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.71" y1="451.56" x2="654.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.32" x2="649.86" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.04" y1="451.05" x2="654.99" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.14" y1="450.81" x2="650.19" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.37" y1="450.54" x2="655.53" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.95" y1="450.3" x2="650.52" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.67" y1="450.03" x2="656.34" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="656.76" y1="449.79" x2="650.85" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.0" y1="449.52" x2="657.3" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.03" y1="449.52" x2="666.45" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.6" y1="449.79" x2="660.78" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.47" y1="450.03" x2="666.78" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.93" y1="450.3" x2="661.74" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.04" y1="450.54" x2="667.08" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.26" y1="450.81" x2="662.31" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.58" y1="451.05" x2="667.38" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.24" y1="449.28" x2="651.18" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.33" y1="449.01" x2="665.97" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.7" y1="448.77" x2="651.51" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="448.5" x2="665.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.19" y1="448.26" x2="652.2" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="447.99" x2="664.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.53" y1="447.75" x2="653.01" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.43" y1="447.48" x2="664.17" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.81" y1="447.24" x2="653.85" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.24" y1="446.97" x2="663.24" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.49" y1="446.73" x2="654.66" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.5" y1="446.46" x2="661.74" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.94" y1="446.22" x2="657.39" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="656.55" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="651.36" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.69" y1="455.31" x2="663.66" y2="456.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="648.99" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.76" y1="451.65" x2="663.15" y2="452.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.87" y1="451.65" x2="654.57" y2="452.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.39" y1="458.31" x2="663.15" y2="459.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.89" y1="461.04" x2="661.5" y2="461.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="462.06" x2="658.53" y2="465.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.6" x2="656.67" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.98" y1="465.33" x2="658.38" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="465.09" x2="655.47" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.96" y1="464.82" x2="658.38" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.58" x2="654.45" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.94" y1="464.31" x2="658.38" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="464.07" x2="653.4" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.89" y1="463.8" x2="658.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.56" x2="652.44" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.23" y1="463.29" x2="658.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="463.05" x2="652.02" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.81" y1="462.78" x2="658.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.38" y1="462.54" x2="651.63" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="646.23" y1="462.03" x2="630.72" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.87" y1="462.27" x2="646.08" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.93" y1="462.54" x2="631.11" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.38" y1="462.78" x2="645.75" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.51" y1="463.05" x2="631.62" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.86" y1="463.29" x2="645.27" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="645.03" y1="463.56" x2="632.1" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="632.46" y1="463.8" x2="644.76" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.4" y1="464.07" x2="632.85" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.21" y1="464.31" x2="644.01" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.62" y1="464.58" x2="633.57" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.14" y1="464.82" x2="643.02" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.39" y1="465.09" x2="634.71" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="635.31" y1="465.33" x2="641.37" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="640.02" y1="465.6" x2="636.48" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="655.71" y2="461.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.7" y1="446.52" x2="661.65" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.05" y1="450.03" x2="661.56" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.59" y1="451.14" x2="667.23" y2="450.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.46" x2="675.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.28" x2="670.59" y2="446.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.72" x2="694.5" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.59" y1="459.48" x2="694.2" y2="460.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="446.73" x2="670.59" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="446.97" x2="675.69" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.24" x2="670.59" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.48" x2="675.69" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="447.75" x2="670.59" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="447.99" x2="675.69" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.26" x2="670.59" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="448.5" x2="675.69" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="448.77" x2="670.59" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.01" x2="675.69" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.28" x2="670.59" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="449.52" x2="675.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="449.79" x2="670.59" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.03" x2="675.69" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.3" x2="670.59" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="450.54" x2="675.69" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="450.81" x2="670.59" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.05" x2="675.69" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.32" x2="670.59" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="451.56" x2="675.69" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="451.83" x2="670.59" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.07" x2="675.69" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.34" x2="670.59" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="452.58" x2="675.69" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="452.85" x2="670.59" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.09" x2="675.69" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.36" x2="670.59" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="453.6" x2="675.69" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="453.87" x2="670.59" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.11" x2="675.69" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.38" x2="670.59" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="454.62" x2="675.69" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="454.89" x2="670.59" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.13" x2="675.69" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.4" x2="670.59" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="455.64" x2="675.69" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="455.91" x2="670.59" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.15" x2="675.69" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.42" x2="670.59" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="456.66" x2="675.69" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="456.93" x2="670.59" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.17" x2="675.69" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.44" x2="670.59" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="457.68" x2="675.69" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.69" y1="457.95" x2="670.59" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.19" x2="675.69" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="458.46" x2="670.59" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="458.7" x2="675.69" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.75" y1="458.97" x2="670.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.21" x2="675.81" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.9" y1="459.48" x2="670.59" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="459.72" x2="676.02" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.17" y1="459.99" x2="670.59" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.23" x2="676.38" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.59" y1="460.5" x2="670.59" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="460.74" x2="676.83" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.04" y1="461.01" x2="670.59" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.25" x2="677.31" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.67" y1="461.52" x2="670.59" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="461.76" x2="678.42" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="680.49" y1="461.76" x2="690.3" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.52" y1="461.52" x2="681.12" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.48" y1="461.25" x2="689.13" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.83" y1="461.01" x2="681.75" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="681.93" y1="460.74" x2="688.65" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.47" y1="460.5" x2="682.11" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.26" y1="460.23" x2="688.29" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.17" y1="459.99" x2="682.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.47" y1="459.72" x2="688.05" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.96" y1="459.48" x2="682.53" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.56" y1="459.21" x2="687.9" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.84" y1="458.97" x2="682.59" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.7" x2="687.81" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.81" y1="458.46" x2="682.62" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="458.19" x2="687.78" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.75" y1="457.95" x2="682.62" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.68" x2="687.75" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="457.44" x2="682.62" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="457.17" x2="687.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.93" x2="682.62" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.66" x2="687.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="456.42" x2="682.62" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="456.15" x2="687.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.91" x2="682.62" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.64" x2="687.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="455.4" x2="682.62" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="455.13" x2="687.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.89" x2="682.62" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.62" x2="687.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="454.38" x2="682.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="454.11" x2="687.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.87" x2="682.62" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.6" x2="687.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="453.36" x2="682.62" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="453.09" x2="687.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.85" x2="682.62" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.58" x2="687.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="452.34" x2="682.62" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="452.07" x2="687.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.83" x2="682.62" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.56" x2="687.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="451.32" x2="682.62" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="451.05" x2="687.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.81" x2="682.62" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.54" x2="687.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="450.3" x2="682.62" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="450.03" x2="687.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.79" x2="682.62" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.52" x2="687.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="449.28" x2="682.62" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="449.01" x2="687.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.77" x2="682.62" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="448.5" x2="687.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="448.26" x2="682.62" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.99" x2="687.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.75" x2="682.62" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="447.48" x2="687.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="447.24" x2="682.62" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.97" x2="687.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.72" y1="446.73" x2="682.62" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="682.62" y1="446.46" x2="687.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.46" x2="699.72" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="446.73" x2="694.71" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="446.97" x2="699.72" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.24" x2="694.71" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.48" x2="699.72" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="447.75" x2="694.71" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="447.99" x2="699.72" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.26" x2="694.71" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="448.5" x2="699.72" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="448.77" x2="694.71" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.01" x2="699.72" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.28" x2="694.71" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="449.52" x2="699.72" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="449.79" x2="694.71" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.03" x2="699.72" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.3" x2="694.71" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="450.54" x2="699.72" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="450.81" x2="694.71" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.05" x2="699.72" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.32" x2="694.71" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="451.56" x2="699.72" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="451.83" x2="694.71" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.07" x2="699.72" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.34" x2="694.71" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="452.58" x2="699.72" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="452.85" x2="694.71" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.09" x2="699.72" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.36" x2="694.71" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="453.6" x2="699.72" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="453.87" x2="694.71" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.11" x2="699.72" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.38" x2="694.71" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="454.62" x2="699.72" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="454.89" x2="694.71" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.13" x2="699.72" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.4" x2="694.71" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="455.64" x2="699.72" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="455.91" x2="694.71" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.15" x2="699.72" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.42" x2="694.71" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="456.66" x2="699.72" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="456.93" x2="694.71" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.17" x2="699.72" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.44" x2="694.71" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="457.68" x2="699.72" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="457.95" x2="694.71" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.71" y1="458.19" x2="699.72" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.46" x2="694.71" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.68" y1="458.7" x2="699.72" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="458.97" x2="694.65" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.62" y1="459.21" x2="699.72" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.72" y1="459.99" x2="694.38" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.29" y1="460.23" x2="699.69" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.63" y1="460.5" x2="694.2" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.02" y1="460.74" x2="699.6" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.57" y1="461.01" x2="693.81" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.54" y1="461.25" x2="699.51" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.42" y1="461.52" x2="693.15" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.43" y1="461.76" x2="699.33" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.24" y1="462.03" x2="670.59" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.27" x2="699.15" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="699.03" y1="462.54" x2="670.59" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="462.78" x2="675.3" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.05" x2="670.59" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.29" x2="675.3" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="463.56" x2="670.59" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="463.8" x2="675.3" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.07" x2="670.59" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.31" x2="675.3" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="464.58" x2="670.59" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="670.59" y1="464.82" x2="675.3" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.3" y1="465.09" x2="670.59" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.66" y1="462.78" x2="686.79" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.64" y1="463.05" x2="675.84" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.08" y1="463.29" x2="686.49" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="686.34" y1="463.56" x2="676.32" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="676.56" y1="463.8" x2="686.1" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.89" y1="464.07" x2="676.8" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="464.31" x2="685.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="685.32" y1="464.58" x2="677.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.76" y1="464.82" x2="684.99" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="684.54" y1="465.09" x2="678.3" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="465.33" x2="684.03" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="683.22" y1="465.6" x2="679.98" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.21" y1="462.78" x2="698.85" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.7" y1="463.05" x2="687.45" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="687.69" y1="463.29" x2="698.55" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="698.37" y1="463.56" x2="687.96" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.2" y1="463.8" x2="698.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.89" y1="464.07" x2="688.47" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="688.8" y1="464.31" x2="697.65" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="697.26" y1="464.58" x2="689.16" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="689.49" y1="464.82" x2="696.87" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="696.33" y1="465.09" x2="689.94" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="690.48" y1="465.33" x2="695.61" y2="465.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.32" y1="465.6" x2="691.32" y2="465.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="654.06" y1="457.26" x2="654.0" y2="456.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="649.14" y1="458.04" x2="649.35" y2="459.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.93" y1="448.23" x2="652.74" y2="447.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="657.09" y1="449.79" x2="657.75" y2="449.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="650.4" y1="450.0" x2="649.95" y2="450.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.95" y1="465.87" x2="659.85" y2="465.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.32" y1="460.62" x2="654.93" y2="460.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.77" y1="462.12" x2="659.4" y2="462.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="661.62" y1="465.54" x2="662.43" y2="465.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.37" y1="463.56" x2="666.09" y2="462.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="465.87" x2="657.48" y2="465.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="606.99" y1="462.84" x2="606.66" y2="462.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.27" x2="581.13" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.03" x2="586.02" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="462.54" x2="581.13" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="462.78" x2="586.02" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.05" x2="581.13" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.29" x2="586.02" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="463.56" x2="581.13" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="463.8" x2="586.02" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.07" x2="581.13" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="581.13" y1="464.31" x2="586.02" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="586.02" y1="464.58" x2="581.13" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.31" y1="452.58" x2="557.7" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.85" y1="452.34" x2="563.46" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.64" y1="452.07" x2="558.0" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.18" y1="451.83" x2="563.82" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.97" y1="451.56" x2="558.33" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.48" y1="451.32" x2="564.15" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.33" y1="451.05" x2="558.63" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.78" y1="450.81" x2="564.48" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.66" y1="450.54" x2="558.93" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.11" y1="450.3" x2="564.84" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="564.99" y1="450.03" x2="559.26" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="559.41" y1="449.79" x2="565.17" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="563.13" y1="452.85" x2="557.55" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.4" y1="453.09" x2="562.95" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.8" y1="453.36" x2="557.25" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="557.07" y1="453.6" x2="562.62" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.44" y1="453.87" x2="556.92" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="556.77" y1="454.11" x2="562.29" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.11" y1="454.38" x2="556.62" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.46" x2="549.36" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="458.7" x2="554.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="458.97" x2="549.36" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.21" x2="554.25" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.48" x2="549.36" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="459.72" x2="554.25" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="459.99" x2="549.36" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.23" x2="554.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="460.5" x2="549.36" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="460.74" x2="554.25" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.01" x2="549.36" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.25" x2="554.25" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="461.52" x2="549.36" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="461.76" x2="554.25" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.03" x2="549.36" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.27" x2="554.25" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="462.54" x2="549.36" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="462.78" x2="554.25" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.05" x2="549.36" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.29" x2="554.25" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="463.56" x2="549.36" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="463.8" x2="554.25" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.07" x2="549.36" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.31" x2="554.25" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.25" y1="464.58" x2="549.36" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.36" y1="464.82" x2="554.25" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.58" x2="539.43" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="464.31" x2="537.99" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.55" y1="464.07" x2="539.94" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.8" x2="535.38" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.56" x2="539.94" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="463.29" x2="535.38" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="463.05" x2="539.94" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.78" x2="535.38" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.54" x2="539.94" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="462.27" x2="535.38" y2="462.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="462.03" x2="539.94" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.94" y1="461.76" x2="535.38" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.38" y1="461.52" x2="539.94" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.05" y2="461.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.57" y1="462.54" x2="516.72" y2="462.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.96" y1="462.78" x2="531.39" y2="462.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.18" y1="463.05" x2="517.2" y2="463.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.47" y1="463.29" x2="530.88" y2="463.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.61" y1="463.56" x2="517.83" y2="463.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.19" y1="463.8" x2="530.13" y2="463.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.65" y1="464.07" x2="518.67" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.24" y1="464.31" x2="529.17" y2="464.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.45" y1="464.58" x2="519.84" y2="464.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.77" y1="464.82" x2="527.61" y2="464.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.02" y1="465.09" x2="522.39" y2="465.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.59" y1="462.03" x2="531.84" y2="462.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.93" y1="461.76" x2="525.96" y2="461.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.41" y1="461.52" x2="532.02" y2="461.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.08" y1="461.25" x2="526.71" y2="461.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.89" y1="461.01" x2="532.11" y2="461.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.74" x2="527.07" y2="460.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.16" y1="460.5" x2="532.14" y2="460.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.62" x2="532.14" y2="454.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.57" y1="455.13" x2="526.77" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.68" y1="455.1" x2="526.92" y2="455.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.4" x2="532.14" y2="455.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="455.64" x2="517.29" y2="455.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.77" y1="455.91" x2="532.14" y2="455.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.15" x2="518.52" y2="456.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.3" y1="456.42" x2="532.14" y2="456.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="456.66" x2="520.5" y2="456.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.27" y1="456.93" x2="532.14" y2="456.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.17" x2="524.43" y2="457.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.75" y1="457.44" x2="532.14" y2="457.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="457.68" x2="526.35" y2="457.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.74" y1="457.95" x2="532.14" y2="457.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.19" x2="527.04" y2="458.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.19" y1="458.46" x2="532.14" y2="458.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="458.7" x2="527.25" y2="458.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="458.97" x2="532.14" y2="458.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.21" x2="527.34" y2="459.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="459.48" x2="532.14" y2="459.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="459.72" x2="527.34" y2="459.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="459.99" x2="532.14" y2="459.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="460.23" x2="527.25" y2="460.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="455.13" x2="532.14" y2="455.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.62" x2="527.34" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="454.38" x2="532.17" y2="454.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="454.11" x2="527.34" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.34" y1="453.87" x2="532.17" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.6" x2="527.34" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.31" y1="453.36" x2="532.17" y2="453.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="453.09" x2="527.31" y2="453.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.28" y1="452.85" x2="532.17" y2="452.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.58" x2="527.28" y2="452.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.22" y1="452.34" x2="532.17" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="452.07" x2="527.19" y2="452.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.13" y1="451.83" x2="532.17" y2="451.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.56" x2="527.1" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="527.04" y1="451.32" x2="532.17" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="451.05" x2="526.98" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.86" y1="450.81" x2="532.17" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="450.54" x2="526.71" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.5" y1="450.3" x2="532.14" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.14" y1="450.03" x2="526.23" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="449.79" x2="532.14" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="532.17" y1="449.52" x2="525.69" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.27" y1="449.28" x2="532.17" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.95" y1="447.75" x2="516.06" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.27" y1="447.48" x2="526.65" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.35" y1="447.24" x2="516.54" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.87" y1="446.97" x2="525.96" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="446.73" x2="517.38" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="517.92" y1="446.46" x2="525.0" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.25" y1="446.22" x2="518.46" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.6" y1="445.95" x2="522.99" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.44" y1="453.36" x2="520.77" y2="453.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.67" y1="454.11" x2="521.67" y2="454.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.13" y1="453.87" x2="515.55" y2="453.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="515.43" y1="453.6" x2="520.74" y2="453.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="522.66" y1="454.38" x2="524.37" y2="454.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.99" y1="454.89" x2="516.27" y2="454.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="516.06" y1="454.62" x2="524.79" y2="454.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.35" y1="449.01" x2="499.59" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.59" y1="448.77" x2="511.17" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="511.02" y1="448.5" x2="499.59" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.5" x2="494.43" y2="448.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="448.26" x2="499.32" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.99" x2="494.43" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.75" x2="499.32" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="447.48" x2="494.43" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="447.24" x2="499.32" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.97" x2="494.43" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.73" x2="499.32" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="446.46" x2="494.43" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="446.22" x2="499.32" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.95" x2="494.43" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.71" x2="499.32" y2="445.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="445.44" x2="494.43" y2="445.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="445.2" x2="499.32" y2="445.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.93" x2="494.43" y2="444.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.69" x2="499.32" y2="444.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="444.42" x2="494.43" y2="444.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="444.18" x2="499.32" y2="444.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.91" x2="494.43" y2="443.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.67" x2="499.32" y2="443.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="443.4" x2="494.43" y2="443.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="443.16" x2="499.32" y2="443.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.89" x2="494.43" y2="442.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.65" x2="499.32" y2="442.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="442.38" x2="494.43" y2="442.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="442.14" x2="499.32" y2="442.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.87" x2="494.43" y2="441.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.63" x2="499.32" y2="441.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="441.36" x2="494.43" y2="441.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="441.12" x2="499.32" y2="441.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.85" x2="494.43" y2="440.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.61" x2="499.32" y2="440.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="440.34" x2="494.43" y2="440.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="440.1" x2="499.32" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.83" x2="494.43" y2="439.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.49" y1="439.59" x2="499.32" y2="439.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="439.32" x2="494.76" y2="439.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.03" y1="439.08" x2="499.32" y2="439.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.81" x2="495.33" y2="438.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="495.6" y1="438.57" x2="499.32" y2="438.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="438.3" x2="495.9" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.17" y1="438.06" x2="499.32" y2="438.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.79" x2="496.47" y2="437.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.74" y1="437.55" x2="499.32" y2="437.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="437.28" x2="497.01" y2="437.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.31" y1="437.04" x2="499.32" y2="437.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.77" x2="497.58" y2="436.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="497.88" y1="436.53" x2="499.32" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="436.26" x2="498.15" y2="436.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.45" y1="436.02" x2="499.32" y2="436.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="435.75" x2="498.72" y2="435.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.99" y1="435.51" x2="499.32" y2="435.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.29" y1="435.24" x2="499.32" y2="435.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="502.32" y1="446.22" x2="507.6" y2="446.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.35" y1="446.46" x2="501.69" y2="446.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.24" y1="446.73" x2="508.83" y2="446.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.34" y1="446.97" x2="500.88" y2="446.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.58" y1="447.24" x2="509.67" y2="447.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.0" y1="447.48" x2="500.31" y2="447.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="500.07" y1="447.75" x2="510.3" y2="447.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.54" y1="447.99" x2="499.89" y2="447.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.71" y1="448.26" x2="510.78" y2="448.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.34" y1="445.95" x2="503.52" y2="445.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="448.77" x2="494.43" y2="448.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.01" x2="499.32" y2="449.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.28" x2="494.43" y2="449.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="449.52" x2="499.32" y2="449.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="449.79" x2="494.43" y2="449.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.03" x2="499.32" y2="450.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.3" x2="494.43" y2="450.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="450.54" x2="499.32" y2="450.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="450.81" x2="494.43" y2="450.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.05" x2="499.32" y2="451.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="499.32" y1="451.32" x2="494.43" y2="451.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.43" y1="451.56" x2="499.32" y2="451.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.52" y1="379.65" x2="524.52" y2="375.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="528.96" y1="378.9" x2="529.71" y2="379.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="327.06" x2="737.22" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="322.65" x2="740.97" y2="321.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="736.47" y1="324.06" x2="736.47" y2="327.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="859.47" y2="334.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="858.72" y1="335.4" x2="858.72" y2="336.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="860.22" y1="339.06" x2="858.72" y2="340.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="863.22" y1="339.06" x2="863.22" y2="342.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="925.35" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="407.1" x2="929.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="407.1" x2="933.45" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="928.26" y1="409.35" x2="926.76" y2="409.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="926.76" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.35" y1="407.1" x2="922.35" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="926.76" y1="411.6" x2="929.76" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="410.1" x2="937.11" y2="411.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="407.1" x2="938.61" y2="407.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.86" y1="422.1" x2="936.36" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="935.61" y1="424.35" x2="937.11" y2="425.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.2" y1="425.85" x2="934.2" y2="424.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.7" y1="423.6" x2="934.2" y2="422.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="931.2" y1="422.1" x2="931.2" y2="426.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="436.8" x2="1027.77" y2="439.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="436.8" x2="1027.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.77" y1="438.3" x2="1032.27" y2="439.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1030.02" y1="441.24" x2="1030.02" y2="444.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1027.77" y1="443.49" x2="1030.02" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.27" y1="443.49" x2="1027.77" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="444.24" x2="1042.77" y2="441.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="439.8" x2="1045.77" y2="438.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1045.77" y1="439.05" x2="1045.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1047.27" y1="436.8" x2="1042.77" y2="436.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.96" y1="184.65" x2="549.96" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="180.15" x2="551.46" y2="180.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.46" y1="183.15" x2="549.96" y2="184.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="547.02" y1="184.65" x2="547.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="545.52" y1="182.4" x2="544.02" y2="183.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.52" y1="174.24" x2="535.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="535.02" y2="171.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="169.8" x2="532.77" y2="169.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="533.52" y1="172.74" x2="532.77" y2="174.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="173.49" x2="507.27" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="169.8" x2="505.77" y2="168.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="169.05" x2="505.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.27" y1="166.8" x2="502.77" y2="166.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.52" y1="171.24" x2="502.77" y2="171.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.02" y1="173.49" x2="505.02" y2="172.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="470.97" y1="161.31" x2="466.47" y2="161.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="467.22" y1="157.65" x2="466.47" y2="156.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="453.27" y1="178.11" x2="454.02" y2="178.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.02" x2="449.52" y2="185.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.52" y1="184.77" x2="453.27" y2="184.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="186.96" x2="454.02" y2="189.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.02" y1="188.46" x2="449.52" y2="188.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="226.8" x2="430.02" y2="226.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="229.8" x2="433.77" y2="229.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.77" y1="231.24" x2="434.52" y2="231.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.27" y1="233.49" x2="431.52" y2="234.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.61" y1="242.85" x2="397.86" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.86" y1="244.35" x2="398.61" y2="245.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.2" y1="242.85" x2="393.45" y2="242.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="337.86" y1="171.6" x2="336.36" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.2" y1="170.85" x2="333.45" y2="171.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.61" y1="167.1" x2="338.61" y2="170.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="338.61" y1="167.1" x2="335.61" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="154.65" x2="361.02" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.27" y1="154.65" x2="360.27" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.52" y1="150.15" x2="361.02" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.49" y1="150.9" x2="363.24" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.9" y1="150.15" x2="369.9" y2="150.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.4" y1="150.15" x2="368.4" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="365.49" y1="153.9" x2="364.74" y2="154.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.93" y1="127.44" x2="327.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.68" y1="127.44" x2="324.93" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.18" y1="123.75" x2="323.43" y2="123.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.18" y1="125.19" x2="327.93" y2="125.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="291.15" y1="104.16" x2="291.15" y2="103.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="286.71" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="288.15" y1="104.16" x2="291.15" y2="104.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.71" y1="100.38" x2="285.96" y2="99.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="117.09" x2="228.93" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="120.75" x2="228.93" y2="123.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.93" y1="122.25" x2="224.43" y2="122.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.18" y1="119.34" x2="224.43" y2="118.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="228.18" y1="125.19" x2="225.18" y2="128.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="162.6" x2="250.95" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.11" y1="163.35" x2="253.86" y2="162.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.7" y1="166.35" x2="250.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.77" y1="82.74" x2="384.27" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="79.8" x2="385.02" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="76.8" x2="382.77" y2="76.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="385.77" y1="78.3" x2="387.27" y2="79.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="81.24" x2="387.27" y2="84.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.27" y1="82.74" x2="382.77" y2="82.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="72.06" x2="380.97" y2="69.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.22" y1="67.65" x2="378.72" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.47" y1="66.15" x2="380.97" y2="67.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.97" y1="64.65" x2="376.47" y2="64.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.36" y1="38.85" x2="351.36" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="34.35" x2="352.86" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="349.86" y1="37.35" x2="351.36" y2="38.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.45" y1="38.1" x2="348.45" y2="35.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.95" y1="35.85" x2="348.45" y2="34.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="34.56" x2="231.72" y2="37.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="36.06" x2="227.22" y2="36.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.72" y1="33.15" x2="231.72" y2="30.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.2" y1="107.85" x2="451.95" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.61" y1="107.1" x2="458.61" y2="107.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.11" y1="107.1" x2="457.11" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.2" y1="110.85" x2="453.45" y2="111.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.75" y1="461.37" x2="611.07" y2="461.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="519.9" x2="742.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="742.77" y1="523.29" x2="752.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="530.94" x2="742.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="742.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.48" y1="542.01" x2="751.29" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.97" y1="537.75" x2="742.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="530.94" x2="782.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="781.29" y1="542.01" x2="774.48" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="772.77" y1="537.75" x2="782.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="526.71" x2="779.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="779.58" y1="525.0" x2="779.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="782.97" y1="519.9" x2="772.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="523.29" x2="842.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="530.94" x2="832.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="834.48" y1="542.01" x2="832.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="842.97" y1="537.75" x2="832.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="832.77" y1="526.71" x2="832.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.77" y1="519.9" x2="862.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="519.9" x2="862.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="869.58" y1="523.29" x2="872.97" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="530.94" x2="862.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="864.48" y1="542.01" x2="862.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.97" y1="537.75" x2="862.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="867.87" y1="545.4" x2="867.87" y2="547.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="547.11" x2="892.77" y2="543.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="537.75" x2="902.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="537.75" x2="892.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="526.71" x2="892.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="892.77" y1="523.29" x2="902.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="525.0" x2="924.48" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="519.9" x2="922.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="530.94" x2="932.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="926.16" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="922.77" y1="537.75" x2="932.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="526.71" x2="929.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="523.29" x2="962.97" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="530.94" x2="952.77" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="956.16" y1="542.01" x2="952.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.97" y1="542.01" x2="962.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="545.4" x2="992.97" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="542.01" x2="992.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="986.16" y1="542.01" x2="982.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="537.75" x2="992.97" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="526.71" x2="989.58" y2="523.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="989.58" y1="525.0" x2="989.58" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.97" y1="519.9" x2="982.77" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="982.77" y1="530.94" x2="992.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.77" y1="536.04" x2="1012.77" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1012.77" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="548.79" x2="1017.87" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1016.16" y1="542.01" x2="1022.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1021.29" y1="526.71" x2="1022.97" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1017.87" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1017.87" y1="521.61" x2="1016.16" y2="519.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1042.77" y1="525.0" x2="1042.77" y2="521.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="526.71" x2="1042.77" y2="525.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="530.94" x2="1051.29" y2="530.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1042.77" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1044.48" y1="537.75" x2="1042.77" y2="536.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1052.97" y1="542.01" x2="1052.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="547.5" x2="1131.87" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="570.0" x2="1124.37" y2="562.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="540.0" x2="1124.37" y2="532.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="510.0" x2="1184.37" y2="502.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="480.0" x2="1124.37" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="450.0" x2="1184.37" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="420.0" x2="1124.37" y2="412.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="390.0" x2="1184.37" y2="382.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="300.0" x2="1124.37" y2="292.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="270.0" x2="1184.37" y2="262.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="240.0" x2="1124.37" y2="232.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="210.0" x2="1184.37" y2="202.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="180.0" x2="1124.37" y2="172.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="150.0" x2="1184.37" y2="142.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1192.77" y1="105.72" x2="1192.77" y2="98.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.58" y1="105.72" x2="1197.87" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1210.65" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1214.88" y1="107.4" x2="1219.98" y2="107.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.84" y1="107.4" x2="1203.84" y2="97.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="120.0" x2="1124.37" y2="127.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="330.0" x2="1184.37" y2="337.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1131.87" y1="360.0" x2="1124.37" y2="367.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="519.9" x2="952.77" y2="526.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="952.77" y1="530.94" x2="962.97" y2="537.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.97" y1="542.01" x2="932.97" y2="548.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.97" y1="548.79" x2="902.97" y2="542.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="837.87" y1="547.11" x2="837.87" y2="545.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.87" y1="570.0" x2="1184.37" y2="577.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="189.45" x2="446.19" y2="170.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.22" y1="170.55" x2="446.22" y2="169.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="167.01" x2="425.52" y2="167.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="166.98" x2="424.95" y2="167.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.58" y1="170.55" x2="422.58" y2="189.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.55" y1="189.45" x2="422.55" y2="190.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.52" y1="192.99" x2="443.25" y2="192.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.25" y1="193.02" x2="443.82" y2="192.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.27" y1="171.3" x2="402.27" y2="128.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="121.2" x2="414.27" y2="114.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.27" y1="117.81" x2="424.47" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="110.16" x2="424.47" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="106.74" x2="419.37" y2="103.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="419.37" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="99.09" x2="422.79" y2="99.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="88.05" x2="424.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="84.66" x2="419.37" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="77.01" x2="421.08" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.47" y1="70.2" x2="414.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.08" y1="73.59" x2="424.47" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="75.3" x2="444.27" y2="71.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="73.59" x2="449.37" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="75.3" x2="447.66" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="81.24" x2="452.79" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.79" y1="86.76" x2="454.47" y2="88.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="91.89" x2="447.66" y2="93.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="444.27" y1="97.83" x2="451.08" y2="97.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="88.05" x2="481.08" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="474.27" y1="77.01" x2="474.27" y2="70.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="71.91" x2="504.27" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="509.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="77.01" x2="512.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="92.31" x2="504.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="81.24" x2="514.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="88.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="92.31" x2="534.27" y2="97.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="534.27" y1="81.24" x2="544.47" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.79" y1="77.01" x2="544.47" y2="75.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="539.37" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="77.01" x2="542.79" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="562.56" y1="82.95" x2="564.27" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="567.66" y2="81.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.66" y1="82.95" x2="574.47" y2="82.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="81.24" x2="574.47" y2="84.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.47" y1="88.62" x2="567.66" y2="88.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="564.27" y2="77.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="571.08" y1="77.01" x2="574.47" y2="73.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.47" y1="128.7" x2="346.47" y2="171.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="139.8" x2="579.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.87" y1="139.8" x2="1047.87" y2="139.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.77" y1="90.0" x2="1184.37" y2="90.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="89.4" x2="1169.37" y2="80.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.17" y1="150.0" x2="1048.17" y2="482.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="630.9" x2="1139.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="638.4" x2="1169.37" y2="638.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.87" y1="484.5" x2="737.37" y2="484.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="731.37" y1="523.5" x2="360.87" y2="523.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.72" y1="533.85" x2="375.72" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="533.85" x2="397.41" y2="538.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="549.15" x2="413.97" y2="544.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="533.85" x2="408.87" y2="549.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="549.15" x2="392.31" y2="533.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.72" y1="504.6" x2="744.72" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.31" y1="494.4" x2="763.86" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="504.6" x2="752.4" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="777.87" y1="507.15" x2="777.87" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.1" y1="491.85" x2="788.1" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="507.15" x2="799.56" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="494.4" x2="813.57" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="507.15" x2="837.81" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="507.15" x2="849.27" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="846.72" y1="507.15" x2="846.72" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.17" y1="491.85" x2="849.27" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.21" y1="494.4" x2="857.79" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="871.8" y1="491.85" x2="871.8" y2="502.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="882.0" y1="499.5" x2="871.8" y2="499.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="865.44" y1="504.6" x2="862.89" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="827.61" y1="491.85" x2="827.61" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="811.02" y1="507.15" x2="811.02" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.46" y1="491.85" x2="794.46" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.36" y1="507.15" x2="898.59" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="893.49" y1="507.15" x2="893.49" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="491.85" x2="910.05" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="907.5" y1="491.85" x2="907.5" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="507.15" x2="910.05" y2="507.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="915.99" y1="504.6" x2="915.99" y2="494.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="942.78" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="932.58" y1="507.15" x2="932.58" y2="491.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="252.96" x2="1073.52" y2="242.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="236.37" x2="1073.52" y2="236.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1065.87" y1="236.37" x2="1065.87" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1058.22" y2="231.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.32" y1="226.17" x2="1073.52" y2="226.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="214.71" x2="1058.22" y2="214.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="209.61" x2="1058.22" y2="219.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="203.64" x2="1058.22" y2="198.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="201.09" x2="1073.52" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="198.54" x2="1073.52" y2="203.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1070.97" y1="192.18" x2="1065.87" y2="192.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="192.18" x2="1058.22" y2="189.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="176.04" x2="1073.52" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1073.52" y1="173.49" x2="1058.22" y2="173.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.22" y1="176.04" x2="1058.22" y2="170.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="164.55" x2="1058.22" y2="162.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="771.0" y1="127.65" x2="771.0" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.86" y1="112.35" x2="749.76" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="752.31" y1="112.35" x2="752.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.76" y1="127.65" x2="754.86" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="726.81" y1="125.1" x2="724.26" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="710.25" y1="114.9" x2="707.67" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="693.66" y1="112.35" x2="683.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="122.55" x2="677.1" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="677.1" y1="120.0" x2="666.87" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="666.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="660.51" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="666.87" y1="122.55" x2="671.97" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="660.51" y1="112.35" x2="650.31" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.95" y1="112.35" x2="643.95" y2="122.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="633.72" y1="120.0" x2="643.95" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="575.25" y1="120.0" x2="572.67" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="565.02" y1="112.35" x2="565.02" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="570.12" y1="117.45" x2="575.25" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.66" y1="112.35" x2="548.46" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.56" y1="120.0" x2="548.46" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.1" y1="112.35" x2="542.1" y2="127.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.87" y1="127.65" x2="531.87" y2="112.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.51" y1="114.9" x2="525.51" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="508.95" y1="120.0" x2="508.95" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.72" y1="117.45" x2="506.4" y2="117.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="105.0" x2="790.53" y2="106.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.47" y1="45.0" x2="1150.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="790.47" y1="435.0" x2="790.53" y2="436.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.47" y1="615.0" x2="1075.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="615.0" x2="190.53" y2="616.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="585.0" x2="81.15" y2="585.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.09" y1="465.0" x2="81.15" y2="465.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="62.37" y1="135.0" x2="62.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.37" y1="135.0" x2="116.43" y2="136.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.47" y1="45.0" x2="175.53" y2="46.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="175.14" x2="246.87" y2="175.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="179.64" x2="329.37" y2="180.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="254.64" x2="269.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.37" y1="254.64" x2="239.37" y2="255.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.01" y1="315.0" x2="344.73" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.37" y1="255.36" x2="389.37" y2="254.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.01" y1="165.0" x2="479.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="165.0" x2="524.73" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="120.36" x2="449.37" y2="119.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="224.37" y1="329.64" x2="224.37" y2="330.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="539.64" x2="344.37" y2="540.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.73" y1="570.0" x2="284.01" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.01" y1="330.0" x2="749.73" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="338.04" x2="449.91" y2="327.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="337.89" x2="420.78" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.35" y1="336.15" x2="449.91" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="334.44" x2="421.68" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.77" y1="332.7" x2="449.91" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.91" y1="330.99" x2="421.59" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="329.25" x2="449.91" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="445.62" y1="327.54" x2="420.57" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.58" y1="325.8" x2="436.35" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.84" y1="324.06" x2="418.17" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="322.35" x2="435.18" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.46" y1="320.61" x2="414.0" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.72" y1="318.9" x2="433.5" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.62" y1="317.16" x2="415.44" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.16" y1="315.45" x2="435.03" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.44" y1="313.71" x2="416.88" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.57" y1="312.0" x2="437.85" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="439.26" y1="310.26" x2="418.29" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.01" y1="308.52" x2="423.3" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.38" y1="308.52" x2="440.64" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.7" y1="306.81" x2="426.51" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.61" y1="305.07" x2="438.99" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.25" y1="303.36" x2="430.74" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.87" y1="301.62" x2="435.54" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.88" y1="306.81" x2="419.73" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.89" y1="313.71" x2="381.33" y2="313.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="379.92" y1="312.0" x2="400.17" y2="312.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.45" y1="310.26" x2="378.51" y2="310.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.1" y1="308.52" x2="393.36" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.47" y1="308.52" x2="398.73" y2="308.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.04" y1="306.81" x2="397.86" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.26" y1="306.81" x2="377.04" y2="306.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.78" y1="305.07" x2="389.13" y2="305.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.03" y1="303.36" x2="380.49" y2="303.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.23" y1="301.62" x2="384.9" y2="301.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.74" y1="315.45" x2="401.61" y2="315.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.33" y1="317.16" x2="384.15" y2="317.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.24" y1="318.9" x2="403.05" y2="318.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.74" y1="320.61" x2="383.31" y2="320.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.59" y1="322.35" x2="401.64" y2="322.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.6" y1="324.06" x2="381.93" y2="324.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.42" y1="325.8" x2="398.22" y2="325.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.23" y1="327.54" x2="372.15" y2="327.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="329.25" x2="396.54" y2="329.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.12" y1="330.99" x2="367.86" y2="330.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="332.7" x2="396.0" y2="332.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.09" y1="334.44" x2="367.86" y2="334.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.86" y1="336.15" x2="396.39" y2="336.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.93" y1="337.89" x2="367.86" y2="337.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.24" y1="339.6" x2="397.8" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.06" y1="341.34" x2="381.75" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.32" y1="343.08" x2="400.83" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.68" y1="344.79" x2="383.04" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.94" y1="346.53" x2="433.83" y2="346.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.14" y1="348.24" x2="384.63" y2="348.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.22" y1="349.98" x2="434.55" y2="349.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.96" y1="351.69" x2="381.81" y2="351.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="380.4" y1="353.43" x2="437.37" y2="353.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="438.78" y1="355.14" x2="378.99" y2="355.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.58" y1="356.88" x2="440.16" y2="356.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.3" y1="358.62" x2="425.79" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.89" y1="360.33" x2="439.56" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="362.07" x2="430.02" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="432.15" y1="363.78" x2="436.11" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.4" y1="365.52" x2="434.25" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="421.2" y1="358.62" x2="396.54" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.98" y1="358.62" x2="376.47" y2="358.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.18" y1="360.33" x2="389.85" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.75" y1="362.07" x2="379.92" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.63" y1="363.78" x2="385.62" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.52" y1="365.52" x2="383.37" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.25" y1="360.33" x2="416.52" y2="360.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.14" y1="362.07" x2="402.63" y2="362.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.81" y1="363.78" x2="414.96" y2="363.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.78" y1="365.52" x2="402.99" y2="365.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.14" y1="367.23" x2="414.6" y2="367.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.42" y1="368.97" x2="403.32" y2="368.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.5" y1="370.68" x2="414.27" y2="370.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.09" y1="372.42" x2="403.68" y2="372.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="414.03" y1="344.79" x2="434.7" y2="344.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.42" y1="343.08" x2="416.97" y2="343.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="418.74" y1="341.34" x2="436.02" y2="341.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.5" y1="339.6" x2="419.94" y2="339.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.69" y1="77.73" x2="267.75" y2="78.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.07" y1="216.6" x2="291.0" y2="236.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="293.4" x2="367.77" y2="293.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="216.6" x2="311.07" y2="216.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.15" y1="220.17" x2="316.23" y2="220.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.59" y1="289.83" x2="342.51" y2="289.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="242.97" x2="350.88" y2="242.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="254.01" x2="352.74" y2="261.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="265.08" x2="352.74" y2="272.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.74" y1="268.77" x2="341.64" y2="268.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="341.64" y1="257.73" x2="352.74" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.33" y1="254.01" x2="341.64" y2="257.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.47" y1="250.38" x2="341.64" y2="248.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.35" y1="410.85" x2="280.35" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="412.29" x2="272.97" y2="419.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="267.15" y1="419.55" x2="267.15" y2="412.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.52" y1="473.1" x2="319.71" y2="473.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.04" y1="476.4" x2="326.34" y2="476.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.41" y1="479.7" x2="316.41" y2="474.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-</svg>
diff --git a/examples/top.png b/examples/top.png
deleted file mode 100644
index 1ec7e8b..0000000
--- a/examples/top.png
+++ /dev/null
Binary files differ
diff --git a/examples/top.svg b/examples/top.svg
deleted file mode 100644
index c89449e..0000000
--- a/examples/top.svg
+++ /dev/null
@@ -1,2278 +0,0 @@
-<svg width="1280" height="720">
-<line x1="35.67" y1="21.3" x2="35.67" y2="638.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.81" y1="244.59" x2="253.29" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.2" y1="245.49" x2="272.34" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.42" y1="301.65" x2="353.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="354.18" y2="302.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="23.88" x2="182.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.62" y1="26.82" x2="35.67" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="29.79" x2="175.68" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.49" y1="32.73" x2="35.67" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="35.7" x2="172.26" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.03" y1="38.64" x2="35.67" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="41.61" x2="170.37" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.37" y1="44.55" x2="35.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="47.52" x2="170.37" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.67" y1="50.46" x2="166.29" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.56" y1="50.73" x2="167.16" y2="51.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="53.43" x2="171.9" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="173.1" y1="56.37" x2="167.46" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="59.34" x2="174.78" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="177.72" y1="62.28" x2="167.46" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="65.25" x2="180.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.65" y1="68.19" x2="147.93" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="65.25" x2="144.93" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="66.18" x2="144.93" y2="48.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="68.19" x2="75.87" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="69.18" x2="95.43" y2="69.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="71.16" x2="72.87" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="69.18" x2="72.87" y2="86.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="68.19" x2="35.67" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="65.25" x2="53.34" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="62.28" x2="35.67" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="59.34" x2="53.34" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="56.37" x2="35.67" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="53.43" x2="53.34" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="54.51" y1="50.46" x2="35.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="71.16" x2="53.34" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="74.1" x2="35.67" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="77.07" x2="53.34" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="53.34" y1="80.01" x2="35.67" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="82.98" x2="53.49" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.89" y1="85.92" x2="35.67" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="88.89" x2="181.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="91.83" x2="35.67" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="94.8" x2="181.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="97.74" x2="35.67" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="100.71" x2="181.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="103.65" x2="54.39" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="52.59" y1="102.9" x2="56.67" y2="104.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="481.44" x2="146.97" y2="481.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="484.86" x2="63.24" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="66.18" y1="487.8" x2="126.63" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="475.98" x2="97.29" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.96" y1="476.34" x2="92.04" y2="478.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="100.26" y1="473.04" x2="126.36" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.7" y1="470.07" x2="101.76" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="467.13" x2="202.77" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="470.07" x2="168.18" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.88" y1="469.89" x2="168.9" y2="470.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.52" y1="473.04" x2="202.77" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="475.98" x2="170.64" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="481.89" x2="202.77" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="478.95" x2="149.88" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="478.95" x2="60.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="481.89" x2="78.48" y2="500.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="46.35" y1="103.65" x2="35.67" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="106.62" x2="42.09" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.2" y1="109.56" x2="35.67" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="112.53" x2="39.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="39.27" y1="115.47" x2="35.67" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="118.44" x2="40.2" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="121.38" x2="35.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="124.35" x2="40.47" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="127.29" x2="35.67" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="130.26" x2="40.47" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="133.2" x2="35.67" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="136.17" x2="40.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="139.11" x2="35.67" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="142.08" x2="40.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="145.02" x2="35.67" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="147.99" x2="40.47" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="150.93" x2="35.67" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="153.9" x2="40.47" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="156.84" x2="35.67" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="159.81" x2="40.47" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="162.75" x2="35.67" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="165.72" x2="40.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="168.66" x2="35.67" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="171.63" x2="40.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="174.57" x2="35.67" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="177.54" x2="40.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="180.48" x2="35.67" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="183.45" x2="40.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="186.39" x2="35.67" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="189.36" x2="40.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="192.3" x2="35.67" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="195.27" x2="40.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="198.21" x2="35.67" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="201.18" x2="40.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="204.12" x2="35.67" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="207.09" x2="40.47" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="210.03" x2="35.67" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="213.0" x2="40.47" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="215.94" x2="35.67" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="218.91" x2="40.47" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="221.85" x2="35.67" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="224.82" x2="40.47" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="227.76" x2="35.67" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="230.73" x2="40.47" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="233.67" x2="35.67" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="236.64" x2="40.47" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="239.58" x2="35.67" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="242.55" x2="40.47" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="245.49" x2="35.67" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="248.46" x2="40.47" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="251.4" x2="35.67" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="254.37" x2="40.47" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="257.31" x2="35.67" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="260.28" x2="40.47" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="263.22" x2="35.67" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="266.19" x2="40.47" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="269.13" x2="35.67" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="272.1" x2="40.47" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="275.04" x2="35.67" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="278.01" x2="40.47" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="280.95" x2="35.67" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="283.92" x2="40.47" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="286.86" x2="35.67" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="289.83" x2="40.47" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="292.77" x2="35.67" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="295.74" x2="40.47" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="298.68" x2="35.67" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="301.65" x2="40.47" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="304.59" x2="35.67" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="307.56" x2="40.47" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="310.5" x2="35.67" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="313.47" x2="40.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="316.41" x2="35.67" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="319.38" x2="40.47" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="322.32" x2="35.67" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="325.29" x2="40.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="328.23" x2="35.67" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="331.2" x2="40.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="334.14" x2="35.67" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="337.11" x2="40.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="340.05" x2="35.67" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="343.02" x2="40.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="345.96" x2="35.67" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="348.93" x2="40.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="351.87" x2="35.67" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="354.84" x2="40.47" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="357.78" x2="35.67" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="360.75" x2="40.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="363.69" x2="35.67" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="366.66" x2="40.47" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="369.6" x2="35.67" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="372.57" x2="40.47" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="375.51" x2="35.67" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="378.48" x2="40.47" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="381.42" x2="35.67" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="384.39" x2="40.47" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="387.33" x2="35.67" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="390.3" x2="40.47" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="393.24" x2="35.67" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="396.21" x2="40.47" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="399.15" x2="35.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="402.12" x2="40.47" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="405.06" x2="35.67" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="408.03" x2="40.47" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="410.97" x2="35.67" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="413.94" x2="40.47" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="416.88" x2="35.67" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="419.85" x2="40.47" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="422.79" x2="35.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="425.76" x2="40.47" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="428.7" x2="35.67" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="431.67" x2="40.47" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="434.61" x2="35.67" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="437.58" x2="40.47" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="440.52" x2="35.67" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="443.49" x2="40.47" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="446.43" x2="35.67" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="449.4" x2="40.47" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="452.34" x2="35.67" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="455.31" x2="40.47" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="458.25" x2="35.67" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="461.22" x2="40.47" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="464.16" x2="35.67" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="467.13" x2="40.47" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="470.07" x2="35.67" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="473.04" x2="40.47" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="475.98" x2="35.67" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="478.95" x2="40.47" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="481.89" x2="35.67" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="484.86" x2="40.47" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="40.47" y1="487.8" x2="35.67" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="490.77" x2="41.64" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="44.1" y1="493.71" x2="35.67" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="496.68" x2="47.04" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="50.01" y1="499.62" x2="35.67" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="502.59" x2="52.95" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="55.92" y1="505.53" x2="35.67" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="508.5" x2="58.86" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.83" y1="511.44" x2="35.67" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="514.41" x2="64.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.74" y1="517.35" x2="35.67" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="520.32" x2="127.92" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="128.43" y1="529.17" x2="35.67" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="526.23" x2="202.77" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="529.17" x2="168.45" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="532.14" x2="202.77" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="535.08" x2="171.24" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="538.05" x2="202.77" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="540.99" x2="171.24" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="543.96" x2="202.77" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="546.9" x2="171.24" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="549.87" x2="202.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="552.81" x2="121.89" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="555.78" x2="202.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.76" y1="558.72" x2="119.97" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="561.69" x2="125.91" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="564.63" x2="119.97" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="119.97" y1="567.6" x2="125.61" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="570.54" x2="119.97" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="121.71" y1="573.51" x2="125.61" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="576.45" x2="124.68" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.87" y1="585.0" x2="228.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="389.07" x2="475.83" y2="389.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.94" y1="561.69" x2="206.73" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="209.37" y2="450.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="447.45" x2="221.25" y2="447.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="449.4" x2="219.33" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.36" y1="452.34" x2="222.87" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.2" y1="455.31" x2="215.97" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="458.25" x2="335.79" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.87" y1="466.5" x2="317.37" y2="466.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.87" y1="519.15" x2="276.87" y2="487.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.49" y1="461.22" x2="281.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.68" y1="464.16" x2="285.09" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.87" y1="469.5" x2="255.87" y2="469.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.87" y1="519.15" x2="261.87" y2="489.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="487.8" x2="215.97" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="484.86" x2="240.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="481.89" x2="215.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="478.95" x2="240.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="475.98" x2="215.97" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="473.04" x2="243.03" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.97" y1="470.07" x2="215.97" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="467.13" x2="248.94" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.88" y1="464.16" x2="215.97" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="461.22" x2="266.49" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.87" y1="440.85" x2="246.87" y2="430.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.43" y1="401.34" x2="296.43" y2="414.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="519.33" x2="336.69" y2="486.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="351.15" x2="250.02" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="242.49" y1="325.29" x2="246.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="328.23" x2="245.43" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="322.32" x2="241.05" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="319.38" x2="206.94" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="322.32" x2="208.74" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.08" y1="325.29" x2="206.94" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.19" y1="331.5" x2="188.37" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="163.92" y1="328.23" x2="60.27" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="325.29" x2="161.31" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="322.32" x2="60.27" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="319.38" x2="161.31" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="316.41" x2="60.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="313.47" x2="161.31" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.58" y1="310.5" x2="60.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="307.56" x2="216.57" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="304.59" x2="60.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="301.65" x2="216.21" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="298.68" x2="60.27" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="295.74" x2="162.24" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.21" y1="295.71" x2="161.91" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="292.77" x2="60.27" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="289.83" x2="182.97" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="289.83" x2="216.36" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="292.77" x2="206.34" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.04" y1="295.74" x2="216.21" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.34" y1="286.86" x2="246.27" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="283.92" x2="206.34" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="205.65" y1="280.95" x2="217.14" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="278.01" x2="60.27" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="280.95" x2="162.6" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.91" y1="283.92" x2="60.27" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="286.86" x2="161.91" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="286.86" x2="185.28" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="283.92" x2="182.97" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="280.95" x2="185.28" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.28" y1="292.77" x2="182.97" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.97" y1="295.74" x2="185.28" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.67" y1="310.5" x2="246.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="313.47" x2="206.94" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.94" y1="316.41" x2="246.27" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.87" y1="315.0" x2="258.87" y2="298.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="286.86" x2="316.62" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="284.85" x2="327.87" y2="284.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="280.95" x2="291.63" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="278.01" x2="316.62" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="275.04" x2="292.56" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="272.1" x2="316.62" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="269.13" x2="292.56" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="266.19" x2="316.62" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.31" y1="263.22" x2="292.56" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.01" y1="260.28" x2="373.08" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="257.31" x2="285.69" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.69" y1="254.37" x2="373.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="254.43" x2="373.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="242.55" x2="377.79" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.98" y1="245.19" x2="381.15" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="373.08" y1="251.4" x2="285.69" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="248.46" x2="317.97" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="245.49" x2="282.93" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="245.49" x2="276.48" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="248.46" x2="277.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.62" y1="251.4" x2="276.48" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.48" y1="254.37" x2="277.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.69" y1="255.0" x2="258.87" y2="257.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="265.47" y1="283.92" x2="327.87" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="286.86" x2="330.87" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="283.92" x2="375.15" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="372.18" y1="286.86" x2="342.15" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="289.83" x2="369.24" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.27" y1="292.77" x2="342.15" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="295.74" x2="363.33" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.88" y1="301.44" x2="353.31" y2="300.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="301.65" x2="344.94" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.94" y1="304.59" x2="343.8" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.8" y1="307.56" x2="324.39" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="310.5" x2="334.56" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.01" y1="313.47" x2="326.64" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="316.41" x2="333.99" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="319.38" x2="326.64" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="322.32" x2="333.96" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.96" y1="325.29" x2="326.64" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.95" y1="328.23" x2="333.96" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.24" y1="331.2" x2="259.47" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="259.47" y1="328.23" x2="272.82" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.1" y1="325.29" x2="259.47" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="258.87" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="262.53" y1="318.66" x2="278.7" y2="318.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="268.32" y1="334.14" x2="330.45" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="337.11" x2="269.88" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="339.33" x2="253.2" y2="339.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="272.1" x2="149.76" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.41" y1="273.42" x2="139.29" y2="277.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.51" y1="275.04" x2="216.21" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="269.13" x2="152.7" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.49" y1="266.19" x2="216.21" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.21" y1="263.22" x2="156.72" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.92" y1="260.28" x2="218.76" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="257.31" x2="159.12" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="254.37" x2="223.08" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="254.43" x2="223.08" y2="249.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="248.46" x2="223.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.08" y1="251.4" x2="159.12" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.05" y1="242.55" x2="316.02" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="239.58" x2="155.85" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="153.57" y1="236.64" x2="202.23" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.35" y1="233.67" x2="150.6" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.58" y1="230.73" x2="184.41" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.44" y1="227.76" x2="139.44" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="129.3" y1="227.76" x2="60.27" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="224.82" x2="178.5" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="175.53" y1="221.85" x2="60.27" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="230.73" x2="122.19" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="118.17" y1="233.67" x2="60.27" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="236.64" x2="115.2" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.92" y1="239.58" x2="60.27" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="242.55" x2="111.69" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.46" y1="245.49" x2="60.27" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="248.46" x2="109.62" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="251.4" x2="60.27" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="254.37" x2="109.62" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="257.31" x2="60.27" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="260.28" x2="110.82" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.05" y1="263.22" x2="60.27" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="266.19" x2="113.28" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.07" y1="269.13" x2="60.27" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="272.1" x2="119.01" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.23" y1="275.04" x2="60.27" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.73" y1="218.91" x2="125.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="218.61" x2="124.8" y2="186.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="215.94" x2="96.03" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="213.0" x2="124.8" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="210.03" x2="96.03" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="207.09" x2="124.8" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="204.12" x2="96.03" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="201.18" x2="124.8" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="198.21" x2="96.03" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="195.27" x2="124.8" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="192.3" x2="96.03" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.03" y1="189.36" x2="124.8" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="124.8" y1="186.39" x2="96.03" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="93.42" y1="183.45" x2="127.38" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.28" y1="174.57" x2="168.27" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="171.63" x2="158.46" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.43" y1="168.66" x2="167.34" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="177.54" x2="92.55" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.61" y1="180.48" x2="168.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.27" y1="183.45" x2="165.45" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="186.39" x2="168.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="189.36" x2="168.27" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="192.3" x2="168.27" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="195.27" x2="168.27" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="198.21" x2="168.27" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="201.18" x2="168.27" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="204.12" x2="168.27" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="207.09" x2="168.27" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="210.03" x2="168.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="213.0" x2="168.6" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.06" y1="215.94" x2="169.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.79" y1="218.91" x2="172.59" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.15" y1="207.09" x2="253.68" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="210.03" x2="195.12" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.06" y1="213.0" x2="202.62" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="204.12" x2="253.68" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.68" y1="201.18" x2="190.47" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="198.21" x2="252.39" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="249.45" y1="195.27" x2="190.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="192.3" x2="247.35" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.27" y1="189.36" x2="190.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="186.39" x2="246.27" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="183.45" x2="238.65" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="180.48" x2="239.76" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="177.54" x2="238.65" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.93" x2="230.58" y2="174.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="174.57" x2="239.76" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="171.63" x2="238.65" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.65" y1="168.66" x2="239.76" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.76" y1="165.72" x2="238.65" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.39" y1="165.72" x2="190.47" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="168.66" x2="230.82" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="171.63" x2="190.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="174.57" x2="230.58" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="230.58" y1="177.54" x2="190.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="180.48" x2="230.58" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.39" y1="183.45" x2="190.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.47" y1="162.75" x2="250.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.35" y1="159.81" x2="189.24" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="186.93" y1="156.84" x2="250.47" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="250.71" y1="153.9" x2="183.96" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.02" y1="150.93" x2="204.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="198.0" y1="147.99" x2="180.57" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.85" y1="145.02" x2="194.01" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.04" y1="142.08" x2="178.62" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="176.4" y1="139.11" x2="188.1" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.13" y1="136.17" x2="173.28" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.74" y1="133.2" x2="182.64" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="130.26" x2="176.19" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.17" y1="127.29" x2="181.47" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="124.35" x2="179.37" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="121.38" x2="165.87" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="118.44" x2="162.87" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="121.38" x2="138.93" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="138.06" y1="120.51" x2="142.89" y2="125.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="141.9" y1="124.35" x2="149.4" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.6" y1="127.29" x2="143.7" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="130.26" x2="152.55" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.0" y1="133.2" x2="145.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="145.47" y1="136.17" x2="155.46" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="152.37" y1="139.11" x2="145.2" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="143.97" y1="142.08" x2="150.12" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.92" y1="145.02" x2="142.53" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="139.59" y1="147.99" x2="148.17" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.75" y1="150.93" x2="134.61" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.81" y1="153.9" x2="60.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="156.84" x2="81.84" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.9" y1="159.81" x2="60.27" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="162.75" x2="75.93" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.99" y1="165.72" x2="60.27" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="168.66" x2="70.02" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="67.08" y1="171.63" x2="60.27" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="174.57" x2="64.62" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.39" y1="177.54" x2="60.27" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="180.48" x2="63.27" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="150.93" x2="68.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="63.18" y1="147.99" x2="60.27" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.61" y1="150.93" x2="122.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.18" y1="147.99" x2="85.59" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="88.53" y1="145.02" x2="114.21" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.8" y1="142.08" x2="89.97" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.2" y1="139.11" x2="111.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.27" y1="136.17" x2="91.47" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="91.47" y1="133.2" x2="111.27" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.84" y1="130.26" x2="90.93" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="89.7" y1="127.29" x2="113.07" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="114.87" y1="124.35" x2="87.9" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="84.93" y1="121.38" x2="117.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="123.72" y1="118.44" x2="79.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.72" y1="118.44" x2="60.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="121.38" x2="63.81" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.87" y1="124.35" x2="60.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="61.47" y1="115.47" x2="149.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.83" y1="118.44" x2="133.05" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="150.69" y1="112.53" x2="61.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.57" y1="109.56" x2="152.76" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="156.3" y1="106.62" x2="58.68" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="85.92" x2="75.87" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="82.98" x2="72.87" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="80.01" x2="75.87" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="77.07" x2="72.87" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="74.1" x2="75.87" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="65.25" x2="72.87" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="62.28" x2="75.87" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="59.34" x2="72.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="56.37" x2="75.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.87" y1="53.43" x2="72.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="72.87" y1="50.46" x2="75.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="94.23" y1="50.46" x2="126.57" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="53.43" x2="95.43" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="56.37" x2="125.4" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="59.34" x2="95.43" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="62.28" x2="125.4" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="65.25" x2="95.43" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="71.16" x2="125.4" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="74.1" x2="95.43" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.43" y1="77.07" x2="125.4" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.4" y1="80.01" x2="95.43" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.28" y1="82.98" x2="125.52" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.95" y1="85.92" x2="92.88" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="85.92" x2="147.93" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="82.98" x2="144.93" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="80.01" x2="147.93" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="77.07" x2="144.93" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="74.1" x2="147.93" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="71.16" x2="144.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="62.28" x2="147.93" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="59.34" x2="144.93" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="56.37" x2="147.93" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.93" y1="53.43" x2="144.93" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="144.93" y1="50.46" x2="147.93" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="71.16" x2="195.93" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="192.99" y1="74.1" x2="167.46" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.46" y1="77.07" x2="190.02" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.08" y1="80.01" x2="167.46" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="167.31" y1="82.98" x2="184.11" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="182.22" y1="85.92" x2="164.91" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="106.62" x2="162.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="109.56" x2="165.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="165.87" y1="112.53" x2="162.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="162.87" y1="115.47" x2="165.87" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.44" y1="106.62" x2="181.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="109.56" x2="176.01" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.08" y1="112.53" x2="181.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.47" y1="115.47" x2="179.31" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.91" y1="118.44" x2="181.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="118.44" x2="237.66" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.42" y1="118.65" x2="238.26" y2="117.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="130.26" x2="236.52" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="131.16" x2="245.76" y2="131.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="121.38" x2="201.27" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.33" y1="124.35" x2="236.52" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.52" y1="123.48" x2="245.76" y2="123.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="236.85" y1="127.29" x2="236.52" y2="126.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="124.35" x2="245.76" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="127.29" x2="245.76" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="130.26" x2="245.76" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="121.38" x2="245.76" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="118.44" x2="245.76" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="115.47" x2="201.27" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="112.53" x2="205.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="204.84" y1="112.38" x2="203.82" y2="111.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.29" y1="109.56" x2="201.27" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="106.62" x2="202.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="103.65" x2="201.27" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="100.71" x2="216.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="103.65" x2="219.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="102.6" x2="219.87" y2="112.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="100.71" x2="258.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="103.65" x2="257.85" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="106.62" x2="257.85" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="109.56" x2="257.85" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="109.56" x2="234.48" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="106.62" x2="251.31" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="103.65" x2="234.69" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.69" y1="97.74" x2="253.26" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="94.8" x2="234.69" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.12" y1="91.83" x2="252.48" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="88.89" x2="206.22" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.16" y1="85.92" x2="252.48" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.48" y1="82.98" x2="212.13" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.07" y1="80.01" x2="252.48" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="77.07" x2="218.04" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="220.98" y1="74.1" x2="229.62" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="229.44" y1="71.16" x2="223.95" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.89" y1="68.19" x2="229.44" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="68.19" x2="286.14" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="65.25" x2="252.63" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="62.28" x2="286.14" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="59.34" x2="252.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="56.37" x2="286.14" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="53.43" x2="252.63" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.63" y1="50.46" x2="286.14" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="47.52" x2="252.63" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.1" y1="44.55" x2="287.67" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.97" y1="41.61" x2="301.17" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="50.46" x2="310.05" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="53.43" x2="312.99" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.96" y1="56.37" x2="309.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="59.34" x2="318.9" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.87" y1="62.28" x2="309.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="65.25" x2="323.25" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.25" y1="68.19" x2="309.33" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="309.33" y1="71.16" x2="323.25" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="74.1" x2="309.15" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.34" y1="77.07" x2="283.62" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="80.01" x2="324.12" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="82.98" x2="286.29" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="85.92" x2="328.35" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="88.89" x2="286.29" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.29" y1="91.83" x2="301.62" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="94.8" x2="286.29" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="285.51" y1="97.74" x2="301.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="102.6" x2="315.87" y2="102.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.08" y1="103.65" x2="286.32" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.56" y1="103.89" x2="287.16" y2="104.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="106.62" x2="301.08" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.29" y1="109.56" x2="287.46" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="287.46" y1="112.53" x2="304.32" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.11" y1="118.44" x2="328.35" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="121.38" x2="302.22" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.22" y1="124.35" x2="328.35" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="115.47" x2="287.46" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="118.44" x2="293.01" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="121.38" x2="293.01" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.82" y1="127.29" x2="302.88" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="112.53" x2="318.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="109.56" x2="315.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="106.62" x2="318.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="103.65" x2="315.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="100.71" x2="280.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="103.65" x2="280.89" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="106.62" x2="280.89" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="109.56" x2="280.89" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="108.84" x2="269.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.21" y1="111.39" x2="273.21" y2="108.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.31" y1="112.53" x2="231.42" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="112.53" x2="216.87" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="109.56" x2="219.87" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="106.62" x2="216.87" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="97.74" x2="219.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="219.87" y1="94.8" x2="216.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.87" y1="91.83" x2="219.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.08" y1="94.8" x2="201.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="201.27" y1="97.74" x2="202.08" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.45" y1="74.1" x2="286.32" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.14" y1="71.16" x2="252.63" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="253.8" y1="41.61" x2="236.7" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.55" y1="21.3" x2="285.0" y2="21.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="311.46" y1="23.88" x2="1157.7" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.62" y1="26.82" x2="314.4" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.37" y1="29.79" x2="413.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.75" y1="32.73" x2="392.34" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.36" y1="35.7" x2="405.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.49" y1="38.64" x2="398.13" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="398.97" y1="41.61" x2="403.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="403.17" y1="44.55" x2="398.97" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.98" y1="47.52" x2="403.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.1" y1="50.46" x2="396.03" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.5" y1="53.43" x2="405.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="407.85" y1="56.37" x2="383.73" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="59.34" x2="389.94" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.94" y1="62.28" x2="388.8" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.8" y1="65.25" x2="389.94" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.99" y1="59.34" x2="411.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="62.28" x2="399.12" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="65.25" x2="412.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="68.19" x2="399.18" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.18" y1="71.16" x2="412.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.77" y1="74.1" x2="398.37" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="77.07" x2="412.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="415.05" y1="80.01" x2="399.78" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="82.98" x2="418.02" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.64" y1="81.6" x2="416.64" y2="81.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.96" y1="85.92" x2="399.78" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="399.78" y1="88.89" x2="423.27" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="91.83" x2="396.9" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="394.53" y1="94.8" x2="423.27" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="97.74" x2="391.56" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.8" y1="97.5" x2="391.8" y2="97.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="388.62" y1="100.71" x2="423.27" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="103.65" x2="404.28" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="106.62" x2="423.27" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="109.56" x2="404.97" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="112.53" x2="423.27" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="115.47" x2="404.97" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="118.44" x2="423.27" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="121.38" x2="404.97" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="119.4" x2="404.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="124.35" x2="423.27" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="127.29" x2="404.97" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="130.26" x2="423.27" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="133.2" x2="404.85" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.54" y1="136.17" x2="423.27" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.27" y1="139.11" x2="402.81" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.78" y1="142.08" x2="423.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="424.56" y1="145.02" x2="408.72" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="417.9" y1="147.99" x2="427.53" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.19" y1="150.93" x2="421.02" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.4" y1="153.9" x2="425.01" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="423.57" y1="156.84" x2="422.97" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="422.97" y1="159.27" x2="422.97" y2="159.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.07" y1="164.7" x2="411.87" y2="157.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.87" y1="119.1" x2="381.87" y2="98.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="103.65" x2="397.17" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="106.62" x2="396.57" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="109.56" x2="397.17" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="112.53" x2="396.57" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="115.47" x2="397.17" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="118.44" x2="396.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="121.38" x2="397.17" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="124.35" x2="396.57" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="127.29" x2="397.17" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="130.26" x2="396.57" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="133.2" x2="397.17" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="136.17" x2="396.57" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.23" y1="136.17" x2="388.68" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.64" y1="150.6" x2="372.24" y2="150.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="402.21" y1="163.65" x2="402.51" y2="163.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.97" y1="150.93" x2="345.75" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="147.99" x2="369.63" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.66" y1="145.02" x2="345.75" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="142.08" x2="363.72" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.75" y1="139.11" x2="345.75" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="358.68" y1="136.17" x2="360.06" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="153.9" x2="398.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="400.77" y1="156.84" x2="345.75" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.75" y1="159.81" x2="400.83" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="402.21" y2="163.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="401.07" y1="163.35" x2="397.17" y2="163.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="165.72" x2="382.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="168.66" x2="381.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="171.63" x2="382.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="174.57" x2="381.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="177.54" x2="382.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="180.48" x2="381.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="183.45" x2="382.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="186.39" x2="381.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="189.36" x2="382.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="192.3" x2="381.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.57" y1="195.27" x2="382.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.17" y1="198.21" x2="381.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.8" y1="198.21" x2="373.44" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="362.79" y1="204.12" x2="419.76" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="416.82" y1="201.18" x2="360.57" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="201.18" x2="275.88" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="204.12" x2="318.72" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="207.09" x2="275.88" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="210.03" x2="316.02" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.02" y1="213.0" x2="276.15" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.88" y1="198.21" x2="343.17" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.17" y1="195.27" x2="275.88" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.7" y1="192.3" x2="343.17" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.73" y1="189.36" x2="327.87" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="189.36" x2="321.15" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="186.39" x2="322.26" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="183.45" x2="321.15" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="180.48" x2="294.69" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.66" y1="177.54" x2="313.08" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="179.43" x2="313.08" y2="174.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.08" y1="183.45" x2="290.97" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="297.93" y1="177.24" x2="297.93" y2="177.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.48" y1="174.57" x2="313.08" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.28" y1="171.63" x2="301.71" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="168.66" x2="328.35" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="165.72" x2="322.05" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="325.44" y1="162.75" x2="328.35" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="159.81" x2="326.91" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.57" y1="156.84" x2="328.35" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.35" y1="153.9" x2="327.57" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="171.63" x2="321.15" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="321.15" y1="174.57" x2="322.26" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.26" y1="177.54" x2="321.15" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.2" y1="186.39" x2="271.98" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.5" y1="189.36" x2="315.54" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.05" y1="204.12" x2="343.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="207.09" x2="343.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="210.03" x2="344.34" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="213.0" x2="347.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="350.01" y1="215.94" x2="342.75" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="218.91" x2="352.98" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.73" y1="221.85" x2="342.75" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="224.82" x2="377.43" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.43" y1="227.76" x2="342.75" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="230.73" x2="376.98" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="233.67" x2="342.75" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.75" y1="236.64" x2="376.83" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.83" y1="239.58" x2="342.75" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="340.77" y1="248.46" x2="373.23" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="375.84" y1="245.49" x2="376.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="245.49" x2="382.26" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="248.46" x2="381.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="251.4" x2="382.26" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="254.37" x2="381.15" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="257.31" x2="382.26" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.26" y1="260.28" x2="381.15" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.15" y1="263.22" x2="382.26" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.1" y1="263.22" x2="341.46" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="266.19" x2="392.88" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.91" y1="269.13" x2="342.15" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="272.1" x2="386.97" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="384.0" y1="275.04" x2="342.15" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.15" y1="278.01" x2="381.06" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="378.09" y1="280.95" x2="342.15" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="280.95" x2="327.87" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="278.01" x2="330.87" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="275.04" x2="327.87" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="272.1" x2="330.87" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="269.13" x2="327.87" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="266.19" x2="330.87" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="263.22" x2="327.87" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="289.83" x2="330.87" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="292.77" x2="327.87" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="295.74" x2="330.87" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="298.68" x2="327.87" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.87" y1="301.65" x2="330.87" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="330.87" y1="304.59" x2="327.87" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.27" y1="304.59" x2="292.56" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="301.65" x2="316.62" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="298.68" x2="292.56" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.56" y1="295.74" x2="316.62" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.62" y1="292.77" x2="292.56" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="292.38" y1="289.83" x2="316.62" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.18" y1="304.59" x2="354.45" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="310.5" x2="419.37" y2="249.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="168.66" x2="404.97" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="171.63" x2="412.47" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="174.57" x2="404.97" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="177.54" x2="412.47" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="180.48" x2="404.97" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="181.2" x2="404.97" y2="194.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="183.45" x2="412.47" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="186.39" x2="404.97" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.97" y1="189.36" x2="412.47" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="412.47" y1="192.3" x2="404.97" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="404.79" y1="195.27" x2="412.47" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="413.85" y1="198.21" x2="401.97" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="198.21" x2="396.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="195.27" x2="397.17" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="192.3" x2="396.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="189.36" x2="397.17" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="186.39" x2="396.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="183.45" x2="397.17" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="180.48" x2="396.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="177.54" x2="397.17" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="174.57" x2="396.57" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="171.63" x2="397.17" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.17" y1="168.66" x2="396.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.57" y1="165.72" x2="397.17" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.17" y1="162.75" x2="359.37" y2="164.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.17" y1="162.75" x2="345.75" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="310.92" y1="165.72" x2="301.71" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="162.75" x2="307.53" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.03" y1="159.81" x2="301.71" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="301.71" y1="156.84" x2="305.37" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="305.37" y1="153.9" x2="301.71" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="302.58" y1="150.93" x2="303.3" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="280.89" y1="158.61" x2="273.21" y2="158.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.68" y1="165.72" x2="243.99" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="150.93" x2="245.76" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="147.99" x2="245.76" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="237.18" y1="150.93" x2="232.47" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="235.29" y1="147.99" x2="236.52" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="97.74" x2="318.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="318.87" y1="94.8" x2="315.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="315.87" y1="91.83" x2="318.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="68.19" x2="345.78" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.78" y1="65.25" x2="343.05" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="62.28" x2="347.88" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.05" y1="59.34" x2="365.73" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="363.96" y1="62.28" x2="363.33" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="367.77" y1="56.37" x2="357.33" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="361.68" y1="53.43" x2="368.04" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.33" y1="50.46" x2="370.98" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.82" y1="47.52" x2="373.95" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.77" y1="44.55" x2="370.05" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="41.61" x2="376.77" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="377.64" y1="38.64" x2="369.69" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.46" y1="35.7" x2="379.41" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="383.43" y1="32.73" x2="365.52" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.65" y1="32.73" x2="320.31" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="323.28" y1="35.7" x2="349.71" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="335.49" y1="38.64" x2="326.22" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.19" y1="41.61" x2="334.56" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="334.56" y1="44.55" x2="332.13" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="387.87" y2="42.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="374.37" y1="56.4" x2="374.37" y2="67.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="419.37" y1="75.0" x2="419.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.02" y1="32.73" x2="438.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="435.78" y1="35.7" x2="432.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.28" y1="38.64" x2="434.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="51.12" x2="433.11" y2="54.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="433.44" y1="53.43" x2="435.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="437.85" y1="56.37" x2="430.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="427.14" y1="59.34" x2="441.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="62.28" x2="425.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="65.25" x2="442.77" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="68.19" x2="425.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="425.97" y1="71.16" x2="442.77" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="74.1" x2="427.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="430.77" y1="77.07" x2="442.77" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="80.01" x2="433.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="82.98" x2="442.77" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.77" y1="85.92" x2="436.47" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="88.89" x2="442.77" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.37" y1="91.83" x2="436.47" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="94.8" x2="446.34" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.28" y1="97.74" x2="436.47" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="100.71" x2="450.45" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="103.65" x2="436.47" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="106.62" x2="450.45" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="450.45" y1="109.56" x2="436.47" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="112.53" x2="442.26" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="115.47" x2="441.15" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="118.44" x2="442.26" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="120.57" x2="441.15" y2="120.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="121.38" x2="441.15" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="441.15" y1="124.35" x2="442.26" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="442.26" y1="127.29" x2="441.15" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="130.26" x2="450.63" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.47" y1="130.26" x2="475.62" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="478.59" y1="133.2" x2="436.47" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="436.47" y1="136.17" x2="483.6" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="139.11" x2="437.31" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="440.28" y1="142.08" x2="484.47" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="145.02" x2="466.89" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="461.88" y1="145.02" x2="443.22" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="446.19" y1="147.99" x2="456.72" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="454.47" y1="150.93" x2="449.13" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="452.1" y1="153.9" x2="453.27" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.37" y1="156.0" x2="465.69" y2="157.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="484.47" y1="147.99" x2="472.05" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="147.99" x2="598.08" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.11" y1="150.93" x2="575.88" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="574.8" y1="149.85" x2="577.8" y2="152.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="153.9" x2="592.17" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="589.2" y1="156.84" x2="577.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="159.81" x2="586.26" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="583.29" y1="162.75" x2="577.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="577.8" y1="165.72" x2="580.35" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="568.56" y1="165.0" x2="568.56" y2="176.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="235.5" x2="566.67" y2="188.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.74" y1="183.45" x2="1223.07" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="186.39" x2="1183.68" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="189.36" x2="1223.07" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="192.3" x2="1185.57" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="195.27" x2="1223.07" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="198.21" x2="1185.57" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="201.18" x2="1223.07" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="204.12" x2="1183.17" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.2" y1="207.09" x2="1223.07" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="210.03" x2="1177.32" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.29" y1="213.0" x2="1223.07" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="215.94" x2="1183.23" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="218.91" x2="1223.07" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="221.85" x2="1185.57" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="224.82" x2="1223.07" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="227.76" x2="1185.57" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="230.73" x2="1223.07" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="233.67" x2="1183.62" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.65" y1="236.64" x2="1223.07" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="239.58" x2="1177.71" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.84" y1="242.55" x2="1223.07" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="245.49" x2="1182.78" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="248.46" x2="1223.07" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="251.4" x2="1185.57" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="254.37" x2="1223.07" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="257.31" x2="1185.57" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="260.28" x2="1223.07" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="263.22" x2="1184.07" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.1" y1="266.19" x2="1223.07" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="269.13" x2="1178.16" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.39" y1="272.1" x2="1223.07" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="275.04" x2="1182.33" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.3" y1="278.01" x2="1223.07" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="280.95" x2="1185.57" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="283.92" x2="1223.07" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="286.86" x2="1185.57" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="289.83" x2="1223.07" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="292.77" x2="1184.52" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.55" y1="295.74" x2="1223.07" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="298.68" x2="1178.61" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.94" y1="301.65" x2="1223.07" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="304.59" x2="1181.88" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.85" y1="307.56" x2="1223.07" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="310.5" x2="1185.57" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="313.47" x2="1223.07" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="316.41" x2="1185.57" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="319.38" x2="1223.07" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="322.32" x2="1184.97" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.0" y1="325.29" x2="1223.07" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="328.23" x2="1179.06" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.49" y1="331.2" x2="1223.07" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="334.14" x2="1181.43" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="337.11" x2="1223.07" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="340.05" x2="1185.57" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="343.02" x2="1223.07" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="345.96" x2="1185.57" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="348.93" x2="1223.07" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="351.87" x2="1185.42" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.45" y1="354.84" x2="1223.07" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="357.78" x2="1179.51" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.04" y1="360.75" x2="1223.07" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="363.69" x2="1180.98" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.95" y1="366.66" x2="1223.07" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="369.6" x2="1185.57" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="372.57" x2="1223.07" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="375.51" x2="1185.57" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="378.48" x2="1223.07" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="381.42" x2="1185.57" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.9" y1="384.39" x2="1223.07" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="387.33" x2="1179.96" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.59" y1="390.3" x2="1223.07" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="393.24" x2="1180.53" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.5" y1="396.21" x2="1223.07" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="399.15" x2="1185.57" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="402.12" x2="1223.07" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="405.06" x2="1185.57" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="408.03" x2="1223.07" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="410.97" x2="1185.57" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.35" y1="413.94" x2="1223.07" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="416.88" x2="1180.41" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.44" y1="419.85" x2="1223.07" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="422.79" x2="1180.08" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="425.76" x2="1223.07" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="428.7" x2="1185.57" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="431.67" x2="1223.07" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="434.61" x2="1185.57" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="437.58" x2="1223.07" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="440.52" x2="1185.57" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.8" y1="443.49" x2="1223.07" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="446.43" x2="1180.86" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.89" y1="449.4" x2="1223.07" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="452.34" x2="1179.63" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.6" y1="455.31" x2="1223.07" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="458.25" x2="1185.54" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="461.22" x2="1223.07" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1221.3" y1="464.16" x2="1185.57" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="467.13" x2="1218.36" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1215.39" y1="470.07" x2="1185.57" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.25" y1="473.04" x2="1212.45" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1209.48" y1="475.98" x2="1181.31" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.34" y1="478.95" x2="1206.54" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1203.57" y1="481.89" x2="1179.18" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1182.15" y1="484.86" x2="1200.63" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.66" y1="487.8" x2="1185.09" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="490.77" x2="1194.72" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="493.71" x2="1185.57" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="496.68" x2="1193.07" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="499.62" x2="1185.57" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="502.59" x2="1193.07" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="505.53" x2="1181.76" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1178.79" y1="508.5" x2="1193.07" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="511.44" x2="1178.73" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.7" y1="514.41" x2="1193.07" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="517.35" x2="1184.64" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="520.32" x2="1193.07" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="523.26" x2="1185.57" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="526.23" x2="1193.07" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="529.17" x2="1185.57" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.15" y1="532.14" x2="1193.07" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="535.08" x2="1182.21" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.24" y1="538.05" x2="1193.07" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="540.99" x2="1178.28" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.25" y1="543.96" x2="1193.07" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="546.9" x2="1184.19" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="549.87" x2="1193.07" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="552.81" x2="1185.57" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="555.78" x2="1193.07" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="558.72" x2="1185.57" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="561.69" x2="1193.07" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="564.63" x2="1182.66" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.69" y1="567.6" x2="1193.07" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="570.54" x2="1177.83" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.8" y1="573.51" x2="1193.07" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="576.45" x2="1183.74" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="579.42" x2="1193.07" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="582.36" x2="1185.57" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="585.33" x2="1193.07" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="588.27" x2="1185.57" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="591.24" x2="1193.07" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="594.18" x2="1183.11" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.14" y1="597.15" x2="1193.07" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="600.09" x2="1177.2" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1180.35" y1="603.06" x2="1193.07" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="606.0" x2="1183.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.4" y1="608.97" x2="1193.07" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="611.91" x2="1185.57" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="614.88" x2="1190.61" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1187.64" y1="617.82" x2="1185.57" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.7" y1="620.79" x2="1184.52" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="585.0" x2="1154.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="655.26" y1="424.5" x2="655.26" y2="454.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1154.37" y2="540.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="540.0" x2="1056.87" y2="472.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="394.95" x2="694.35" y2="394.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1154.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="510.0" x2="1073.37" y2="459.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="383.16" x2="703.53" y2="383.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1128.87" y1="480.0" x2="1053.87" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="371.34" x2="714.21" y2="371.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="427.32" x2="998.55" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="921.87" y1="435.18" x2="878.55" y2="435.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="874.47" y1="419.85" x2="919.65" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="919.65" y1="419.13" x2="911.31" y2="419.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="416.88" x2="874.11" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="872.88" y1="413.94" x2="911.49" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="911.31" y1="422.79" x2="875.49" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="878.46" y1="425.76" x2="911.4" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="938.25" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="937.05" y1="421.17" x2="937.05" y2="435.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.37" y1="439.5" x2="1007.55" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="442.68" x2="1055.19" y2="442.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.37" y1="427.32" x2="1019.37" y2="427.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="495.0" x2="1109.37" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="495.0" x2="1154.37" y2="480.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="1139.37" y2="465.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.37" y1="465.0" x2="956.37" y2="297.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="306.39" x2="719.01" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="435.0" x2="1154.37" y2="420.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="300.48" x2="715.92" y2="300.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="405.0" x2="1124.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="282.75" x2="706.62" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="375.0" x2="1154.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="265.05" x2="697.35" y2="265.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1169.37" y2="315.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="300.0" x2="1094.37" y2="300.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.89" y1="252.27" x2="689.85" y2="252.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.79" y1="254.37" x2="549.63" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="257.31" x2="664.92" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="260.28" x2="549.63" y2="260.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="263.22" x2="664.92" y2="263.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="266.19" x2="549.63" y2="266.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="269.13" x2="664.92" y2="269.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="272.1" x2="550.8" y2="272.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.74" y1="275.04" x2="664.92" y2="275.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="278.01" x2="556.71" y2="278.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.37" y1="285.0" x2="543.03" y2="273.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="539.97" y2="193.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.94" y1="235.5" x2="548.94" y2="249.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="549.63" y1="251.4" x2="692.64" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.61" y1="248.46" x2="660.15" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.13" y1="245.49" x2="698.55" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="701.52" y1="242.55" x2="662.13" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="667.62" y1="239.58" x2="704.46" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="707.43" y1="236.64" x2="670.59" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="669.87" y2="228.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.6" y1="257.4" x2="1087.44" y2="257.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1083.51" y1="257.31" x2="1087.35" y2="257.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1084.41" y1="254.37" x2="1080.57" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.44" y1="251.4" x2="1077.6" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1078.5" y1="248.46" x2="1074.66" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.53" y1="245.49" x2="1071.69" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1072.59" y1="242.55" x2="1068.75" y2="242.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.62" y1="239.58" x2="1065.78" y2="239.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.68" y1="236.64" x2="1062.84" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.71" y1="233.67" x2="1059.87" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1060.77" y1="230.73" x2="1056.93" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1057.8" y1="227.76" x2="1053.96" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.86" y1="224.82" x2="1051.02" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1051.89" y1="221.85" x2="1048.05" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1048.95" y1="218.91" x2="981.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="983.94" y1="215.94" x2="1045.98" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1043.04" y1="213.0" x2="985.17" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="985.47" y1="210.03" x2="1040.07" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1037.13" y1="207.09" x2="985.17" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.37" y1="210.0" x2="959.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="235.5" x2="625.71" y2="219.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="992.37" y1="183.0" x2="1004.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1019.37" y1="195.0" x2="1001.37" y2="177.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="619.8" y1="235.5" x2="619.8" y2="216.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1010.37" y1="171.0" x2="647.37" y2="171.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="235.5" x2="602.1" y2="207.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="285.0" x2="1124.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1028.37" y1="159.0" x2="641.37" y2="159.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="235.5" x2="590.28" y2="201.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="255.0" x2="1124.37" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1046.37" y1="147.0" x2="635.37" y2="147.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="235.5" x2="578.46" y2="194.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="225.0" x2="1124.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.37" y1="135.0" x2="629.37" y2="135.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="219.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="449.37" y1="88.5" x2="449.37" y2="45.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="464.28" y1="38.64" x2="464.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.78" y1="35.7" x2="462.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.02" y1="32.73" x2="468.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="473.79" y1="29.79" x2="454.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.79" y1="29.79" x2="424.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.14" y1="59.34" x2="469.47" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="62.28" x2="455.97" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="65.25" x2="469.47" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="68.19" x2="455.97" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="71.16" x2="469.47" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="74.1" x2="455.97" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="77.07" x2="469.47" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="80.01" x2="455.97" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="455.97" y1="82.98" x2="469.47" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="85.92" x2="456.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.09" y1="88.89" x2="469.47" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="91.83" x2="462.03" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="94.8" x2="469.47" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="97.74" x2="463.65" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="100.71" x2="469.47" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="103.65" x2="463.65" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="463.65" y1="106.62" x2="469.47" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="109.56" x2="463.65" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.23" y1="112.53" x2="469.47" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="115.47" x2="466.29" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="118.44" x2="469.47" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.47" y1="121.38" x2="466.29" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="466.29" y1="124.35" x2="470.46" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="472.68" y1="127.29" x2="466.29" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.05" y1="120.0" x2="457.05" y2="96.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="88.89" x2="501.18" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.21" y1="91.83" x2="489.27" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="94.8" x2="490.02" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="85.92" x2="504.12" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.09" y1="82.98" x2="489.27" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="80.01" x2="510.03" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.0" y1="77.07" x2="489.27" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="74.1" x2="515.94" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.91" y1="71.16" x2="489.27" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="68.19" x2="521.85" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.82" y1="65.25" x2="489.27" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="62.28" x2="527.76" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="530.73" y1="59.34" x2="515.64" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="59.34" x2="507.87" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="56.37" x2="510.87" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="53.43" x2="507.87" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="50.46" x2="510.87" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="47.52" x2="507.87" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="44.55" x2="537.87" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="41.61" x2="540.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="38.64" x2="537.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="35.7" x2="540.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="540.87" y1="32.73" x2="537.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.87" y1="29.79" x2="540.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.97" y1="29.79" x2="563.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.75" y1="32.73" x2="549.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.88" y1="35.7" x2="555.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.49" y1="38.64" x2="553.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="535.77" y1="29.79" x2="512.97" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="29.79" x2="507.87" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.77" y1="29.79" x2="484.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="490.02" y1="32.73" x2="499.74" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.86" y1="35.7" x2="492.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.28" y1="38.64" x2="495.12" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.64" y1="50.46" x2="494.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="493.44" y1="53.43" x2="496.2" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="498.69" y1="56.37" x2="490.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.27" y1="59.34" x2="503.13" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.08" y1="56.37" x2="528.69" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="526.2" y1="53.43" x2="522.54" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.01" y1="50.46" x2="524.76" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.12" y1="38.64" x2="523.65" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="521.88" y1="35.7" x2="526.86" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="529.74" y1="32.73" x2="519.03" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="32.73" x2="507.87" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="35.7" x2="510.87" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="38.64" x2="507.87" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.87" y1="41.61" x2="510.87" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="60.0" x2="494.37" y2="105.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="509.37" y1="105.0" x2="548.37" y2="66.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1119.87" y2="150.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.37" y1="105.0" x2="564.87" y2="79.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1154.37" y1="150.0" x2="1169.37" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.19" y1="153.9" x2="1223.07" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="156.84" x2="1184.13" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="159.81" x2="1223.07" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="162.75" x2="1185.57" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="165.72" x2="1223.07" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="168.66" x2="1185.57" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="171.63" x2="1223.07" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="174.57" x2="1182.72" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.75" y1="177.54" x2="1223.07" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="180.48" x2="1177.77" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1139.37" y1="195.0" x2="1124.37" y2="195.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1109.37" y1="120.0" x2="1049.37" y2="60.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.64" y1="50.46" x2="614.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.17" y1="47.52" x2="585.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.57" y1="44.55" x2="613.17" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.26" y1="41.61" x2="585.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.28" y1="38.64" x2="614.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.78" y1="35.7" x2="582.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="580.02" y1="32.73" x2="618.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.79" y1="29.79" x2="574.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="634.95" y1="29.79" x2="653.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.75" y1="32.73" x2="640.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="642.99" y1="35.7" x2="645.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.49" y1="38.64" x2="644.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.95" y1="29.79" x2="683.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.75" y1="32.73" x2="670.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="672.99" y1="35.7" x2="675.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="674.49" y1="38.64" x2="674.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.95" y1="29.79" x2="713.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="708.75" y1="32.73" x2="700.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="702.99" y1="35.7" x2="705.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="704.49" y1="38.64" x2="704.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="724.95" y1="29.79" x2="743.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="738.75" y1="32.73" x2="730.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="732.99" y1="35.7" x2="735.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.49" y1="38.64" x2="734.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.95" y1="29.79" x2="773.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="768.75" y1="32.73" x2="760.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="762.99" y1="35.7" x2="765.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="764.49" y1="38.64" x2="764.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="784.95" y1="29.79" x2="803.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="798.75" y1="32.73" x2="790.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="792.99" y1="35.7" x2="795.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="794.49" y1="38.64" x2="794.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="814.95" y1="29.79" x2="833.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="828.75" y1="32.73" x2="820.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.99" y1="35.7" x2="825.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="824.49" y1="38.64" x2="824.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="844.95" y1="29.79" x2="893.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="888.75" y1="32.73" x2="850.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.99" y1="35.7" x2="885.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.49" y1="38.64" x2="854.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.51" y1="41.61" x2="883.26" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="883.17" y1="44.55" x2="855.57" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="855.57" y1="47.52" x2="883.17" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="884.1" y1="50.46" x2="854.64" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="904.95" y1="29.79" x2="923.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="918.75" y1="32.73" x2="910.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="912.99" y1="35.7" x2="915.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="914.49" y1="38.64" x2="914.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="934.95" y1="29.79" x2="953.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="948.75" y1="32.73" x2="940.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="942.99" y1="35.7" x2="945.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="944.49" y1="38.64" x2="944.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="964.95" y1="29.79" x2="983.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="978.75" y1="32.73" x2="970.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="972.99" y1="35.7" x2="975.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="974.49" y1="38.64" x2="974.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="994.95" y1="29.79" x2="1013.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1008.75" y1="32.73" x2="1000.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1002.99" y1="35.7" x2="1005.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1004.49" y1="38.64" x2="1004.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1024.95" y1="29.79" x2="1043.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1038.75" y1="32.73" x2="1030.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1032.99" y1="35.7" x2="1035.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1034.49" y1="38.64" x2="1034.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1054.95" y1="29.79" x2="1073.79" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1068.75" y1="32.73" x2="1060.02" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1062.99" y1="35.7" x2="1065.78" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1064.49" y1="38.64" x2="1064.28" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.44" y1="53.43" x2="1065.33" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1067.85" y1="56.37" x2="1060.92" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1058.04" y1="59.34" x2="1071.63" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1063.95" y1="65.25" x2="1155.69" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1152.72" y1="62.28" x2="1060.98" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1066.89" y1="68.19" x2="1162.65" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1176.09" y1="68.19" x2="1196.04" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1197.63" y1="68.85" x2="1194.36" y2="67.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1202.73" y1="68.19" x2="1223.07" y2="68.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="65.25" x2="1206.66" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1208.01" y1="62.28" x2="1222.74" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1219.8" y1="59.34" x2="1208.22" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1207.47" y1="56.37" x2="1216.83" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1213.89" y1="53.43" x2="1205.31" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1210.92" y1="50.46" x2="1193.1" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="47.52" x2="1207.98" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1205.01" y1="44.55" x2="1193.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.37" y1="41.61" x2="1202.07" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1199.1" y1="38.64" x2="1192.71" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.51" y1="35.7" x2="1196.16" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.19" y1="32.73" x2="1190.28" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.09" y1="29.79" x2="1193.07" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1193.07" y1="26.82" x2="1185.15" y2="26.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.07" y1="23.88" x2="1193.07" y2="23.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1150.68" y1="29.79" x2="1114.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.02" y1="32.73" x2="1148.49" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.26" y1="35.7" x2="1122.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.28" y1="38.64" x2="1146.03" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="41.61" x2="1125.51" y2="41.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="44.55" x2="1145.37" y2="44.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1145.37" y1="47.52" x2="1125.57" y2="47.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.64" y1="50.46" x2="1145.67" y2="50.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1146.9" y1="53.43" x2="1123.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1120.92" y1="56.37" x2="1148.1" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1149.78" y1="59.34" x2="1117.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1101.63" y1="59.34" x2="1087.14" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.92" y1="56.37" x2="1097.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.33" y1="53.43" x2="1093.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1094.28" y1="38.64" x2="1094.49" y2="38.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1095.78" y1="35.7" x2="1092.99" y2="35.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1090.02" y1="32.73" x2="1098.75" y2="32.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1103.79" y1="29.79" x2="1084.95" y2="29.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1069.86" y1="71.16" x2="1223.07" y2="71.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="74.1" x2="1072.8" y2="74.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1075.77" y1="77.07" x2="1223.07" y2="77.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="80.01" x2="1078.71" y2="80.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1081.68" y1="82.98" x2="1223.07" y2="82.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="85.92" x2="1084.62" y2="85.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1087.59" y1="88.89" x2="1223.07" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="91.83" x2="1177.8" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.22" y1="94.8" x2="1223.07" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="97.74" x2="1183.2" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.37" y1="100.71" x2="1223.07" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="103.65" x2="1170.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="100.71" x2="1167.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="103.65" x2="1140.87" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="100.71" x2="1137.87" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="103.65" x2="1102.35" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1099.41" y1="100.71" x2="1124.37" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1125.57" y1="97.74" x2="1096.44" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1093.5" y1="94.8" x2="1127.52" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1130.97" y1="91.83" x2="1090.53" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1105.32" y1="106.62" x2="1123.83" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1124.46" y1="109.56" x2="1108.26" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1111.23" y1="112.53" x2="1125.69" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="97.74" x2="1140.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1140.87" y1="94.8" x2="1137.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1137.87" y1="91.83" x2="1140.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1147.8" y1="91.83" x2="1160.97" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1157.52" y1="94.8" x2="1151.22" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1153.2" y1="97.74" x2="1155.57" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="97.74" x2="1170.87" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1170.87" y1="94.8" x2="1167.87" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1167.87" y1="91.83" x2="1170.87" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1184.91" y1="106.62" x2="1223.07" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="109.56" x2="1184.31" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.05" y1="112.53" x2="1223.07" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="115.47" x2="1180.98" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1177.38" y1="118.44" x2="1223.07" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="121.38" x2="1178.67" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1181.64" y1="124.35" x2="1223.07" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="127.29" x2="1184.58" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="130.26" x2="1223.07" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="133.2" x2="1185.57" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.57" y1="136.17" x2="1223.07" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="139.11" x2="1185.57" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1185.21" y1="142.08" x2="1223.07" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="145.02" x2="1182.27" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1179.3" y1="147.99" x2="1223.07" y2="147.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1223.07" y1="150.93" x2="1178.22" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1169.37" y1="135.0" x2="1154.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1183.08" y1="65.25" x2="1192.11" y2="65.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.76" y1="62.28" x2="1186.05" y2="62.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1188.99" y1="59.34" x2="1190.52" y2="59.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1190.64" y1="56.37" x2="1191.3" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1191.87" y1="53.43" x2="1193.46" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1031.22" y1="201.18" x2="1028.85" y2="201.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1025.97" y1="204.12" x2="1034.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1012.8" y1="204.12" x2="1010.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="997.8" y1="204.12" x2="995.97" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="967.59" y1="218.91" x2="644.82" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="647.76" y1="215.94" x2="964.83" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="963.6" y1="213.0" x2="650.73" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="653.67" y1="210.03" x2="963.27" y2="210.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="962.13" y1="207.09" x2="656.64" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.58" y1="204.12" x2="959.16" y2="204.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="1124.37" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="1007.37" y1="258.0" x2="722.37" y2="258.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="280.95" x2="649.65" y2="280.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="652.62" y1="283.92" x2="664.92" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="286.86" x2="655.56" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="658.53" y1="289.83" x2="664.92" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="292.77" x2="661.47" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.44" y1="295.74" x2="664.92" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="659.37" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="761.94" y1="392.4" x2="758.64" y2="389.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="354.84" x2="744.24" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="745.47" y1="357.78" x2="745.47" y2="362.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="759.84" y1="390.3" x2="742.5" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.53" y1="387.33" x2="756.87" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="384.39" x2="736.59" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="733.62" y1="381.42" x2="754.77" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="378.48" x2="730.68" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="727.71" y1="375.51" x2="754.77" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="372.57" x2="724.77" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="725.22" y1="369.6" x2="728.55" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="369.6" x2="754.77" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="366.66" x2="743.43" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="744.87" y1="363.69" x2="754.77" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="360.75" x2="745.47" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="734.37" y1="360.0" x2="704.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="713.46" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="717.84" y1="334.14" x2="739.56" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="337.11" x2="720.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="723.75" y1="340.05" x2="739.56" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.56" y1="338.25" x2="748.8" y2="338.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="739.74" y1="343.02" x2="726.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="729.66" y1="345.96" x2="742.26" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="741.96" y1="351.87" x2="754.77" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="754.77" y1="348.93" x2="736.62" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="345.96" x2="749.94" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="749.94" y1="343.02" x2="748.8" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="748.8" y1="340.05" x2="749.94" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="740.22" y1="331.2" x2="714.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.93" y1="328.23" x2="725.91" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="722.94" y1="325.29" x2="708.99" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="719.37" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="695.28" y1="335.91" x2="678.87" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="341.82" x2="656.58" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="348.93" x2="627.63" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="630.57" y1="351.87" x2="637.86" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="637.77" y1="351.72" x2="637.77" y2="347.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="354.84" x2="633.54" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="636.48" y1="357.78" x2="641.4" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.06" y1="360.75" x2="638.22" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="631.62" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.71" y1="424.5" x2="625.71" y2="412.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="623.7" y1="410.52" x2="624.3" y2="411.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.15" y1="410.97" x2="625.02" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="408.03" x2="520.11" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="519.42" y1="409.95" x2="524.37" y2="405.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="405.06" x2="625.02" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="402.12" x2="520.11" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="399.15" x2="625.02" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="396.21" x2="520.11" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="393.24" x2="625.02" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="390.3" x2="520.11" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="387.33" x2="625.02" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="384.39" x2="520.11" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="381.42" x2="625.02" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="378.48" x2="520.11" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="375.51" x2="625.02" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="372.57" x2="520.11" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="369.6" x2="625.02" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="625.02" y1="366.66" x2="520.11" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="363.69" x2="623.73" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="620.79" y1="360.75" x2="520.11" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="357.78" x2="617.82" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="614.88" y1="354.84" x2="520.11" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.87" y1="347.73" x2="513.27" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="341.82" x2="477.78" y2="341.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.09" y1="342.6" x2="466.68" y2="342.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="476.52" y1="343.02" x2="451.47" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="345.96" x2="475.92" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="475.92" y1="348.93" x2="451.47" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="351.87" x2="475.92" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="359.52" x2="461.85" y2="359.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="450.87" y2="384.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="601.17" y2="590.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="377.25" x2="475.65" y2="377.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="657.57" y2="554.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.57" y1="545.1" x2="532.17" y2="545.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="407.73" x2="496.5" y2="447.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="408.03" x2="506.91" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="410.97" x2="496.5" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="413.94" x2="506.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="416.88" x2="496.5" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="419.85" x2="506.64" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="422.79" x2="496.5" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="425.76" x2="506.64" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="428.7" x2="496.5" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="431.67" x2="506.64" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.64" y1="434.61" x2="496.5" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="437.58" x2="508.74" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="505.47" y1="442.5" x2="515.07" y2="442.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="520.11" y1="410.97" x2="521.01" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="405.06" x2="503.55" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="402.12" x2="506.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="399.15" x2="503.85" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="396.21" x2="506.91" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="393.24" x2="503.85" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="390.3" x2="506.91" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="387.33" x2="503.85" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="384.39" x2="506.91" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="381.42" x2="503.85" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="378.48" x2="506.91" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="375.51" x2="503.85" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="372.57" x2="506.91" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="369.6" x2="503.85" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="366.66" x2="506.91" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="363.69" x2="503.85" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="360.75" x2="506.91" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="506.91" y1="357.78" x2="503.85" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="503.85" y1="354.84" x2="506.91" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="513.27" y1="347.73" x2="513.51" y2="347.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="525.33" y1="424.5" x2="525.33" y2="449.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.66" y1="449.4" x2="516.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="446.43" x2="496.5" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="496.5" y1="443.49" x2="518.73" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="518.73" y1="440.52" x2="496.5" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="501.87" y1="439.2" x2="502.77" y2="440.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.24" y1="424.5" x2="531.24" y2="473.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.37" y1="495.0" x2="537.15" y2="482.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="543.03" y1="424.5" x2="543.03" y2="491.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.27" y1="525.0" x2="548.94" y2="507.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.85" y1="424.5" x2="554.85" y2="513.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="558.87" y1="525.0" x2="560.76" y2="523.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="566.67" y1="424.5" x2="566.67" y2="515.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="584.37" y1="525.0" x2="572.58" y2="513.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="578.46" y1="424.5" x2="578.46" y2="499.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="599.37" y1="498.0" x2="599.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="590.28" y1="424.5" x2="590.28" y2="473.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.87" y1="498.0" x2="620.37" y2="496.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="602.1" y1="424.5" x2="602.1" y2="461.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="644.37" y1="498.0" x2="641.37" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="613.92" y1="424.5" x2="613.92" y2="452.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="675.87" y1="510.0" x2="675.87" y2="505.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="643.44" y1="424.5" x2="643.44" y2="464.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="902.37" y1="330.0" x2="794.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="313.5" x2="812.37" y2="316.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="812.37" y1="316.41" x2="852.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="313.47" x2="826.47" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="310.5" x2="852.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="307.56" x2="825.48" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="822.54" y1="304.59" x2="853.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="862.62" y1="314.25" x2="862.62" y2="315.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="313.47" x2="897.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="316.41" x2="870.87" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="319.38" x2="897.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="322.32" x2="870.87" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.87" y1="310.5" x2="897.27" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="897.27" y1="307.56" x2="870.87" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="870.66" y1="304.59" x2="897.27" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="906.87" y1="315.0" x2="906.87" y2="325.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="852.87" y1="322.32" x2="825.63" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="826.47" y1="319.38" x2="852.87" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="678.87" y1="324.09" x2="663.96" y2="324.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="665.52" y1="325.29" x2="613.44" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="610.47" y1="328.23" x2="664.92" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="664.92" y1="331.2" x2="609.9" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="612.84" y1="334.14" x2="664.92" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="651.96" y1="337.11" x2="615.81" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="618.75" y1="340.05" x2="642.69" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="639.69" y1="343.02" x2="621.72" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="624.66" y1="345.96" x2="638.34" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="631.62" y1="362.25" x2="599.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="531.03" y1="351.87" x2="611.91" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="608.97" y1="348.93" x2="534.0" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="536.94" y1="345.96" x2="606.0" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.06" y1="343.02" x2="539.91" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="542.85" y1="340.05" x2="600.09" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="597.15" y1="337.11" x2="545.82" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="503.37" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="335.91" x2="473.28" y2="335.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="457.77" y1="331.2" x2="453.03" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="334.14" x2="457.95" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="459.18" y1="337.11" x2="451.47" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="451.47" y1="340.05" x2="461.73" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.22" y1="328.23" x2="455.97" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="458.94" y1="325.29" x2="459.45" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.69" y1="318.18" x2="444.87" y2="330.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="598.47" y1="609.0" x2="599.37" y2="608.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="569.37" y1="615.0" x2="551.97" y2="597.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="306.39" x2="450.51" y2="306.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="492.27" y1="614.1" x2="491.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="294.57" x2="437.94" y2="294.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="420.87" y1="285.0" x2="420.87" y2="574.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="431.37" y1="615.0" x2="414.87" y2="598.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="270.93" x2="434.94" y2="270.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="408.87" y1="279.0" x2="408.87" y2="607.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="371.37" y1="615.0" x2="366.69" y2="610.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="537.15" y1="235.5" x2="537.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="300.0" x2="644.37" y2="285.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="510.87" y1="292.5" x2="501.15" y2="282.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="276.84" x2="510.03" y2="276.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="288.66" x2="453.03" y2="288.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="408.87" y2="279.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="281.43" x2="364.47" y2="313.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="283.92" x2="393.81" y2="283.92" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="286.86" x2="390.84" y2="286.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="387.9" y1="289.83" x2="396.27" y2="289.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="292.77" x2="384.93" y2="292.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="381.99" y1="295.74" x2="396.27" y2="295.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="298.68" x2="379.02" y2="298.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="376.08" y1="301.65" x2="396.27" y2="301.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="304.59" x2="373.11" y2="304.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="370.17" y1="307.56" x2="396.27" y2="307.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="310.5" x2="367.2" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="313.47" x2="396.27" y2="313.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="316.41" x2="364.47" y2="316.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="319.38" x2="396.27" y2="319.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="322.32" x2="364.47" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="325.29" x2="396.27" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="328.23" x2="364.47" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="331.2" x2="396.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="334.14" x2="364.47" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="337.11" x2="396.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="340.05" x2="364.47" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="343.02" x2="396.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="345.96" x2="364.47" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="348.93" x2="396.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="351.87" x2="364.47" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="354.84" x2="396.27" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="357.78" x2="364.47" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="360.75" x2="396.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="363.69" x2="364.47" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="366.66" x2="396.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="369.6" x2="364.47" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="372.57" x2="396.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="375.51" x2="364.47" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="378.48" x2="396.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="381.42" x2="364.47" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.95" y1="384.39" x2="396.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="387.33" x2="367.56" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.76" y1="390.3" x2="396.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="393.24" x2="368.97" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="368.58" y1="396.21" x2="396.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="399.15" x2="367.35" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="402.12" x2="396.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="405.06" x2="364.47" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="408.03" x2="396.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="410.97" x2="364.47" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="413.94" x2="396.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="416.88" x2="364.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="419.85" x2="396.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="422.79" x2="364.47" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="425.76" x2="396.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="428.7" x2="364.47" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="431.67" x2="396.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="434.61" x2="364.47" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="437.58" x2="396.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="440.52" x2="364.47" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="443.49" x2="396.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="446.43" x2="364.47" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="449.4" x2="396.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="452.34" x2="364.47" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="455.31" x2="396.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="458.25" x2="364.47" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="461.22" x2="396.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="464.16" x2="364.47" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.47" y1="467.13" x2="396.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="470.07" x2="362.13" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.19" y1="473.04" x2="396.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="475.98" x2="356.22" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="353.28" y1="478.95" x2="396.27" y2="478.95" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="481.89" x2="350.31" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="347.37" y1="484.86" x2="396.27" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="487.8" x2="392.7" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="490.77" x2="396.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="493.71" x2="393.06" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="393.06" y1="496.68" x2="396.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="499.62" x2="393.06" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="392.31" y1="502.59" x2="396.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="396.27" y1="505.53" x2="391.29" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="508.5" x2="396.27" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="395.1" y1="511.44" x2="391.29" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="391.29" y1="514.41" x2="392.16" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="382.05" y1="510.0" x2="382.05" y2="496.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="493.71" x2="364.65" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="494.13" x2="364.65" y2="485.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="364.65" y1="490.77" x2="366.39" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.39" y1="487.8" x2="364.65" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.03" y1="487.8" x2="344.4" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="490.77" x2="356.31" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="493.71" x2="343.29" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.29" y1="496.68" x2="356.31" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.31" y1="499.62" x2="343.29" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.41" y1="502.59" x2="357.3" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="505.53" x2="345.87" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="508.5" x2="357.48" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="511.44" x2="345.87" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="514.41" x2="357.48" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.48" y1="517.35" x2="345.87" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="520.32" x2="360.09" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="523.26" x2="345.87" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="345.87" y1="526.23" x2="360.09" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="529.17" x2="345.87" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="532.14" x2="352.62" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="535.08" x2="351.48" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="538.05" x2="352.62" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="540.99" x2="351.48" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="543.96" x2="352.62" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="352.62" y1="546.9" x2="351.48" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="343.5" y1="549.87" x2="360.09" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="552.81" x2="216.54" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="549.87" x2="329.91" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="546.9" x2="215.97" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="543.96" x2="327.48" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="327.48" y1="540.99" x2="215.97" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="538.05" x2="327.48" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="336.69" y1="540.0" x2="336.69" y2="519.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="359.91" y1="532.14" x2="360.09" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="366.69" y1="523.5" x2="366.69" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="314.7" y1="535.08" x2="314.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="299.7" y1="535.08" x2="299.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.7" y1="535.08" x2="284.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.7" y1="535.08" x2="269.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.7" y1="535.08" x2="254.07" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="239.7" y1="535.08" x2="237.96" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="535.08" x2="231.42" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="535.65" x2="227.4" y2="535.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="532.14" x2="232.32" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="529.17" x2="231.42" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="526.23" x2="232.32" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="523.26" x2="231.42" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="520.32" x2="232.32" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="517.35" x2="231.42" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="514.41" x2="232.32" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="511.44" x2="231.42" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.42" y1="508.5" x2="232.32" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.32" y1="505.53" x2="231.42" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.74" y1="505.53" x2="215.97" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="502.59" x2="240.27" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="499.62" x2="215.97" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="496.68" x2="240.27" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="240.27" y1="493.71" x2="215.97" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="490.77" x2="240.27" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="508.5" x2="215.97" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="511.44" x2="223.47" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="514.41" x2="215.97" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="517.35" x2="223.47" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="520.32" x2="215.97" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="523.26" x2="223.47" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.47" y1="526.23" x2="215.97" y2="526.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="529.17" x2="223.47" y2="529.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="223.59" y1="532.14" x2="215.97" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="215.97" y1="535.08" x2="225.78" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="209.37" y1="555.0" x2="224.37" y2="570.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.52" y1="561.69" x2="225.39" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.45" y1="558.72" x2="274.56" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.56" y1="561.69" x2="269.25" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.68" y1="564.63" x2="274.56" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.71" y1="567.6" x2="272.88" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="272.97" y1="570.54" x2="274.86" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="573.51" x2="272.46" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="271.14" y1="576.45" x2="273.96" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="579.42" x2="268.17" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="273.96" y1="582.36" x2="261.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.03" y1="585.33" x2="275.37" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="588.27" x2="267.0" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.94" y1="591.24" x2="277.77" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="277.77" y1="594.18" x2="272.91" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.85" y1="597.15" x2="277.77" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="600.0" x2="299.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="300.42" y1="603.06" x2="296.76" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.82" y1="600.09" x2="305.04" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="317.73" y1="600.09" x2="336.78" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="600.09" x2="342.87" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="603.06" x2="339.87" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="606.0" x2="342.87" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="342.87" y1="608.97" x2="339.87" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="339.87" y1="611.91" x2="342.87" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.48" y1="603.06" x2="360.09" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="600.09" x2="345.99" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="354.12" y1="606.0" x2="357.57" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="356.34" y1="608.97" x2="355.8" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="597.15" x2="290.97" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="594.18" x2="360.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="591.24" x2="290.97" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.97" y1="588.27" x2="360.09" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="585.33" x2="293.4" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="582.36" x2="360.09" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="579.42" x2="294.78" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.78" y1="576.45" x2="360.09" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="573.51" x2="294.78" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.91" y1="570.54" x2="360.09" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="567.6" x2="294.06" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="564.63" x2="360.09" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="561.69" x2="294.18" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="294.18" y1="558.72" x2="360.09" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="360.09" y1="555.78" x2="293.49" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="555.78" x2="283.8" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="283.8" y1="558.72" x2="284.94" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.94" y1="561.69" x2="283.8" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="275.28" y1="555.78" x2="219.48" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="523.26" x2="35.67" y2="523.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="532.14" x2="125.61" y2="532.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="120.96" y1="535.08" x2="35.67" y2="535.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="538.05" x2="118.02" y2="538.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="115.05" y1="540.99" x2="35.67" y2="540.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="543.96" x2="112.11" y2="543.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.14" y1="546.9" x2="35.67" y2="546.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="549.87" x2="106.77" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="552.81" x2="35.67" y2="552.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="555.78" x2="106.77" y2="555.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="558.72" x2="35.67" y2="558.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="561.69" x2="106.77" y2="561.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="564.63" x2="35.67" y2="564.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="567.6" x2="106.77" y2="567.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="570.54" x2="35.67" y2="570.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="573.51" x2="82.23" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="81.81" y1="573.66" x2="86.73" y2="571.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.02" y1="576.45" x2="35.67" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="579.42" x2="77.22" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="582.36" x2="35.67" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="585.33" x2="76.02" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.26" y1="588.27" x2="35.67" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="591.24" x2="77.49" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="79.65" y1="594.18" x2="35.67" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="597.15" x2="83.76" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="95.01" y1="597.15" x2="125.61" y2="597.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="600.09" x2="35.67" y2="600.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="603.06" x2="125.61" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="606.0" x2="35.67" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="608.97" x2="126.57" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.61" y1="594.18" x2="99.09" y2="594.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.28" y1="591.24" x2="120.78" y2="591.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.81" y1="588.27" x2="102.48" y2="588.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.75" y1="585.33" x2="114.87" y2="585.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="111.9" y1="582.36" x2="102.75" y2="582.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="101.52" y1="579.42" x2="108.96" y2="579.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="106.77" y1="576.45" x2="99.75" y2="576.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="96.54" y1="573.51" x2="106.77" y2="573.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="123.87" y2="585.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="113.37" y1="574.5" x2="113.37" y2="552.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.47" y1="549.87" x2="124.86" y2="549.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.96" y1="520.32" x2="202.77" y2="520.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="517.35" x2="171.24" y2="517.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="514.41" x2="202.77" y2="514.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="511.44" x2="171.24" y2="511.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="508.5" x2="202.77" y2="508.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="505.53" x2="171.24" y2="505.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="171.24" y1="502.59" x2="202.77" y2="502.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="499.62" x2="168.9" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.25" y1="487.8" x2="202.77" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="484.86" x2="170.64" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="484.86" x2="146.97" y2="484.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="487.8" x2="149.88" y2="487.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="481.89" x2="146.97" y2="481.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="475.98" x2="149.88" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="473.04" x2="146.97" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="470.07" x2="149.88" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="460.41" x2="166.74" y2="460.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="443.49" x2="170.34" y2="442.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="458.25" x2="146.97" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="455.31" x2="149.88" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="452.34" x2="146.97" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="449.4" x2="60.27" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="452.34" x2="85.02" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="80.19" y1="455.31" x2="60.27" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="458.25" x2="77.7" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.47" y1="461.22" x2="60.27" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="464.16" x2="76.02" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="76.02" y1="467.13" x2="60.27" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="470.07" x2="77.01" y2="470.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="78.51" y1="473.04" x2="60.27" y2="473.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="475.98" x2="81.45" y2="475.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="69.15" y1="490.77" x2="202.77" y2="490.77" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="493.71" x2="72.09" y2="493.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="75.06" y1="496.68" x2="202.77" y2="496.68" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="464.16" x2="102.75" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="102.27" y1="461.22" x2="202.77" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="458.25" x2="169.98" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="455.31" x2="202.77" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.77" y1="452.34" x2="170.64" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="170.64" y1="446.43" x2="177.45" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="169.41" y1="440.52" x2="168.93" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="166.44" y1="437.58" x2="60.27" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="440.52" x2="127.92" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.24" y1="443.49" x2="60.27" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="446.43" x2="126.21" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.21" y1="452.34" x2="93.75" y2="452.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="98.58" y1="455.31" x2="126.21" y2="455.31" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.87" y1="458.25" x2="101.04" y2="458.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="446.43" x2="149.88" y2="446.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="443.49" x2="146.97" y2="443.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="146.97" y1="440.52" x2="149.88" y2="440.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.88" y1="449.4" x2="202.77" y2="449.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="437.58" x2="212.49" y2="437.58" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="434.61" x2="215.43" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="431.67" x2="222.87" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="222.87" y1="428.7" x2="210.12" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.33" y1="425.76" x2="223.11" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.97" y1="422.79" x2="179.67" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.35" y1="419.85" x2="217.17" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.27" y1="416.88" x2="175.47" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="181.08" y1="413.94" x2="158.52" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="412.47" x2="155.37" y2="421.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="410.97" x2="178.65" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="408.03" x2="159.12" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.12" y1="405.06" x2="178.65" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="402.12" x2="158.91" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.68" y1="399.15" x2="178.65" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.65" y1="396.21" x2="156.48" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="155.07" y1="393.24" x2="180.87" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="179.16" y1="390.3" x2="152.13" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="149.16" y1="387.33" x2="176.22" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="174.72" y1="384.39" x2="143.1" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.64" y1="384.39" x2="60.27" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="387.33" x2="119.61" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="116.64" y1="390.3" x2="60.27" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="393.24" x2="113.7" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.29" y1="396.21" x2="60.27" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="399.15" x2="111.06" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.86" y1="402.12" x2="60.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="405.06" x2="109.62" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="109.62" y1="408.03" x2="60.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="410.97" x2="109.62" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="110.22" y1="413.94" x2="60.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="416.88" x2="111.45" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="112.68" y1="419.85" x2="60.27" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="422.79" x2="114.63" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="117.57" y1="425.76" x2="60.27" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="428.7" x2="120.78" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.89" y1="431.67" x2="60.27" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="434.61" x2="161.79" y2="434.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.21" y1="431.67" x2="140.85" y2="431.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="147.99" y1="428.7" x2="157.98" y2="428.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.77" y1="425.76" x2="151.2" y2="425.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="154.14" y1="422.79" x2="158.19" y2="422.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="159.42" y1="419.85" x2="156.09" y2="419.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="157.29" y1="416.88" x2="162.3" y2="416.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="207.66" y1="413.94" x2="216.27" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.23" y1="410.97" x2="210.12" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="408.03" x2="219.18" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.74" y1="405.06" x2="210.12" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="210.12" y1="402.12" x2="215.76" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="214.77" y1="399.15" x2="212.67" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.87" y1="397.5" x2="232.05" y2="391.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="368.85" x2="266.52" y2="368.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="363.69" x2="328.86" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="360.75" x2="269.88" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="357.78" x2="328.86" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="354.84" x2="269.88" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="351.87" x2="329.46" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.46" y1="351.84" x2="269.88" y2="351.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="327.87" y2="352.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.25" y1="351.15" x2="340.71" y2="351.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="345.0" x2="357.87" y2="322.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.0" y1="334.14" x2="351.27" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="357.87" y1="322.5" x2="357.87" y2="310.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="366.66" x2="269.82" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.28" y1="369.6" x2="328.86" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="372.57" x2="269.88" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.88" y1="375.51" x2="328.86" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="378.48" x2="269.88" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="380.67" x2="258.03" y2="384.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.87" y1="417.0" x2="271.53" y2="401.34" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.61" y1="401.34" x2="284.61" y2="412.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="418.65" x2="296.37" y2="424.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="313.35" y1="461.22" x2="302.28" y2="461.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="304.68" y1="464.16" x2="310.38" y2="464.16" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="307.44" y1="467.13" x2="305.91" y2="467.13" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="308.37" y1="492.0" x2="306.87" y2="495.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="284.37" y1="577.68" x2="284.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="322.35" y1="603.06" x2="331.29" y2="603.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.65" y1="606.0" x2="325.2" y2="606.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.4" y1="608.97" x2="326.94" y2="608.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="443.67" y1="552.6" x2="475.17" y2="584.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="692.37" y1="555.0" x2="692.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="711.87" y1="510.0" x2="711.87" y2="555.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="694.77" y1="590.4" x2="719.37" y2="615.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="413.94" x2="350.64" y2="413.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="410.97" x2="325.89" y2="410.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="408.03" x2="351.27" y2="408.03" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.27" y1="405.06" x2="326.64" y2="405.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="402.12" x2="351.27" y2="402.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.42" y1="399.15" x2="326.64" y2="399.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="326.64" y1="396.21" x2="347.19" y2="396.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="346.77" y1="393.24" x2="326.64" y2="393.24" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="324.45" y1="390.3" x2="346.98" y2="390.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="348.21" y1="387.33" x2="308.94" y2="387.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="306.09" y1="384.39" x2="328.95" y2="384.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.86" y1="381.42" x2="303.12" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="290.52" y1="401.34" x2="290.52" y2="418.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="216.69" y2="375.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="381.18" x2="209.37" y2="388.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.29" y1="360.75" x2="60.27" y2="360.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="363.69" x2="161.52" y2="363.69" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="366.66" x2="60.27" y2="366.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="369.6" x2="161.31" y2="369.6" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="372.57" x2="60.27" y2="372.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="375.51" x2="161.31" y2="375.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="378.48" x2="60.27" y2="378.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="381.42" x2="163.98" y2="381.42" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="184.32" y1="357.78" x2="60.27" y2="357.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="354.84" x2="181.38" y2="354.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="185.37" y2="343.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.37" y1="349.5" x2="195.87" y2="360.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.05" y1="360.0" x2="235.02" y2="362.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.03" y1="357.06" x2="246.93" y2="357.06" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.69" y1="345.0" x2="203.19" y2="331.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="328.23" x2="217.26" y2="328.23" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.26" y1="325.29" x2="216.15" y2="325.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="216.15" y1="322.32" x2="217.26" y2="322.32" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="178.74" y1="331.2" x2="60.27" y2="331.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="334.14" x2="161.55" y2="334.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="337.11" x2="60.27" y2="337.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="340.05" x2="161.31" y2="340.05" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="343.02" x2="60.27" y2="343.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="345.96" x2="161.31" y2="345.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="161.31" y1="348.93" x2="60.27" y2="348.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="60.27" y1="351.87" x2="163.95" y2="351.87" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.87" y1="270.0" x2="252.87" y2="260.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="240.81" y2="244.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="238.95" y1="246.45" x2="238.59" y2="246.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="245.49" x2="231.15" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="231.15" y2="254.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="254.37" x2="232.26" y2="254.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="232.26" y1="251.4" x2="231.15" y2="251.4" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="248.46" x2="232.26" y2="248.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.15" y1="245.19" x2="226.98" y2="245.19" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.75" y1="236.64" x2="253.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="233.67" x2="226.59" y2="233.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="230.73" x2="252.18" y2="230.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="227.76" x2="226.59" y2="227.76" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="224.82" x2="252.18" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="221.85" x2="226.59" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="226.59" y1="218.91" x2="252.18" y2="218.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="252.18" y1="215.94" x2="226.59" y2="215.94" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="225.36" y1="213.0" x2="253.38" y2="213.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="276.54" y1="236.64" x2="316.02" y2="236.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="254.55" y1="245.49" x2="254.22" y2="245.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="386.97" y1="198.21" x2="391.8" y2="198.21" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="406.86" y1="207.09" x2="408.9" y2="207.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="405.87" y1="225.0" x2="404.37" y2="226.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="428.76" y1="259.14" x2="489.9" y2="259.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="456.87" y2="238.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="471.87" y1="238.5" x2="501.87" y2="208.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="456.27" y1="222.0" x2="434.37" y2="200.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="434.37" y1="175.14" x2="434.37" y2="160.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="145.02" x2="601.02" y2="145.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="603.99" y1="142.08" x2="504.27" y2="142.08" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="504.27" y1="139.11" x2="606.93" y2="139.11" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="609.9" y1="136.17" x2="556.77" y2="136.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.78" y1="133.2" x2="612.84" y2="133.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="615.81" y1="130.26" x2="564.75" y2="130.26" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="567.69" y1="127.29" x2="618.75" y2="127.29" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="621.72" y1="124.35" x2="570.66" y2="124.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="573.6" y1="121.38" x2="791.82" y2="121.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="788.97" y1="118.44" x2="576.57" y2="118.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="579.51" y1="115.47" x2="787.74" y2="115.47" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="786.51" y1="112.53" x2="582.48" y2="112.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="585.42" y1="109.56" x2="785.37" y2="109.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="106.62" x2="589.65" y2="106.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="593.04" y1="103.65" x2="785.37" y2="103.65" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="785.37" y1="100.71" x2="594.51" y2="100.71" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="595.17" y1="97.74" x2="786.42" y2="97.74" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="787.65" y1="94.8" x2="595.17" y2="94.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="594.0" y1="91.83" x2="788.85" y2="91.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="791.58" y1="88.89" x2="591.75" y2="88.89" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="561.24" y1="150.93" x2="560.52" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="150.93" x2="553.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="153.9" x2="554.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="156.84" x2="553.8" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="159.81" x2="554.94" y2="159.81" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="162.75" x2="553.8" y2="162.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.57" x2="553.8" y2="179.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="165.72" x2="554.94" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="168.66" x2="553.8" y2="168.66" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="171.63" x2="554.94" y2="171.63" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.94" y1="174.57" x2="553.8" y2="174.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="553.8" y1="177.54" x2="554.94" y2="177.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="555.06" y1="180.48" x2="546.57" y2="180.48" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="183.45" x2="554.16" y2="183.45" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="186.39" x2="546.57" y2="186.39" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="546.57" y1="189.36" x2="554.16" y2="189.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="554.16" y1="192.3" x2="548.4" y2="192.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="551.37" y1="195.27" x2="554.16" y2="195.27" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="548.22" y1="150.93" x2="547.53" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="524.94" y1="150.93" x2="523.8" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="153.9" x2="524.94" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="523.8" y1="156.84" x2="513.72" y2="156.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="514.56" y1="153.9" x2="510.78" y2="153.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="507.81" y1="150.93" x2="515.16" y2="150.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.43" y1="221.85" x2="666.69" y2="221.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="663.75" y1="224.82" x2="662.13" y2="224.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="662.37" y1="235.5" x2="655.26" y2="235.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="659.37" y1="318.18" x2="611.19" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="648.87" y1="366.0" x2="667.17" y2="347.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="512.07" y1="321.3" x2="512.07" y2="317.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="489.9" y1="318.18" x2="456.69" y2="318.18" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="469.44" y1="365.43" x2="489.9" y2="365.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="127.98" y1="499.62" x2="78.0" y2="499.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="600.0" x2="173.37" y2="600.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="172.56" y1="614.88" x2="35.67" y2="614.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="617.82" x2="185.37" y2="617.82" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="185.79" y1="620.79" x2="35.67" y2="620.79" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="623.73" x2="128.13" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="126.18" y1="626.7" x2="35.67" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="629.64" x2="125.52" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="125.88" y1="632.61" x2="35.67" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="635.55" x2="127.41" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="131.79" y1="638.52" x2="35.67" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="35.67" y1="611.91" x2="169.8" y2="611.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="187.02" y1="623.73" x2="140.64" y2="623.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.59" y1="626.7" x2="188.25" y2="626.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="190.08" y1="629.64" x2="143.22" y2="629.64" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="142.89" y1="632.61" x2="193.05" y2="632.61" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="196.29" y1="635.55" x2="141.33" y2="635.55" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="136.98" y1="638.52" x2="203.43" y2="638.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="460.92" y1="56.37" x2="467.85" y2="56.37" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="465.33" y1="53.43" x2="463.44" y2="53.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="92.73" x2="249.3" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.64" y1="95.07" x2="202.17" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="97.44" x2="254.01" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.57" y1="99.0" x2="242.37" y2="85.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="99.78" x2="202.17" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="102.15" x2="258.57" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="104.49" x2="202.17" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="202.17" y1="106.86" x2="258.57" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="109.2" x2="202.17" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="203.64" y1="111.57" x2="258.57" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="113.91" x2="205.98" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="208.35" y1="116.28" x2="258.57" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="118.62" x2="210.69" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.06" y1="120.99" x2="258.57" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="123.33" x2="215.4" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="217.77" y1="125.7" x2="258.57" y2="125.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="258.57" y1="128.04" x2="232.11" y2="128.04" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.48" y1="130.41" x2="257.85" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="256.29" y1="132.75" x2="236.82" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="234.87" y1="144.9" x2="233.79" y2="145.98" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.79" y1="146.88" x2="256.47" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="255.15" y1="149.25" x2="233.67" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="151.59" x2="252.78" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="153.96" x2="233.67" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="233.67" y1="156.3" x2="251.37" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="158.67" x2="233.43" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="231.06" y1="161.01" x2="251.37" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="251.37" y1="163.38" x2="228.72" y2="163.38" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="165.72" x2="249.45" y2="165.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="247.11" y1="168.09" x2="227.07" y2="168.09" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="170.43" x2="244.74" y2="170.43" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="172.8" x2="227.07" y2="172.8" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="175.14" x2="243.87" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="177.51" x2="227.07" y2="177.51" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="179.85" x2="243.87" y2="179.85" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="243.87" y1="182.22" x2="227.07" y2="182.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="227.07" y1="184.56" x2="243.87" y2="184.56" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="241.77" y1="186.93" x2="228.0" y2="186.93" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="162.9" x2="282.87" y2="162.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="161.01" x2="282.87" y2="161.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="158.67" x2="263.97" y2="158.67" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.97" y1="156.3" x2="282.87" y2="156.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="153.96" x2="263.97" y2="153.96" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="263.46" y1="151.59" x2="282.87" y2="151.59" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="282.87" y1="149.25" x2="261.27" y2="149.25" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.27" y1="146.88" x2="281.85" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.51" y1="144.54" x2="261.27" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="261.9" y1="142.17" x2="277.14" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="142.17" x2="296.97" y2="142.17" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="139.83" x2="289.17" y2="139.83" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="137.46" x2="296.97" y2="137.46" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="135.12" x2="289.17" y2="135.12" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="132.75" x2="296.97" y2="132.75" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="130.41" x2="289.17" y2="130.41" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="130.2" x2="289.17" y2="148.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="124.8" x2="324.57" y2="125.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="123.33" x2="326.34" y2="123.33" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="328.71" y1="120.99" x2="279.87" y2="120.99" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="118.62" x2="329.1" y2="118.62" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.13" y1="116.28" x2="279.87" y2="116.28" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="113.91" x2="329.16" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.16" y1="111.57" x2="279.87" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="109.2" x2="329.19" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.22" y1="106.86" x2="279.87" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="104.49" x2="329.25" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.28" y1="102.15" x2="279.87" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="279.87" y1="99.78" x2="329.28" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.31" y1="97.44" x2="283.86" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="286.2" y1="95.07" x2="329.34" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="92.73" x2="288.57" y2="92.73" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.77" y1="93.3" x2="264.27" y2="93.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="95.07" x2="264.27" y2="95.07" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="97.44" x2="274.47" y2="97.44" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="99.78" x2="264.27" y2="99.78" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="102.15" x2="274.47" y2="102.15" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="104.49" x2="264.27" y2="104.49" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="106.86" x2="274.47" y2="106.86" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="109.2" x2="264.27" y2="109.2" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="264.27" y1="111.57" x2="274.47" y2="111.57" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="274.47" y1="113.91" x2="264.27" y2="113.91" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="246.93" y1="90.36" x2="203.91" y2="90.36" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="206.28" y1="88.02" x2="244.59" y2="88.02" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="289.17" y1="144.54" x2="296.97" y2="144.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="296.97" y1="146.88" x2="289.17" y2="146.88" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="399.75" y2="236.22" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="539.97" y1="165.24" x2="540.21" y2="165.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="329.37" y1="226.65" x2="327.72" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="213.99" y1="225.0" x2="194.37" y2="225.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="269.37" y1="105.0" x2="269.37" y2="88.35" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="333.15" y1="71.82" x2="337.05" y2="75.72" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="389.13" y1="213.9" x2="401.37" y2="213.9" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="287.37" y2="175.5" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="293.01" y1="169.89" x2="293.01" y2="146.52" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="351.87" y1="119.1" x2="351.87" y2="75.54" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="245.76" y1="138.84" x2="218.43" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="257.85" y1="158.61" x2="257.85" y2="175.14" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="194.37" y1="403.47" x2="192.87" y2="404.97" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="168.87" y1="426.0" x2="179.43" y2="436.53" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="148.44" y1="510.0" x2="74.37" y2="510.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="191.37" y1="128.4" x2="191.37" y2="89.7" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="344.37" y1="47.01" x2="354.06" y2="47.01" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="479.37" y1="45.0" x2="479.37" y2="120.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="494.37" y1="126.3" x2="554.67" y2="126.3" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="397.05" y1="238.92" x2="397.05" y2="255.0" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="316.47" y1="156.0" x2="317.37" y2="155.1" stroke="rgb(0,145,21)" stroke-width="2"/>
-<line x1="218.43" y1="138.84" x2="201.81" y2="138.84" stroke="rgb(0,145,21)" stroke-width="2"/>
-</svg>
diff --git a/gerber.md b/gerber.md
deleted file mode 100644
index 865d177..0000000
--- a/gerber.md
+++ /dev/null
@@ -1,73 +0,0 @@
-
-# Gerber (RS-274X or Extended Gerber) is a bilevel, resolution independent image format.
-
-# // graphic objects
-# // draw: line segment, thickness, round or square line endings. (solid circle and rectangule apertures only)
-# // arc: circular arc, thickness, round endings. (solid circle standard aperture only)
-# // flash: replication of a given apertura (shape)
-# // region: are defined by a countour (linear/arc segments.)
-#
-# // draw/arc: can have zero length (just flash the aperture)
-# // flash: any aperture can be flashed
-#
-# // operation codes operates on coordinate data blocks. each operation code is for one coordinate data block pair and vice-versa.
-# // D01: stroke an aperture from current point to coordinate pair. region mode off. lights-on move.
-# // D02: move current point to this coordinate pair
-# // D03: flash current aperture at this coordinate pair.
-#
-# // graphics state
-# // all state controlled by codes and parameters, except current point
-# //
-# // state fixed? initial value
-# // coordinate format fixed undefined
-# // unit fixed undefined
-# // image polarity fixed positive
-# // steps/repeat variable 1,1,-,-
-# // level polarity variable dark
-# // region mode variable off
-# // current aperture variable undefined
-# // quadrant mode variable undefined
-# // interpolation mode variable undefined
-# // current point variable (0,0)
-#
-# // attributes: metadata, both standard and custom. No change on image.
-#
-# // G01: linear
-# // G04: comment
-# // M02: end of file
-# // D: select aperture
-# // G75: multi quadrant mode (circles)
-# // G36: region begin
-# // G37: region end
-#
-# // [G01] [Xnnfffff] [Ynnffff] D01*
-#
-# // ASCII 32-126, CR LF.
-# // * end-of-block
-# // % parameer delimiter
-# // , field separator
-# // <space> only in comments
-# // case sensitive
-#
-# // int: +/- 32 bit signed
-# // decimal: +/- digits
-# // names: [a-zA-Z_$]{[a-zA-Z_$0-9]+} (255)
-# // strings: [a-zA-Z0-9_+-/!?<>”’(){}.\|&@# ]+ (65535)
-#
-# // data block: end in *
-# // statement: one or more data block, if contain parameters starts and end in % (parameter statement)
-# // statement: [%]<Data Block>{<Data Block>}[%]
-# // statements: function code, coordinate data, parameters
-#
-# // function code: operation codes (D01..) or code that set state.
-# // function codes applies before operation codes act on coordinates
-#
-# // coordinate data: <Coordinate data>: [X<Number>][Y<Number>][I<Number>][J<Number>](D01|D02|D03)
-# // offsets are not modal
-#
-# // parameter: %Parameter code<required modifiers>[optional modifiers]*%
-# // code: 2 characters
-#
-# // parameters can have line separators: %<Parameter>{{<Line separator>}<Parameter>}%
-#
-# // function code: (GDM){1}[number], parameters: [AZ]{2} \ No newline at end of file
diff --git a/gerber/cnc.py b/gerber/cam.py
index d17517a..e7a49d1 100644
--- a/gerber/cnc.py
+++ b/gerber/cam.py
@@ -15,16 +15,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""
-gerber.cnc
+CAM File
============
-**CNC file classes**
+**AM file classes**
This module provides common base classes for Excellon/Gerber CNC files
"""
class FileSettings(object):
- """ CNC File Settings
+ """ CAM File Settings
Provides a common representation of gerber/excellon file settings
"""
@@ -60,7 +60,7 @@ class FileSettings(object):
raise KeyError()
-class CncFile(object):
+class CamFile(object):
""" Base class for Gerber/Excellon files.
Provides a common set of settings parameters.
@@ -71,7 +71,10 @@ class CncFile(object):
The current file configuration.
filename : string
- Name of the file that this CncFile represents.
+ Name of the file that this CamFile represents.
+
+ layer_name : string
+ Name of the PCB layer that the file represents
Attributes
----------
@@ -92,7 +95,8 @@ class CncFile(object):
decimal digits)
"""
- def __init__(self, statements=None, settings=None, filename=None):
+ def __init__(self, statements=None, settings=None, filename=None,
+ layer_name=None):
if settings is not None:
self.notation = settings['notation']
self.units = settings['units']
@@ -105,6 +109,7 @@ class CncFile(object):
self.format = (2, 5)
self.statements = statements if statements is not None else []
self.filename = filename
+ self.layer_name = layer_name
@property
def settings(self):
diff --git a/gerber/common.py b/gerber/common.py
index 0092ec8..6e8c862 100644
--- a/gerber/common.py
+++ b/gerber/common.py
@@ -30,12 +30,12 @@ def read(filename):
CncFile object representing the file, either GerberFile or
ExcellonFile. Returns None if file is not an Excellon or Gerber file.
"""
- import gerber
+ import rs274x
import excellon
from utils import detect_file_format
fmt = detect_file_format(filename)
if fmt == 'rs274x':
- return gerber.read(filename)
+ return rs274x.read(filename)
elif fmt == 'excellon':
return excellon.read(filename)
else:
diff --git a/gerber/excellon.py b/gerber/excellon.py
index 4166de6..13aacc6 100755
--- a/gerber/excellon.py
+++ b/gerber/excellon.py
@@ -24,16 +24,32 @@ This module provides Excellon file classes and parsing utilities
from .excellon_statements import *
-from .cnc import CncFile, FileSettings
+from .cam import CamFile, FileSettings
+import math
def read(filename):
""" Read data from filename and return an ExcellonFile
+ Parameters
+ ----------
+ filename : string
+ Filename of file to parse
+
+ Returns
+ -------
+ file : :class:`gerber.excellon.ExcellonFile`
+ An ExcellonFile created from the specified file.
+
"""
- return ExcellonParser().parse(filename)
+ detected_settings = detect_excellon_format(filename)
+ settings = FileSettings(**detected_settings)
+ zeros = ''
+ print('Detected %d:%d format with %s zero suppression' %
+ (settings.format[0], settings.format[1], settings.zero_suppression))
+ return ExcellonParser(settings).parse(filename)
-class ExcellonFile(CncFile):
+class ExcellonFile(CamFile):
""" A class representing a single excellon file
The ExcellonFile class represents a single excellon file.
@@ -69,6 +85,14 @@ class ExcellonFile(CncFile):
def render(self, ctx, filename=None):
""" Generate image of file
+
+ Parameters
+ ----------
+ ctx : :class:`gerber.render.GerberContext`
+ GerberContext subclass used for rendering the image
+
+ filename : string <optional>
+ If provided, the rendered image will be saved to `filename`
"""
for tool, pos in self.hits:
ctx.drill(pos[0], pos[1], tool.diameter)
@@ -83,8 +107,13 @@ class ExcellonFile(CncFile):
class ExcellonParser(object):
""" Excellon File Parser
+
+ Parameters
+ ----------
+ settings : FileSettings or dict-like
+ Excellon file settings to use when interpreting the excellon file.
"""
- def __init__(self):
+ def __init__(self, settings=None):
self.notation = 'absolute'
self.units = 'inch'
self.zero_suppression = 'trailing'
@@ -95,6 +124,37 @@ class ExcellonParser(object):
self.hits = []
self.active_tool = None
self.pos = [0., 0.]
+ if settings is not None:
+ self.units = settings['units']
+ self.zero_suppression = settings['zero_suppression']
+ self.notation = settings['notation']
+ self.format = settings['format']
+
+
+ @property
+ def coordinates(self):
+ return [(stmt.x, stmt.y) for stmt in self.statements if isinstance(stmt, CoordinateStmt)]
+
+ @property
+ def bounds(self):
+ xmin = ymin = 100000000000
+ xmax = ymax = -100000000000
+ for x, y in self.coordinates:
+ if x is not None:
+ xmin = x if x < xmin else xmin
+ xmax = x if x > xmax else xmax
+ if y is not None:
+ ymin = y if y < ymin else ymin
+ ymax = y if y > ymax else ymax
+ return ((xmin, xmax), (ymin, ymax))
+
+ @property
+ def hole_sizes(self):
+ return [stmt.diameter for stmt in self.statements if isinstance(stmt, ExcellonTool)]
+
+ @property
+ def hole_count(self):
+ return len(self.hits)
def parse(self, filename):
with open(filename, 'r') as f:
@@ -194,3 +254,105 @@ class ExcellonParser(object):
return FileSettings(units=self.units, format=self.format,
zero_suppression=self.zero_suppression,
notation=self.notation)
+
+
+def detect_excellon_format(filename):
+ """ Detect excellon file decimal format and zero-suppression settings.
+
+ Parameters
+ ----------
+ filename : string
+ Name of the file to parse. This does not check if the file is actually
+ an Excellon file, so do that before calling this.
+
+ Returns
+ -------
+ settings : dict
+ Detected excellon file settings. Keys are
+ - `format`: decimal format as tuple (<int part>, <decimal part>)
+ - `zero_suppression`: zero suppression, 'leading' or 'trailing'
+ """
+ results = {}
+ detected_zeros = None
+ detected_format = None
+ zs_options = ('leading', 'trailing', )
+ format_options = ((2, 4), (2, 5), (3, 3),)
+
+ # Check for obvious clues:
+ p = ExcellonParser()
+ p.parse(filename)
+
+ # Get zero_suppression from a unit statement
+ zero_statements = [stmt.zero_suppression for stmt in p.statements
+ if isinstance(stmt, UnitStmt)]
+
+ # get format from altium comment
+ format_comment = [stmt.comment for stmt in p.statements
+ if isinstance(stmt, CommentStmt)
+ and 'FILE_FORMAT' in stmt.comment]
+
+ detected_format = (tuple([int(val) for val in
+ format_comment[0].split('=')[1].split(':')])
+ if len(format_comment) == 1 else None)
+ detected_zeros = zero_statements[0] if len(zero_statements) == 1 else None
+
+ # Bail out here if possible
+ if detected_format is not None and detected_zeros is not None:
+ return {'format': detected_format, 'zero_suppression': detected_zeros}
+
+ # Only look at remaining options
+ if detected_format is not None:
+ format_options = (detected_format,)
+ if detected_zeros is not None:
+ zs_options = (detected_zeros,)
+
+ # Brute force all remaining options, and pick the best looking one...
+ for zs in zs_options:
+ for fmt in format_options:
+ key = (fmt, zs)
+ settings = FileSettings(zero_suppression=zs, format=fmt)
+ try:
+ p = ExcellonParser(settings)
+ p.parse(filename)
+ size = tuple([t[1] - t[0] for t in p.bounds])
+ hole_area = 0.0
+ for hit in p.hits:
+ tool = hit[0]
+ hole_area += math.pow(math.pi * tool.diameter / 2., 2)
+ results[key] = (size, p.hole_count, hole_area)
+ except:
+ pass
+
+ # See if any of the dimensions are left with only a single option
+ formats = set(key[0] for key in results.iterkeys())
+ zeros = set(key[1] for key in results.iterkeys())
+ if len(formats) == 1:
+ detected_format = formats.pop()
+ if len(zeros) == 1:
+ detected_zeros = zeros.pop()
+
+ # Bail out here if we got everything....
+ if detected_format is not None and detected_zeros is not None:
+ return {'format': detected_format, 'zero_suppression': detected_zeros}
+
+ # Otherwise score each option and pick the best candidate
+ else:
+ scores = {}
+ for key in results.keys():
+ size, count, diameter = results[key]
+ scores[key] = _layer_size_score(size, count, diameter)
+ minscore = min(scores.values())
+ for key in scores.iterkeys():
+ if scores[key] == minscore:
+ return {'format': key[0], 'zero_suppression': key[1]}
+
+
+def _layer_size_score(size, hole_count, hole_area):
+ """ Heuristic used for determining the correct file number interpretation.
+ Lower is better.
+ """
+ board_area = size[0] * size[1]
+ hole_percentage = hole_area / board_area
+ hole_score = (hole_percentage - 0.25) ** 2
+ size_score = (board_area - 8) **2
+ return hole_score * size_score
diff --git a/gerber/gerber_statements.py b/gerber/gerber_statements.py
index 9072b58..218074f 100644
--- a/gerber/gerber_statements.py
+++ b/gerber/gerber_statements.py
@@ -17,9 +17,9 @@ __all__ = ['FSParamStmt', 'MOParamStmt', 'IPParamStmt', 'OFParamStmt',
class Statement(object):
""" Gerber statement Base class
-
+
The statement class provides a type attribute.
-
+
Parameters
----------
type : string
@@ -27,7 +27,7 @@ class Statement(object):
Attributes
----------
- type : string
+ type : string
String identifying the statement type.
"""
def __init__(self, stype):
@@ -45,9 +45,9 @@ class Statement(object):
class ParamStmt(Statement):
""" Gerber parameter statement Base class
-
+
The parameter statement class provides a parameter type attribute.
-
+
Parameters
----------
param : string
@@ -55,7 +55,7 @@ class ParamStmt(Statement):
Attributes
----------
- param : string
+ param : string
Parameter type code
"""
def __init__(self, param):
@@ -133,7 +133,12 @@ class MOParamStmt(ParamStmt):
@classmethod
def from_dict(cls, stmt_dict):
param = stmt_dict.get('param')
- mo = 'inch' if stmt_dict.get('mo') == 'IN' else 'metric'
+ if stmt_dict.get('mo').lower() == 'in':
+ mo = 'inch'
+ elif stmt_dict.get('mo').lower() == 'mm':
+ mo = 'metric'
+ else:
+ mo = None
return cls(param, mo)
def __init__(self, param, mo):
@@ -260,7 +265,7 @@ class LPParamStmt(ParamStmt):
@classmethod
def from_dict(cls, stmt_dict):
- param = stmt_dict.get('lp')
+ param = stmt_dict['param']
lp = 'clear' if stmt_dict.get('lp') == 'C' else 'dark'
return cls(param, lp)
@@ -667,6 +672,6 @@ class UnknownStmt(Statement):
def __init__(self, line):
Statement.__init__(self, "UNKNOWN")
self.line = line
-
+
def to_gerber(self):
return self.line
diff --git a/gerber/render/render.py b/gerber/render/render.py
index e76aed1..f7e4485 100644
--- a/gerber/render/render.py
+++ b/gerber/render/render.py
@@ -83,6 +83,9 @@ class GerberContext(object):
background_color : tuple (<float>, <float>, <float>)
Color of the background. Used when exposing areas in 'clear' level
polarity mode. Format is the same as for `color`.
+
+ alpha : float
+ Rendering opacity. Between 0.0 (transparent) and 1.0 (opaque.)
"""
def __init__(self):
self.settings = {}
@@ -96,11 +99,12 @@ class GerberContext(object):
self.level_polarity = 'dark'
self.region_mode = 'off'
self.quadrant_mode = 'multi-quadrant'
-
+ self.step_and_repeat = (1, 1, 0, 0)
self.color = (0.7215, 0.451, 0.200)
self.drill_color = (0.25, 0.25, 0.25)
self.background_color = (0.0, 0.0, 0.0)
-
+ self.alpha = 1.0
+
def set_format(self, settings):
""" Set source file format.
@@ -260,6 +264,19 @@ class GerberContext(object):
"""
self.background_color = color
+ def set_alpha(self, alpha):
+ """ Set layer rendering opacity
+
+ .. note::
+ Not all backends/rendering devices support this parameter.
+
+ Parameters
+ ----------
+ alpha : float
+ Rendering opacity. must be between 0.0 (transparent) and 1.0 (opaque)
+ """
+ self.alpha = alpha
+
def resolve(self, x, y):
""" Resolve missing x or y coordinates in a coordinate command.
@@ -415,6 +432,12 @@ class GerberContext(object):
"""
pass
+ def region_contour(self, x, y):
+ pass
+
+ def fill_region(self):
+ pass
+
def evaluate(self, stmt):
""" Evaluate Gerber statement and update image accordingly.
@@ -450,7 +473,7 @@ class GerberContext(object):
def _evaluate_mode(self, stmt):
if stmt.type == 'RegionMode':
if self.region_mode == 'on' and stmt.mode == 'off':
- self._fill_region()
+ self.fill_region()
self.region_mode = stmt.mode
elif stmt.type == 'QuadrantMode':
self.quadrant_mode = stmt.mode
@@ -460,11 +483,11 @@ class GerberContext(object):
self.set_coord_format(stmt.zero_suppression, stmt.format,
stmt.notation)
self.set_coord_notation(stmt.notation)
- elif stmt.param == "MO:":
+ elif stmt.param == "MO":
self.set_coord_unit(stmt.mode)
- elif stmt.param == "IP:":
+ elif stmt.param == "IP":
self.set_image_polarity(stmt.ip)
- elif stmt.param == "LP:":
+ elif stmt.param == "LP":
self.set_level_polarity(stmt.lp)
elif stmt.param == "AD":
self.define_aperture(stmt.d, stmt.shape, stmt.modifiers)
@@ -477,7 +500,10 @@ class GerberContext(object):
self.direction = ('clockwise' if stmt.function in ('G02', 'G2')
else 'counterclockwise')
if stmt.op == "D01":
- self.stroke(stmt.x, stmt.y, stmt.i, stmt.j)
+ if self.region_mode == 'on':
+ self.region_contour(stmt.x, stmt.y)
+ else:
+ self.stroke(stmt.x, stmt.y, stmt.i, stmt.j)
elif stmt.op == "D02":
self.move(stmt.x, stmt.y)
elif stmt.op == "D03":
@@ -486,5 +512,3 @@ class GerberContext(object):
def _evaluate_aperture(self, stmt):
self.set_aperture(stmt.d)
- def _fill_region(self):
- pass
diff --git a/gerber/render/svgwrite_backend.py b/gerber/render/svgwrite_backend.py
index 7570c84..78961da 100644
--- a/gerber/render/svgwrite_backend.py
+++ b/gerber/render/svgwrite_backend.py
@@ -117,17 +117,25 @@ class GerberSvgContext(GerberContext):
self.apertures = {}
self.dwg = svgwrite.Drawing()
+ self.dwg.transform = 'scale 1 -1'
self.background = False
+ self.region_path = None
def set_bounds(self, bounds):
xbounds, ybounds = bounds
size = (SCALE * (xbounds[1] - xbounds[0]), SCALE * (ybounds[1] - ybounds[0]))
if not self.background:
+ self.dwg = svgwrite.Drawing(viewBox='%f, %f, %f, %f' % (SCALE*xbounds[0], -SCALE*ybounds[1],size[0], size[1]))
self.dwg.add(self.dwg.rect(insert=(SCALE * xbounds[0],
-SCALE * ybounds[1]),
- size=size, fill="black"))
+ size=size, fill=convert_color(self.background_color)))
self.background = True
+ def set_alpha(self, alpha):
+ super(GerberSvgContext, self).set_alpha(alpha)
+ import warnings
+ warnings.warn('SVG output does not support transparency')
+
def define_aperture(self, d, shape, modifiers):
aperture = None
if shape == 'C':
@@ -173,7 +181,8 @@ class GerberSvgContext(GerberContext):
ap = self.apertures.get(self.aperture, None)
if ap is None:
return
- color = (convert_color(self.color) if self.level_polarity == 'dark'
+
+ color = (convert_color(self.color) if self.level_polarity == 'dark'
else convert_color(self.background_color))
for shape in ap.flash(self, x, y, color):
self.dwg.add(shape)
@@ -185,5 +194,21 @@ class GerberSvgContext(GerberContext):
fill=convert_color(self.drill_color))
self.dwg.add(hit)
+ def region_contour(self, x, y):
+ super(GerberSvgContext, self).region_contour(x, y)
+ x, y = self.resolve(x, y)
+ color = (convert_color(self.color) if self.level_polarity == 'dark'
+ else convert_color(self.background_color))
+ if self.region_path is None:
+ self.region_path = self.dwg.path(d = 'M %f, %f' %
+ (self.x*SCALE, -self.y*SCALE),
+ fill = color, stroke = 'none')
+ self.region_path.push('L %f, %f' % (x*SCALE, -y*SCALE))
+ self.move(x, y, resolve=False)
+
+ def fill_region(self):
+ self.dwg.add(self.region_path)
+ self.region_path = None
+
def dump(self, filename):
self.dwg.saveas(filename)
diff --git a/gerber/gerber.py b/gerber/rs274x.py
index 4ce261d..4076f77 100644
--- a/gerber/gerber.py
+++ b/gerber/rs274x.py
@@ -15,30 +15,35 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-"""
-Gerber File module
-==================
-**Gerber File module**
-
-This module provides an RS-274-X class and parser
+""" This module provides an RS-274-X class and parser.
"""
import re
import json
from .gerber_statements import *
-from .cnc import CncFile, FileSettings
+from .cam import CamFile, FileSettings
def read(filename):
""" Read data from filename and return a GerberFile
+
+ Parameters
+ ----------
+ filename : string
+ Filename of file to parse
+
+ Returns
+ -------
+ file : :class:`gerber.rs274x.GerberFile`
+ A GerberFile created from the specified file.
"""
return GerberParser().parse(filename)
-class GerberFile(CncFile):
+class GerberFile(CamFile):
""" A class representing a single gerber file
The GerberFile class represents a single gerber file.
@@ -86,24 +91,19 @@ class GerberFile(CncFile):
ybounds = [0.0, 0.0]
for stmt in [stmt for stmt in self.statements
if isinstance(stmt, CoordStmt)]:
- if stmt.x is not None and stmt.x < xbounds[0]:
- xbounds[0] = stmt.x
- if stmt.x is not None and stmt.x > xbounds[1]:
- xbounds[1] = stmt.x
- if stmt.i is not None and stmt.i < xbounds[0]:
- xbounds[0] = stmt.i
- if stmt.i is not None and stmt.i > xbounds[1]:
- xbounds[1] = stmt.i
- if stmt.y is not None and stmt.y < ybounds[0]:
- ybounds[0] = stmt.y
- if stmt.y is not None and stmt.y > ybounds[1]:
- ybounds[1] = stmt.y
- if stmt.j is not None and stmt.j < ybounds[0]:
- ybounds[0] = stmt.j
- if stmt.j is not None and stmt.j > ybounds[1]:
- ybounds[1] = stmt.j
+ if stmt.x is not None:
+ if stmt.x < xbounds[0]:
+ xbounds[0] = stmt.x
+ elif stmt.x > xbounds[1]:
+ xbounds[1] = stmt.x
+ if stmt.y is not None:
+ if stmt.y < ybounds[0]:
+ ybounds[0] = stmt.y
+ elif stmt.y > ybounds[1]:
+ ybounds[1] = stmt.y
return (xbounds, ybounds)
+
def write(self, filename):
""" Write data out to a gerber file
"""
@@ -113,6 +113,14 @@ class GerberFile(CncFile):
def render(self, ctx, filename=None):
""" Generate image of layer.
+
+ Parameters
+ ----------
+ ctx : :class:`GerberContext`
+ GerberContext subclass used for rendering the image
+
+ filename : string <optional>
+ If provided, the rendered image will be saved to `filename`
"""
ctx.set_bounds(self.bounds)
for statement in self.statements:
diff --git a/gerber/tests/test_cnc.py b/gerber/tests/test_cam.py
index ace047e..4af1984 100644
--- a/gerber/tests/test_cnc.py
+++ b/gerber/tests/test_cam.py
@@ -3,7 +3,7 @@
# Author: Hamilton Kibbe <ham@hamiltonkib.be>
-from ..cnc import CncFile, FileSettings
+from ..cam import CamFile, FileSettings
from tests import *
@@ -46,5 +46,5 @@ def test_filesettings_assign():
assert_equal(fs.zero_suppression, 'test')
assert_equal(fs.format, 'test')
- def test_smoke_cncfile():
- pass
+def test_smoke_camfile():
+ cf = CamFile
diff --git a/gerber/tests/test_gerber_statements.py b/gerber/tests/test_gerber_statements.py
index 9e73fd4..a463c9d 100644
--- a/gerber/tests/test_gerber_statements.py
+++ b/gerber/tests/test_gerber_statements.py
@@ -8,7 +8,7 @@ from ..gerber_statements import *
def test_FSParamStmt_factory():
- """ Test FSParamStruct factory correctly handles parameters
+ """ Test FSParamStruct factory
"""
stmt = {'param': 'FS', 'zero': 'L', 'notation': 'A', 'x': '27'}
fs = FSParamStmt.from_dict(stmt)
@@ -24,6 +24,18 @@ def test_FSParamStmt_factory():
assert_equal(fs.notation, 'incremental')
assert_equal(fs.format, (2, 7))
+def test_FSParamStmt():
+ """ Test FSParamStmt initialization
+ """
+ param = 'FS'
+ zeros = 'trailing'
+ notation = 'absolute'
+ fmt = (2, 5)
+ stmt = FSParamStmt(param, zeros, notation, fmt)
+ assert_equal(stmt.param, param)
+ assert_equal(stmt.zero_suppression, zeros)
+ assert_equal(stmt.notation, notation)
+ assert_equal(stmt.format, fmt)
def test_FSParamStmt_dump():
""" Test FSParamStmt to_gerber()
@@ -38,17 +50,31 @@ def test_FSParamStmt_dump():
def test_MOParamStmt_factory():
- """ Test MOParamStruct factory correctly handles parameters
+ """ Test MOParamStruct factory
"""
- stmt = {'param': 'MO', 'mo': 'IN'}
- mo = MOParamStmt.from_dict(stmt)
- assert_equal(mo.param, 'MO')
- assert_equal(mo.mode, 'inch')
+ stmts = [{'param': 'MO', 'mo': 'IN'}, {'param': 'MO', 'mo': 'in'}, ]
+ for stmt in stmts:
+ mo = MOParamStmt.from_dict(stmt)
+ assert_equal(mo.param, 'MO')
+ assert_equal(mo.mode, 'inch')
+
+ stmts = [{'param': 'MO', 'mo': 'MM'}, {'param': 'MO', 'mo': 'mm'}, ]
+ for stmt in stmts:
+ mo = MOParamStmt.from_dict(stmt)
+ assert_equal(mo.param, 'MO')
+ assert_equal(mo.mode, 'metric')
+
+def test_MOParamStmt():
+ """ Test MOParamStmt initialization
+ """
+ param = 'MO'
+ mode = 'inch'
+ stmt = MOParamStmt(param, mode)
+ assert_equal(stmt.param, param)
- stmt = {'param': 'MO', 'mo': 'MM'}
- mo = MOParamStmt.from_dict(stmt)
- assert_equal(mo.param, 'MO')
- assert_equal(mo.mode, 'metric')
+ for mode in ['inch', 'metric']:
+ stmt = MOParamStmt(param, mode)
+ assert_equal(stmt.mode, mode)
def test_MOParamStmt_dump():
@@ -64,7 +90,7 @@ def test_MOParamStmt_dump():
def test_IPParamStmt_factory():
- """ Test IPParamStruct factory correctly handles parameters
+ """ Test IPParamStruct factory
"""
stmt = {'param': 'IP', 'ip': 'POS'}
ip = IPParamStmt.from_dict(stmt)
@@ -74,6 +100,15 @@ def test_IPParamStmt_factory():
ip = IPParamStmt.from_dict(stmt)
assert_equal(ip.ip, 'negative')
+def test_IPParamStmt():
+ """ Test IPParamStmt initialization
+ """
+ param = 'IP'
+ for ip in ['positive', 'negative']:
+ stmt = IPParamStmt(param, ip)
+ assert_equal(stmt.param, param)
+ assert_equal(stmt.ip, ip)
+
def test_IPParamStmt_dump():
""" Test IPParamStmt to_gerber()
@@ -88,14 +123,23 @@ def test_IPParamStmt_dump():
def test_OFParamStmt_factory():
- """ Test OFParamStmt factory correctly handles parameters
+ """ Test OFParamStmt factory
"""
stmt = {'param': 'OF', 'a': '0.1234567', 'b': '0.1234567'}
of = OFParamStmt.from_dict(stmt)
assert_equal(of.a, 0.1234567)
assert_equal(of.b, 0.1234567)
-
+def test_OFParamStmt():
+ """ Test IPParamStmt initialization
+ """
+ param = 'OF'
+ for val in [0.0, -3.4567]:
+ stmt = OFParamStmt(param, val, val)
+ assert_equal(stmt.param, param)
+ assert_equal(stmt.a, val)
+ assert_equal(stmt.b, val)
+
def test_OFParamStmt_dump():
""" Test OFParamStmt to_gerber()
"""
@@ -105,7 +149,7 @@ def test_OFParamStmt_dump():
def test_LPParamStmt_factory():
- """ Test LPParamStmt factory correctly handles parameters
+ """ Test LPParamStmt factory
"""
stmt = {'param': 'LP', 'lp': 'C'}
lp = LPParamStmt.from_dict(stmt)
@@ -128,7 +172,7 @@ def test_LPParamStmt_dump():
def test_INParamStmt_factory():
- """ Test INParamStmt factory correctly handles parameters
+ """ Test INParamStmt factory
"""
stmt = {'param': 'IN', 'name': 'test'}
inp = INParamStmt.from_dict(stmt)
@@ -143,7 +187,7 @@ def test_INParamStmt_dump():
def test_LNParamStmt_factory():
- """ Test LNParamStmt factory correctly handles parameters
+ """ Test LNParamStmt factory
"""
stmt = {'param': 'LN', 'name': 'test'}
lnp = LNParamStmt.from_dict(stmt)