diff --git a/src/doc/crawler.md b/src/doc/crawler.md
new file mode 100644
index 0000000000000000000000000000000000000000..bd1bee913ebccc26491aa539df4d96eda3959b92
--- /dev/null
+++ b/src/doc/crawler.md
@@ -0,0 +1,198 @@
+# CaosDB Crawler
+
+The [CaosDB crawler](https://gitlab.com/caosdb/caosdb-advanced-user-tools/blob/master/src/caosadvancedtools/crawler.py) is  tool for automated insertion or updates of entities in CaosDB.
+
+## Introduction
+In simple terms, it is a program that scans a directory structure, identifies files
+that shall be treated and generates corresponding Entities in CaosDB, possibly filling meta data.
+During this process the crawler can also open files and derive content from within, for example reading
+CSV tables and processing individual rows of these tables.
+
+![](crawler_fingerprint.svg)
+
+As shown in the figure, the general principle of the crawler framework is the following:
+- The crawler walks through the file structure and matches file names using regular expressions
+- Based on the matched files finger prints, so called `Identifiables` are created
+- CaosDB is queried for the `Identifiables`:
+  - If an `Identifiable` is found, it may be updated by the crawler.
+  - If an `Identifiable` does not yet exist, a new one will be inserted.
+  
+I.e. the `Identifiables` (or finger print) allows to automatically decide 
+whether to insert a Record or update an existing one. This logic of 
+the crawler is specified in C-Foods (pun intended! :-)). These are python 
+classes that are
+loaded by `crawl.py` and allow for customized crawling and indexing code. 
+More details on the different components of the CaosDB Crawler can 
+be found under [Concepts](#concepts) below.
+
+In case you are happy with our suggestion of a standard crawler, feel free to use the standard crawler.
+The standard crawler lives in this git repository maintained by Henrik tom Wörden:
+https://gitlab.com/henrik_indiscale/scifolder
+
+## Usage
+Typically, the crawler can be invoked in two ways: via the web interface and 
+directly as a Python script.
+
+In both cases, if the crawler has a problem with some file (e.g. columns in a table (tsv, xls, ...) are named incorrectly), 
+the problem should be indicated by a warning that is returned. You can fix the 
+problem and run the crawler again. This does not cause any problems, since the 
+crawler can recognize what has already been processed (see the description of finger prints in the [Introduction](#Introduction)).
+
+However, pay **attention** when you change a property that is used for the 
+finger print: The crawler will not be able to identify a previous version 
+with the changed one since the finger print is different. This often means that entities
+in the data base need to be changed or removed. As a rule of thumb, you should be 
+pretty sure that properties that are used as finger prints will not change after 
+the crawler ran the first time. This prevents complications.
+
+### Invocation from the Web Interface
+If enabled, the crawler can be called using a menu entry in the web interface. 
+This will open a form where the path of the directory that shall be crawled 
+needs to be given. After the execution information about what was done and 
+which problems might exist is printed in the web interface. 
+Note, that some changes might be pending authorization (if indicated in the 
+messages).
+
+### Invocation as Python Script
+The crawler can be executed directly via a python script (usually called `crawl.py`).
+The script prints the progress and reports potential problems.
+The exact behavior depends on your setup. However, you can have a look at the example in
+the [tests](https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/blob/master/integrationtests/full_test/crawl.py).
+Call `python3 crawl.py --help` to see what parameters can be provided. Typically, 
+an invocation looks like:
+```python
+python3 crawl.py "/TestData/"
+```
+In this case `/TestData/` identifies the path to be crawled 
+**within the CaosDB file system**. You can browse the CaosDB file system by 
+opening the WebUI of your CaosDB instance and clicking on "File System".
+
+In the backend, `crawl.py` starts a CQL query `FIND Files WHICH ARE STORED AT /TestData/**` and crawls these files according to your customized `C-Foods`.
+
+Crawling may consist of two distinct steps:
+1. Insertion of files (use function `loadFiles`)
+2. The actual crawling (use program `crawl.py`)
+However, the first step may be included in `crawl.py`. Otherwise, you can only crawl
+files that were previously inserted by `loadFiles`.
+
+#### loadFiles
+
+After installation of the `caosadvancedtools` you can simply 
+call the function `loadFiles` contained in the package:
+
+```
+python3 -m caosadvancedtools.loadFiles  /opt/caosdb/mnt/extroot
+```
+
+`/opt/caosdb/mnt/extroot` is the root of the file system to be crawled as seen 
+by the CaosDB server (The actual path may vary. This is the used in the LinkAhead 
+distribution of CaosDB). In this case the root file system as seen from within 
+the CaosDB docker process is used.
+
+
+The crawler has the CaosDB python client as dependency, so make sure to install [caosdb-pylib](manuals/pylib/Setting-up-caosdb-pylib).
+
+## Extending the Crawlers
+
+Work in Progress
+
+### Identifiable
+As described above, the main feature of an `identifiable` is, that it has sufficient properties to identify an existing Record in CaosDB that should be update by the Crawler instead of inserting a new one. Obviously, this is necessary to allow to run the Crawler twice on the same file structure without duplicating the data in CaosDB.
+
+An `identifiable` is a python Record object with the features to identify the correct Record in CaosDB. This object is used to create a query in order to determine whether the Record exists. If it does not, the python object is used to insert the Record. Thus, after this step it is certain, that a Record with the features of the `identifiable` exists in CaosDB (newly created or from before).
+
+The Crawler also provides a local cache for `identifiables`, i.e. once the Crawler knows the ID of the CaosDB Record of an `identifiable`, the ID is stored and CaosDB does not need to be queried again.
+
+### C-Food
+A `C-Food` is a logical unit in the insertion process. It should be independent of other data and basically define two steps:
+1. define what is needed to do the operation, i.e. create `identifiables`
+2. update the `identifiables` according to the data
+
+An example: An experiment might be uniquely identified by the date when it was conducted and a number and the `identifiable` might look like the following:
+```
+<Record>
+  <Parent name="Experiment"/>
+  <Property name="date">2020-04-19</Property>
+  <Property name="Exp-No">9</Property>
+</Record>
+```
+
+Thus after the first step an `Experiment` with those properties exists. In the second step, this further properties might be added to this Record, e.g. references to data files that were recorded in that experiment or to the person that did the experiment.
+
+A C-Food may also involve multiple `identifiables`, e.g. when the `Experiment` shall reference the `Project` that it belongs to.
+
+### Example C-Food
+
+```python
+import caosdb as db
+from .cfood import AbstractCFood, assure_has_property
+
+class ExampleCFood(AbstractCFood):
+    @staticmethod
+    def get_re():
+        return (r".*/(?P<species>[^/]+)/"
+                r"(?P<date>\d{4}-\d{2}-\d{2})/README.md")
+
+    def create_identifiables(self):
+        self.experiment = db.Record()
+        self.experiment.add_parent(name="Experiment")
+        self.experiment.add_property(
+			name="date",
+			value=self.match.group('date'))
+        self.identifiables.append(self.experiment)
+```
+
+
+```python
+    def update_identifiables(self):
+        assure_has_property(
+            self.experiment,
+            "species",
+            self.match.group('species'))
+```
+
+### ACQ C-Food
+
+An example for a very specialized C-Food:
+
+```python
+class ACQCFood(BMPGExperimentCFood):                                            
+@staticmethod                                                               
+def get_re():                                                               
+   return (self.exp_folder_pattern + r"acqknowledge/.*\.acq")
+
+def create_identifiables(self):                                             
+   self.experiment = create_identifiable_experiment(self.match)            
+   self.acq = db.Record("ACQRecording")  
+   self.header = get_acq_header(access(self.crawled_file.path))
+   self.acq.add_property("time", header["starttime"])  
+   self.identifiables.append(self.experiment)                              
+													
+def update_identifiables(self):                                             
+   assure_has_parent(self.crawled_file, "ACQRawData")                             
+   assure_object_is_in_list(self.crawled_file.id,                      
+      self.experiment,             
+      "ACQRawData")                      
+   self.acq.add_property("duration", header["duration"])  
+```
+
+### Crawler
+The Crawler is the unit that coordinates the insertion process. It iterates e.g. through a file structure and over the `C-Foods`. It also collects output and errors.
+
+## Standard Crawler
+
+See: https://doi.org/10.3390/data5020043
+
+```yaml
+responsible:    M. Musterfrau
+description:    Videos of cardiomyocytes on glass surrounded by collagen.
+results:
+- filename: *.avi
+  description:  raw videos of the cell culture
+- filename: *.csv
+  description:  velocities for different times
+```
+
+## Sources
+
+Source of the fingerprint picture: https://svgsilh.com/image/1298040.html
diff --git a/src/doc/crawler_fingerprint.svg b/src/doc/crawler_fingerprint.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ee57b4af85a197d0b4d649f2be2e8c223a4d8cc5
--- /dev/null
+++ b/src/doc/crawler_fingerprint.svg
@@ -0,0 +1,1862 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="105.10491mm"
+   height="47.074432mm"
+   viewBox="0 0 105.10491 47.074433"
+   version="1.1"
+   id="svg3879"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="crawler_fingerprint.svg">
+  <defs
+     id="defs3873">
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4849"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4846"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend-4"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         inkscape:connector-curvature="0"
+         id="path4849-4"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.979899"
+     inkscape:cx="204.94816"
+     inkscape:cy="22.598354"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="956"
+     inkscape:window-height="1029"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata3876">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-21.294643,-83.677057)">
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.7714085;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 44.570016,94.820594 c 0,0 2.010197,-3.865762 8.607764,-3.81422"
+       id="path4039"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.38570425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
+       d="M 54.092678,91.418722 C 56.92757,91.057919 57.14663,91.057918 57.14663,91.057918"
+       id="path5160"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <g
+       id="g4037"
+       transform="matrix(0.35330138,0,0,0.35330138,32.178377,66.268428)">
+      <g
+         id="g4004">
+        <rect
+           style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           id="rect3911"
+           width="67.752228"
+           height="45.82962"
+           x="76.020462"
+           y="59.645218"
+           ry="2.2678571"
+           rx="2.2678571" />
+        <g
+           id="g3985"
+           transform="translate(-2.9293155,-37.136161)">
+          <path
+             inkscape:connector-curvature="0"
+             id="rect3911-3"
+             d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+             style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+          <text
+             id="text3915"
+             y="103.85416"
+             x="80.92469"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="103.85416"
+               x="80.92469"
+               id="tspan3913"
+               sodipodi:role="line">Experiment</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="translate(0.52916667,0.52916667)"
+         id="g4017">
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="53.205353"
+           id="text3919"><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="62.569122"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3921" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="75.798286"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3925" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="89.027458"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3927" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="102.25662"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3929">- UltraSound-Data</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="93.469177"
+           id="text3933"><tspan
+             sodipodi:role="line"
+             id="tspan3931"
+             x="77.579605"
+             y="93.469177"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Images</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="76.545387"
+           id="text3937"><tspan
+             sodipodi:role="line"
+             id="tspan3935"
+             x="77.579605"
+             y="76.545387"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Labnotes</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="84.898758"
+           id="text3941"><tspan
+             sodipodi:role="line"
+             id="tspan3939"
+             x="77.579605"
+             y="84.898758"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- MRI-Data</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6465"
+       transform="translate(-5.3861611,7.8429989)">
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,69.558021,69.015952)"
+         id="g4037-0">
+        <g
+           id="g4004-7">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-8"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-6">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-8"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-8"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-4"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-3"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-1"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-4"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-9"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-2"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-0"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-6"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-8"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-9"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-2"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-6"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-6"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,71.08423,73.601556)"
+         id="g4037-4">
+        <g
+           id="g4004-9">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-5"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-0">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-4"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-87"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-1"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-7"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-2"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-7"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-2"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-26"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-0"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-6"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-1"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-5"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-9"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-4"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,72.610431,78.187176)"
+         id="g4037-9">
+        <g
+           id="g4004-0">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-9"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-1">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-7"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-7"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-11"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-5"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-9"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-77"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-6"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-7"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-3"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-65"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-63"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-94"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-8"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-1"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-2"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,74.136641,82.772773)"
+         id="g4037-93">
+        <g
+           id="g4004-90">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-88"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-5">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-0"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-9"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-6"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-38"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-5"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-6"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-5"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-9"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-84"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-8"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-1"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-0"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-3"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+    </g>
+    <rect
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect6467"
+       width="38.742558"
+       height="39.876492"
+       x="87.406998"
+       y="90.624992"
+       ry="2.2678576"
+       rx="2.2678576" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="89.143967"
+       y="95.349686"
+       id="text6475"><tspan
+         sodipodi:role="line"
+         id="tspan6473"
+         x="89.143967"
+         y="95.349686"
+         style="font-size:3.88055563px;stroke-width:0.26458332">CaosDB-Server</tspan></text>
+    <image
+       width="20.404667"
+       height="25.484667"
+       preserveAspectRatio="none"
+       xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPEAAAEtCAYAAADZQIbpAAArQHpUWHRSYXcgcHJvZmlsZSB0eXBl IGV4aWYAAHjarZxpkhw5coX/4xRzBMCxHwermW6g4+t7yCKb5JCtHpmaM6xiVWYEwuH+FsCR7vz3 f133r3/9K/jgk0u5ttJL8fyXeuo2+Kb5z3+fr7zs/f3+u19fffj5587217fG18jX+PlFOV+vH/w8 //WGmr5+Pn/+uavr8421rwt9u6N9vkTdWd/vr0F+XSja5+fh69+uf71hlB8e5+v/tr4u+3XxX/+d KsHYmetFc3ZiiP79bZ87RUYRexx8bfzN96afxPeT+H7S/j1+Tv9a6/cB/P7dL/Hz30YW/wqH+0T2 6wXllzh9/TzkX34ev9/GfhpRsO93th9HlK8V/+N/P8Tv3t3uPZ+nG6k4wlW+Hurbo7zveOEknPG9 rfCn8v/M9/X96fxpfvjFrG0edTo/+UcPRsRvSGGHEW447+sKiyEmO1b5arYsvp+1WK3bepOS9Cdc q4752cyOxcXMRX5s38cS3n277sfNGnfegVda4GLM8c9/3K8/+L/++elC9yoPQvDtEyfSgnGZ8oth aOb0N69iQsL9iml+8Q3u88X/+p8mNjKD+YW58YDDz88lZg5/5VZ88xx9drw0+U+9hLq/LkCIuHdm MCEyA76EmEMJvprVEIhjY34GI7eYbDIDIbtsm1FairEwOc10b95Tw3utZfv8GHhhInIssTI1FBCT lVJOhXprpNBwOeaUcy655pZ7HiWWVHIppRbh1KixppprqbW22utosaWWW2m1tdbb6NYjMJZdL732 1nsfg5uONLjW4PWDH0ybcaaZZ5l1ttnnWKTPSiuvsupqq6+xbccNBLhddt1t9z1OOKTSSSefcupp p59xybUbb7r5lltvu/2O77MWvsr2p1n7deb+ftbC16zZmyi9rv41a/y41m+XCIKTrDljxiwFZrxq Bkho05z5FlIyzZzmzHeLLsZsjDJrcnbQjDGD6QTLN3yfu79m7o/z5ojufzpv9ruZc5q6/4+Zc5q6 H2bu3+ftN7O2x4Pb+CZIVUhMQchI+d06+6lt7BFqH7WHElv3Jfe9AMFwThkM/Mw74hmAf7N1c2Ks rae2eNDhiEa83ccM2o1xRs7NG9DpW9xnGuG5fh1CF9Kt1FG/ZTBTvdqdfc9x4m51+OsKwxzzWJhn LgIxWomzdGMCjIBe4sdtI48UxiAGvHZah0+Lxs/Fe26t3OWSD23MPRYJUy9E3A5zdqnpTqbsDcbn 7Pfa98ZV6r2TqBGME3Kfk5+HPFah1u6Z3CiPxNyfAcj2kubqPFq2GK2ALCMDbcxOOD5EnrIWzytC MnKNd+yZNgkZAgmXuE9tsGyFWsaNu7ZFip4xRyTcAzZgjm1zxdzD2afO3EduBKkcgmxiEeYzpDKY DzKDzInGw4zdVyVYo+yTd29B/++rbWbU6jl3+z52CKTeImmIqSO2fjO3w3oX9jGscQHrvrzFfpjZ ldOp2U8LtSCC9uaZTgIMbZ9YA9yzeWCXV91nj3z31XhIwh0OcwyonErghq9rtViWpZnaPAyLoUF9 pO9MhSSP61IZ7tR1G/HtKU9KjYHds9NSxia/phXC1lYdaKoySQ+K8M54SKRAPfi0CHvkjZRI2XvV m+PZ+/R0SIVkq93QdzrbxwEL97pOXgD6ITsmpM/c50Jq5bV4Qem9uD5NzBtqm3HNRq5s3lkYr9Ai rTYXk0iETh9nhxX7rDurKJnO2i+pVjLF5s7tNR+EH4RO/c50lLFx9m4kyS4ekZFNs+AHl2y3jtRn rjsOsiA3K6R6acfl4nmUmCBXC+14poHqBi4yNbbXIrtDP/6i22IEofhproiAsKetkXfigZEozTHL SqWZ86A8Lz/fgHIrj/waSRSPCYtSqZtEGIbA8J0nBzoXApXqmODbdWnNHuu8B5gLfsa+VlBKMcJJ jvHqSxpRUNHzZoIL0CUomMma1YALJM+uMbnItM/gwY9yY+ZFBJ2H32OEXsgYi+TnIN/JO0Y5hIBl lzZDvimMBF0ffit5fHolthPQDD02AZlPiFzp5lMAp7tDypLT+e++ut/8oq0FM5u07oX7gcvcmOtA ZPtNvgxhV5hlp0G4AfTVcnFMoGKbSuDVJzArlfw6gRnNd5rN1CNvSMIKFROQHFKd8CUuY1YyZO3G td0tlWK3DH0CdB0ITYcbVyovNZh1cl0PLV2+EyzNOFYbsV2KNF8EJdkJWMIi+TAJqTXiljqPsHyt hegCRAjWcs1ACgIPkEMDjdeSDwDeKKV1KzzGRu94R8LHUkFpn9uaNUCFra6OurJRLq/3k+wuJvFO TYJvANC2PAFVoGtBNPw4Lkc1KhBMNziteVsebIxwyqHYwiZ3oMdDghXqC2ChWskwqMv33U+WSIZ/ vIMzIROk3gG2cYEdavadPMrQDowtDjKCuKiN+RBl7fdoF8wsSCOkIQMNDkITVwfEdeuBgSXytOiC cx5Gu5txqzlnjV1UGVpbBeZdBHkaaBkmuAYdNbIOVl2rgrzhPd5mos4FUeou1M+8DIErAuTjAFrb LkAGsu0yihF8jQCdjX3rbflTLeoiFxQh/iRMFvJw1bQbxEFZHOLcErAaKGzNY3+eDvLP2zuYOVLL CtLsKue8Jm87EWLfd5Ls0jPIGS+tHMlks74biggQUPZXSPn66EzSIVDOJ9SK0EL2fKTzYNby1mwl yrkISwCzwZXKbueCxp6boFrAM6LuoOG+yCTQa4p3sEXXziXRDVYhvxkQ2BVP0dQVBFnKB6GxKbNe JX8ANhDWge6T2qf0CvPTY5noLF8q+D3JUZiwFIDwzNnsHDLolgXewOBg/3o6okFQ5qApVAjYWiMF TSFWZvtE/0DZ68WAN7UguTYiIuJKGldEDtUDVcY9QdfkHZnXmNUc5MvaugDvJOTAOuYPfUiygNYD WEZscr/GEFc5h5IFW6Wm+gSyt+sUeEweQalRLZGbv6AbEHCSl3fvxBx09A+t8p++uj+/wIKADUkl cdXiNdB3IN7SlCCa1A0R6wfpqSp3QnLUSBJlBaFzr2D+4n2lRYilV+QxMankO+KC1IFR8b8D4V2R 7V6YDTE662WNi+BBdiPqZ8D7o7F5cc++wpFJIRjG9IA9+VAg6CGgijSn/sEAQBBR5UhaBoT0AypQ F4QeHiERarwIOGR3j8gSPGqrN0L5N1JJpBDAPDYa/2xkePaoWkaDPsNS7i71R9zR7DOi+cSrwiQy kFyJSZmN4jeyEIDpGWBDZyJXyIXkeIqBXszvLWDYyoFM2sjO3WMAdLjYaTvEdXhyIGmJKIg1wZl6 6rDXndRaTlYJ7AKqwBYYUtqQm65iDQjgK+TKMJE2BXUmMKoP9wtIhvSjpCglag3Fme6oqyqz9x4G qCBswBuN8iB/qCSAG16GSJBM58iZIC8vyIkXg+FQ0tHJpJpMgA+4C6oyQfcN4niYfw+CFXPWItef JSGQkEaRt6hUrGYNseJCkhvgYKBkkfw3ayyB+20qa/Pb2ShgIBctSF0FKAKgXYl82gReNUdkoUpE qDsICvSYXAOzUfD7KwaIKYKKUA03BhHgr+X3aWKNgKEgKZsyCzPJDDa8QEGxrYMM7qQMlySKRDVN DCSgA/mvUNEzaH8RIp4OLPNUIUV0FHSvWs6gbyaPJhSIzRPOgZHmYX5upLUIKgE3ucpT06+QyGec J3lFaYDnXWLgSI0Gt2GHhYkAYQPchxYByx6YBNUdk3Ngq7pvkhnNFZnY0YoEZiPlM7deAF7xsMgU u0L0EDcIBYFHWMx4VHKBkAqsxxIVIM1FFPFCDIST8sH+Yin2giLxazgMarSHXIEmTAKhXRQYKO+R wajRRXwbJRyIpgeLmXbsm9CP4WEZInpvACMbN9SAu/AAJ1QJLV/SaDAdnI258fDJILTMOjmDvUfT Ml5QGluMbqgEwmFMQOoq9+HLVn7h0DB/F6Hkz+Kx5DENIGl/+9X9/hcACBlRcpQX54GrkL4xMZ2n Y/r3Bv5bH4jChP9B67gh9KAoDD8Ie2MQC4bfXv7AJqSxxyQSPSq+dtQ/Zh5UAjs2zoQrz8KTFmwW WU6KYsNwTU28KaON3jjIJpzcxuoyiwQbos84p1fQqjT0DRboQ0+hOH1zIcB4yR/UKdKRtOiA96ro /NoSs4uSQ2EjQ+EU8IlkCQn5HMRJ5J9kuRtpnMQTABd570+OMxWLPKHc4KyIHB8NiYRVAnIOEhVx RY2jV5E3HpHMj7LLTAsyuIOyhufR0gHmACGDmbjxEvFWSkVi54qkQh1XqwvBl+QUENFapSDIx6Fz KhwPjPEYjXTXQg61Kss/yB/QAwmXlRpAE8KNS8IGGVJIEnkHnQM0BBeQ+ZQysYb3wSIuueCmSg7I a5h0p9QJSgsLc4A6/HHcHSkdeE2vFxpHAbmpiQ5GgBA3YDIgDzKAJIM5IhnzSwU4jwlvhOBGUoWU KYq+ViDfXxsW8c90/SPj8ndf3ecbPBylhIgxRgb+8YU8o9ZuYZ6TgiN9CD1U9ESmMlOjZNGqDXTn rdlJBgJ4Fd0oiX7PgVsyD5GhBnTIFt8DGtjSBCli/q4yEbs2SBIQird1nwrgz2xdbqIVKfwNIziD oqcAsEBogacBkDcVEQrHd6wCEv3mgxCrIDDR5bbXBWoLwdCxNEn+HVuGc8YLR9yVViwnj0beo2g6 vIcwRXNDiilHGE06Dp2CC3HAqpY6PEg5tabFmCWzMKDIcqQo+DoZA64XtsxaT0KsRcoW4SEOZPjl jgOLZCUukuVEirVpE4e/sTuUJq5Uhrh1IPCOuU+R8x01VVELYxuHK8H4PLZLuFeUavegsb99NVSM ZAXlp0Uc6gk9mSBKTHkAN+Te9S3WvHbEEMIRIMBmyQOAA/lmMeaaS9TMBawT34EIgjSoIVnPt3dF 1kHaQDuOLWiJUusb2ZLrA4CbmRknYmV3dAzqBXGM15diwVmFjk5FbPRxYfNGmPFGspWDUkM5zgQn OaCZAKPmGCZow9hAAACVghWPUiy4ONXZuvCHkgo50Y50Bf/fS8s3DV2DzfLjIfX/+WvEN7TmECJI EXJ25jK1hLsg0J68zOkSjOFv8cnwWL5UBWEnaLGnrZwfWHMAuO7eHLITYW+N574oPsMroOixfqHZ W8pkCoEKaFgmroLS0llAaWdqE29GK2if0aEjtZFH3kaUNIoTLd4Br/XoqLYDjBEiRF5/cgaPJ7GF LgJkyghvQcswflCMboPuqciQgtYLyjVJEHKfDIBGtLjYwQPEB7NLtlZUKVVSS5Khlc2H19BqiAtj ZBBsNNlQmO7W/JaAaxgVzqnYtklEmHNxNPmLseFe6Mui7dDYHejam6ccUlUVFaT+WufiGD2Y41G7 yBGKZJEAkCTyUxQPCYHEFGWFLr0ozRW4mcQgoKUSQiN/Z6CSMSrSp8zuy+VIRh4kY75apQWptSSA lUYdwi2AhhMtr04iCuMrQZ1aPYb1GE161hYdAnWYCO6Qy0VuXpFR+cfW9kV5WmDW8PfYUjxbqIHh Mv5wBB5J65sVbZRIq4oTIPjDjxKPJmx13+DCxXPqFeYw1t7QNZod1QzCnxkBAj3gA3FNpHcbRBUM q3KM1AVyQhLvaEFPS0gJInKHDJzIqcswP/Yx5pguT10QheQxadspX6wy2D+1GpgqfhCkCDlnLeo0 hAeKDWw4zaN/q8GLyPo5UIoJRO1wOPmplS0ECxqoyBRkIGuj2WWFtDDMhdEI2aEBOh4eokkFEIPN /zdt9m9f191lOgQ6BhAtqzU302LzvlooQGuTX0UiC6kIGN1G6oE+WLdDJBEYM0JsBEm7gNORfjHK 1TO+p8O174IySIZGyeABEhiyAyk8VKAlR+QAGhA6w6psqocQ7pyxokP7DknZOSZMD/RmlR64hyme aMS8SC9sFz6IyR8S2P2ibfEaMOhNXDBGx2Mx8qU9A9knlEAw9KW4LE6tqVHeG3MhGVrJZouAkvQw 7GZgqciTIFd3e4Y/MqQPDsvEksZQDhVN2Xkghl9F7LWserwtvfk/5FARMsBsR4gwcdnol1mLwcTi BB4zYkK0ibXGwvr53VWZJwaQRdtbsCXVoCXpJKgrSL4KwjpThWIwuEDBZYa0tGALRJE5RCkMbMHe TO06TQtSlBsSTSttLSEL+GGjINd1cisT0Zm1HMegpYjXFh7KR0vJJSYIicqD4bq3ZAUzGggzYqxT d+VW+TUSh9syBtMuHNiK4dmfPaitzX0KBxTxKImLHiOHkMz4MDK/Q6Zgi9ZrMF7umgT9wRgzJ/CH 75QMulObabCGlnCCkIcCBs9x1ufA3wkvP7s0NjSSyYLhtOEUMFSkX1KMcWbMLuzRcGVoBY+ZLzXI qSazu4mslvywdqAl8TAUOBqCPAKYcGYRsscnvdU/3hYlB5leUg4VRFDBElCSgeFzSFfE+4Xg80Hb wlmrorMzIo46mjwFv+3ibfQ4wT+ESu4T4YqxU54iNtKIT1E2yiOg7cct2W9y0lGWZACz3qBDCUnm J68AH5FKkD5e2uRlJrzJkzCOuGUIAwyQDU0TgjzodK0DrTgKkM9E5Co78PQxbKpgI1TFnZ4fQo1G AJqqYGoWztO/XQLu3ryTSI7DI5/6fUPeEoXEIDEdngw5QjysFnfg2UqAqJkerdd5PBeGBU1Xk3eS yYhdr+qREJOgQsx2bRoxCfPAE0yYVqs6Bk+7zoFRyotR4gMq8tIdx+EXyI+JNeKuBKvsUqgfhqeG EJSTdJlYcOWGfiZ8QUgHOEztlN0sjQkWuUuZt4lA3vxv8FstpDGrTCJik0mGUiHeDb8cpjlh/Q3H CEIVkpo7VUCQwnVRuAdHiiG1PF+0vQCO4LqFl1NGza6GjIyCJw8KXwRjQA51Mt4afglGiaCNjEt7 yYtMGgB/S/vQkNkEC21rrYrMwDdhrxUbyjskdSIhGruwtJGQMluA9ZL5wobACWh9fPPVmvUM2mYg 5MiSFrRgiYyGDVEYSSISHkMpnQXkOJ70d4ujDXBrI+T01d+lrhBtMgMYWkuOOACEuHpeMMUrNFx2 F/FqzZAHrlp4DCPlGyd6JBQqEuvTM0IQOAC2ZGV30MJCwzfoP6whDr04uERQpn2lgepfK+HWUkIS YLc2SKjlCCKEoOetd0Xt1Gp9YuaDko7KwcZ0OWYf5hUnoXKFzaAeOm1rV2PixpCWC/9EXMBOEomE VhvDOTyOPSEZtyre7SHL3LTSdiOljlqFME07c2hhIRwVRMaTDKS7dDF8Kf2VmRi4mjTJynZmDabw AZQBswLeQf8B84N8p5SMTMqvBufDVqoeEC+CX5lBQNhEsMhjmLuPVi7WAWRdhAq0aEU73FwatoMR 4PaiLbPdqXtlC2UA0ADfgDCBYv4MK6rdfpwKVI62xSF73neueesSLE/PC2t5CzaVGMHlQBUpjeYh t5YfWAAQcshDQYZCnkWODb+p03491U+wo3Y40Q6VlEWJF6i7IIKnVjrbMm0zlYO3cUstGzLrkQtb H1rzZSav2l8wIkhKbte0Ze95SHAYmandgKXFoyisoZq0LabVya2NN63Z5wW5wn5avGPWkEk94ae1 FS7kfwg6tL1vlCijhycq4VyAn4M7EuHcrwPvaq0FpeUPrp7wE8S5NDgMPpYaRMThL6/WBxTOUc8A 79K6htYhyZwpSYqvjwWOQ+wytdQkxkSrxlIMat6oKlOKDK5f5xGDTARqNCGZEBFmm9p/7louJmmp BDobDA+YUFpr1WkjBzDTUUsJjUJD5wKnCOVm0sOIiGzaMCD/S8L/FK3rrKzt2NsRea+ThRTivXwj eKW6BLFoGLgP5prqxth5O+w2gheBBW8A+oP3MMdMq+qCwldb5ZHV4R2YNmQaKuxtdhskcHqVyakB d9QkLufU7q69tgGygcBQ5iEL5MT1U5v7RTCHSdCmWwP41HIg9e5JJDRkNgRf5UUrXQpa+2Jat4A9 NZeUqpa6v26g7UXEzespUR/OlXoW63Irh1qBMCu30T5LOwGdp5Ui4LBrHYc4HMVjk3r4kaiGFPxc ZFIW9aReDhAcPCrgPoC6ashq+SCOpm4NLcGvnEvQTlK9b01a/SfMQYZdcULt3Ec7e0ytpbp/ZOxX hQA2xYBwwLvyqANP06hmcBpyRxq6rdYV7fVM6kOGBmBDRPEjWHO8LoKADL8DiUSq45LxDw1sbqNM RJAhfLJZlqplmhJyTzZLrU8VazjKGPBgEDQBGw0sAhIoQSy+pDwm8JA3XIrLFVRldihjTVLWZmxU o8eCqlMeTAy6ZE3tAarT4wBERKSWt8/BewomFPk0L6qRAnR4AeQYGrUrmfCb2vPCqyF2d9Ee0nn7 tkk7DVttqnzH40R1ZzFR/R5SivG7MsLRLp40K3IR9YDY9dJJWmHAOQJoUdoCRkQUaakOz4841xou fubwMigRXiPl8WhNcCLXqhUROPDIDSYt0IIWkAm84LV1U3FIJrHeZRE3iYZKJwm3k3LT3jxFttXK py0NDV4T4Jl17YocLZQHuWt1CIJ3SlhxE7IfJ8X8J3OvH45/bthkIVpr2iiYHY7Pj82geeBETRNv j+mghJUagA7CcKoxWr0l2oNEkhRGx8AwY4Accv5tUZ6lKvaqzs+iRdSaqJrAWlGvlpZQUHs4DhB6 ZijbeBJtB3JLeXk1mlFn6ylWZEjOs8rDNG1cvyAyWagL6iZs7UkuX5D7jkmkAiz118qsVVjd3RPL XorW/HYR4823ZTp6wFgcGXjoTG08AcIz7bE5rdmbmryQIPCYdCO0zxNo//o/WG5zfyhT4gBy91OB H+IhI1V8QmuDyrO/lQwIEwRK58r6BIdzYqYxbEmS/PWlMn9Rm8EUDaFH3fKE0CeEScobaZiffEpL Zk7LtXtdEPIVKcIIwlgY11vUsxex6QAyjISu4eVd25tZLXRjk9HqFyhDW17oUgnXtZ3uvxEJ6GOU mYwqObOoDDVeFa8lAQAWmVZKJR/ia4rh5eDyDMC/SH5jD2BaqlKpA8H1iftNVDsK7kSlEQklFM5a A65aKRL4U+A8DZeagblJWu2Nx82NGdNOkXY6+6VAmEBmnjITh3VRBOh8XustSYiVGoJryfXtMaZQ ewEpHKHQ6vJJG822kAaQLkqhqFkHEcr7uwy8/IAaKwlpy1fwub06nFI3SAH36QQJSUuhta6lJWTg CBMDuRavRkwIfmZInfLTwhXDxM1T5FrSEr1be+tG09n87L0GRu23PAAjhbM3bl07ikQIoaymgrfq el+35pVu0Xo4GqjVtx3tllwQoMy0ktIZpYQxn6KJocVfFCDG3x+PmKK6veRSl5nZcDfx0C7JVE+u S+QB8kRLfPwG1tf+uFffiLYkpI/5JyoGoLnaO8AOaH8BtsWBzqotFii5ZCcNCIRCpMRc3aW34QTt tRw00hBtdqvgfev51vaiA+1coQAAYrEwHImnNa5hskFgSI/Iw0JxUG3z4J+6WnEJ0dQiUr1JgDxx sBhIvOy2jss06FarNQCo2oaOuvn+0aaTJlt77lz+Pu/dPZRzXfekCDyqpoE4rmzf4VaCLV0dMgaX t+Q1U6VmAeSfnlQJA3ktbQWgq5ZLSz0aWWD2uUILj3HbyJGn46V6O6Zp5LtaZbZnBn7hdKYOq8kP 34Xdr1fOkYHoAveeZtk03tctBbBQxmqrCB8E/z5sRFS97odxm8YkluLRsX4RdMEAoWgiKgnavfbc HPkapcO19qOteZisVITWDVU41OXkMNtBDXvkX+LCJsLFgVXmaW2uoA1edR5UhMVCjqhTph6iWqrL zN6Qu3uNWZcyUzTRhwCpLRwB2JUTpad9pUpZ4EQ8nIlx0UKpXPwtK2U3phoA8F98E6GJosVB6CS/ DjR10GYsCohr2beqFUHgL6Q5tfyOI5BLO7CUA4CAMhjnRUltOC291uel3dhMSZ2j4EpATjz1MuRz a7bVsKV1yiFiXMFBhXiWKF+sBEYERfWhqVmSeidtoHDYAkZkCpW2WiTVvoK2cUAafMmJGDKHL0AQ k61tvvXaKXd3dRIH4WDI/0h+wPJV+3KyExQrUANTa7EPWZK0dx+Kg1sgCqDn6vDD0voaeZ7J55IT TqLX/TrFKIU7LiozKpIzaUFIBa1+yVlKd0PrePKx8yOPkJLkD4axvAWN9NlTRgQic7BeOyt4R2Jq JyYGx7FAd0qkIeYyokhN513GSKtryHqSPb/JJcS5lbCTTiDJP72TYARkSPzjAYkF3sWBM1guCbOs LbGIvUat8YQFdw5Mwp/olts+df72AsuAOu+ZpCFPNb16BLqT81YLJ/ifrgKOtwr4OUwMyRzba1oJ YSp+pu1otSsCePP10hORzWwQLCdzBqlQBMB2xpVh0+7rEdPanVfjpKlhgawi89QtsJ6mQ76ST+qj KhLp0w1tk/Bdx3TxqEBslU+igFA+PAV4jbtJEuA4ObUlJK1qXlQgLuE1Jd6OpnLqoCOExIXXRs29 muCp6I2mv2htLUlQBOqFDOpxhjglykrslCCqr6tlentGBDPI7E5tPKIx1JbnS3lrzNDhVR+Ulnkh EeMx1Zlug2dGr1ZSRcihqXamdgvSODBCLwPb1a8W5OgCrkNbFV36+QuxuL8W/+pn1+JKTnQdpRwu oE+YyfcLRM1PgPrvEP8N4Zl9bbJsYsK3CUZ03yBRB/G+gSLkdnXiUVi+njTGHlFl5JDG+Z5A2+9q EeDFYG6/bvwWyn9A8vWQ3N+GmL72HNTvkNxBlF+/OynKW2MUfhp2uG8lbX7lMtJE1FY/IrppQX8p su6H0IL4KNXWUC+v9UYrjmSOWhcuyiEuJUQqvyUKKJuYlPGJiTEiHK/2qaStZFK+VuP4B+pS/VlL 56rmiKdqpIAanomrbQfGzOecgYguVS+YJixoAWi3Jv/Cgu9VWABywkIhITiw2h9eXrxlVoc5ufqj FOIBL+UU3iW12Ykdo1ZG004E0ov3Rnz1Cb1SxKBcVmeI9C6eFm2Pw1od3bTFD1Da1A4etQGJvvse 7dCgJLVCV789a/yMCTwhXozJESionsgpDZDzYWmhBmwcjCTnoz9qIslxIWDGHGoEVDsUgEDwkzZI yDs0ZGFWIXRELkPR8tJQXJNlWT+dClwALzoddCztMyk6jol2OcuAHbUS8UZctoxpDsvEYlr8RsOC OgR2JxiR5KQadV6K4STta2+9GzcuOw87+GKt6AQL/uDcPc8N8r83V2AFHlB/Ekh2PE4OuA9aMtrW Xuf6VmMU8QLOj/pvtBKFhWgBab528NvDiU0CEZtAcYicLnTt1dkEfKLt0r5eZwEOkwMK6DAZt0eI qNVTvQeUK6kTsQ4dAOBb8KGu6gFNLdQExPl9uzwG3zHGvROSthEO6IihXHVpLC1XVEWEec5vFXRT 8lAzCaPNdGaUWOMcUKAR44AgOedZJFIGFBBVY0XxFlV4Ia7n1zCCGoXQ3VFHnrQwfHUIZ8n6fC8k HWp7ubUknYGX4I4oX8CBVeE71BBphHROyFCyAgm4VLewX3yEcBDTtrVZiuaGUVAp+AGbLmg7koAN nRObhF3t8P2ze2wqMoUEcOLRoSlcvXZmsKVLlg60Sf0zTqeSVkvVZRp0hK9+Khrk0F5SVVuf+ji0 MaVlKKUlFLyGTGJ6q+pw8YwEG2qdp5scWxIHU7ULEZC0ehMl4sCVpkMQUOxguLg9PGomQZSQi9sn 3oNgP9BbUV1WYIxyIT0xQIin0A/DqgJJQARwBGiuAPQ9ygOnB46oP8S6OjRR51enjhA4aSydLgSo qprEGWLVss/VgSIy4UhDysptPDQip2VUMDncS0CwY/snUwzP6QSJFu3Ofmz0FaSlnAKuen9nIYvQ Hv1ECoCSU70bs5/hFEVSgIdRUqOlmCE0Z23ysvsHwJzf4EnP80Hb+A1tgUUHR4VKMFb4yrD7lWEM bTzUNKGmALQsOCuutyECBQht/oJi9wnjGxUeDs/ov434wmoIrLmFeGgQkL19LsdTIuZE1RPC82pM Wu+I5yONwHvWZyjfkwjGWF+XfOiVP9ecf13z+xDdNyr6JCbDCz8RxiWljQRGRV2dPfOKpg7FR8Qn F8tDey9EDMX2uixz5Nrjs+wzde6vpD81eOAwcMBEAQgoaoxDkM8E06raQ7+8fQplxMz7HeKcPCpl HJjDvd8+2lLzrDxEwAJp0y0uYoo+iovMnu9/YI52G/G1ah2P4KlpqVR95tRISYeCgTJkt7g2mk+H criz9qgz/tsd3mbYmIKki9r3iVj5Tn2D5Uinqz1AiI74oXaHNpYPYxsFitL+lA/geqo6U5PwWJTL KV5d8dqZCHg9gHTgA+BChLDatzPDP1Etx1oPaFlL1lxD7t0qI3Q4ismURSS2lC5D3rxM3cZnnFtx DBGxrPOTSF41vHYvtfROuDF7VOmlGgrGr4yA8yk4iXcsV71T4+1bVs91CoDYYEJ0sZaBQtBafWpl NS2yJAEbarfc4T7nc+X8qgo+mKce8LU9r1Reh3B4fVpVGk2Tj8iQg0P21jZ5TaCIoQTn35Eo7cDO /nY7sc/qdcRlBgalU1VDrdVbqyLba8MIJtXqyxleLkLnvgAQp102AgoKLmhqAslj/vnkzJ+/uj/9 oobX7oBLIc5RJ0gEGoZ6mHAQhT0LnkNckPLKszsIGciHKq+6pNOtIgG1Y4Dv+FWuAN1voTHX0f5x 7VpEOdQoBpT8u6g54uXiZ6sqGt5RzTVVR/hi1o6vUljtB/v4GbQwjlAP70QinEuiZbUwaIuabG9O ogItdbcO/04s1pCt4W2QvQFuXv0xU9ZEndZwr2RWCToj28hfZam2MLYzWRZQGguNKtAyPz/n6ZRz iBBRkPzCnq8pCMwKGTLWEUEtDSa19iBB2nL5dYQjoFB6alfU4ciiDdiDrA0G2AQp4KC2WeLdtRU8 FEB9OEQXR2u7EH1UZPS0iQPOe30axE7qjJi9ES1tRSF/JzG1o0UFjOhsITbtVeojCQAndRJh0ZxU TtTJEXVCXTEwSjgDHGp7QwJTiyPq9ERRdzKyj9jqSNJr0EdH6kDOgD10dh2LDwGSGLHo5JMkx2rT 1Gs4g/p/ZgwEOMPuqS7JR/hPy9iZ2CMltCq8XdReAgq0XsOwY9kkVrCqMyVftOeXvRZ6VbTEI2Qi m3Uke8lwb1BpMgVzZreBYYMTRlAvCY5TfX44eMoR6m2LGGIyC+bVM0RJWFVn0mqnrfNu0rUE63Ym E1/k20H36rR4/+ujXT7thP+k4tzfvwBgAehSjRgAtQtH6eqjs5pgA3COXMK1aPPVeXV9EuwK2qsF Q+1vvetkj84VzaUj8eqQq1riUXf0aO21khWdJp7Um3YW09Wne1TDe6u3Tk1/6h5e2tnTcW0JLJWf jpuZWtuXCjcP9Qtv6rXp2E1Ki7pxzDm6iNTPMr2R3EsWn9FcvmJINUlvQZyMUXOjPmxAh++vepa1 ff4WQK85LYCR9F2bW6IrFCAzqENWWmLWoVMd0+4UnJFV53SZHP6mCJZcHLDa1ewPQrZTeA4CiCCF 27qc/+dMRvCYMkTy4KU5jxdsqral3dHt5slctTCjj8NyUeeIdy2fBto+uW7aoUphYI791Kr3VK6C 8WAhOl7tLVrY9WXwUp130YK+i0zrhF0Ihk+g5SZyaMCpD4YgdwWxVOFWk2d6LdbcKJu2eIfaEfyT FVkLmikO5MTwWgTRch3UkVLV2RptffcA6OT2uv/fsj2kxeNRUmouYlBqc8ZLJtc6/kPn0De8qNO3 2ozBE/OII77lw64tCjXQjLd6oD4oQ7NvnfZICRsN2RcTQXIVdQjoHC9YjUcMPHjXM6nVC5zT4bdU TR+dwFC8PjpDp5q0JbTVeqczc1jRap0wPJZXB+5VC9zGHGhdEW191ZKrHgNt2EghYVdqxX5S5H0Q CdiTR3A2JH67mqXUk7gmbg2CtqDu5qaNTyrpU8Rg3J87eN0/buk96pP3kTLu1URAZG1+Z0i0wxGd Or26jgzgeiCIrN7cjuggPV4HmT4FhMrUYX1YAPEJQRgWoU/Ii9ShDo9OZzqdtOzaw5aEpcSbTCDy X6cTdNAFNgLadDQBK6Cq4HdrvMNSr82VMgw6TOJ0PBn0sHdABx2hj0mYCAqSX95OH+pAOaifceiI ezKKB6+rc8FanATIMeXkmtMnCyydGlWbzHk9VuPK0pk+T8MoNs1pHPY2A9TKpnPYRR5akuvtSACu x+njEhJGkPlXfzq8q8/hiNpmfm1kOlxx1E/etC6t1nzUu3pedJpuLO61TKtnDozWsunR2qMONqKu uo73wk9y3k0dgpQP4/wQllbd8+5Ta7FcrmlRTQ2EDjzT2dF3jKYkbdJh8bXWrc+YwDzCEJI1Q7sf XX2oTWeF/GfxTMdntHkOg76PwFAXaTnLq3EWQqyAF8VGEBLVo755NT9ryFqV0sHLoGWh1KqW+ECV g410WgJaqIrXSY0IH29PYIp+q3o4q47q8JYgbYuo2doMLjrkdPfn2Dn+plhwarhZ0KmOWTZ9pJeO s1Svk8RSb6imRhEndQDpQBLTALR9PnZHn41z1IYR3vl+HbicWk8z1SnuqqjtiLsFHpYpq+mtISI+ Aobk6vRW16edgD5bnxrGLSYeFxhRD3T2gp71aUGUYlvvxPM42ua8OuZgr9/28CR6MwRmbwc8l868 JENoBZ2MkgvTUhVJuPPUDpnXRyHtdxRMuzraaUB2TvCed1V9fEnA1WmzSz0NebjPzYoILyKxKY/U MkR1dPgM+QJ4RhRO1So9jhTNT6q90//kuD7kAm6/A8zOgHOATLXP38vftPzcqx5a7/4Hs5xUA/xp yo8AAAGEaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDUBSFT1OlRSsO7SDikKE6WZAq4qhVKEKFUCu0 6mDy+gtNGpIUF0fBteDgz2LVwcVZVwdXQRD8AXFxdVJ0kRLvSwotYrzweB/n3XN47z5AaFaZavZM AKpmGelkQszmVsXAK4IIox8+xGVm6nOSlIJnfd1TH9VdjGd59/1ZA/mCyQCfSDzLdMMi3iCe3rR0 zvvEEVaW88TnxOMGXZD4keuKy2+cSw4LPDNiZNLzxBFisdTFShezsqESTxFH86pG+ULW5TznLc5q tc7a9+QvDBW0lWWu0xpBEotYggQRCuqooAoLMdo1Ukyk6Tzh4R92/BK5FHJVwMixgBpUyI4f/A9+ z9YsTsbdpFAC6H2x7Y9RILALtBq2/X1s260TwP8MXGkdf60JzHyS3uho0SNgcBu4uO5oyh5wuQMM PemyITuSn5ZQLALvZ/RNOSB8C/StuXNrn+P0AcjQrFI3wMEhMFai7HWPdwe75/ZvT3t+P0XtcpXt TttfAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAB3RJTUUH4wgTCwMU E3oYYwAAIABJREFUeNrtnXlYU1f+/9+BsoYEEJSKoCBbFVCkRCPSCoLWVswXZHBpVVQcpnVBp9AK SrWOoj+tDjiW4ogL6hTHKgquxa3uWiEVW6cqslQKDoIgSNhJ7u8PhlvClgRBFj+v57mP5p57z7nn 5n5yluS84DAMw4AgiF6LGt0CgujdvNGVmec+uo+bP5xEdWWF3H51NXV4+s7BQHMLegcI4iXhdGV3 +ru4rTDpbwQdHW25/ZWVlcj/bwEmTP2QApkgenJLXFVRDp3Bg1rs19XVxaCBb+LC0f2QMrIW6Tpc PQg9p2LwUDt6hwiiJ46JKysr8fvvea0GMADU19bg5tmkVtMiIyPB4XBabP379+/WG+nq6oqIiIhu vYaqqipUV1fTU00tcdcHcH7+f+HgPBoGhkatHlNeVoqfxT+2mcf48eORnJwsPy7gcLr1Rnp7e8PB waFbryE4OBh6enqIioqiJ5uCuPPIyspGbW3tH02/mlq7AQwAPH0DSKX1baZraGhAX1+/R93IlStX 0tNE9LzudGJiIkQiUbvbwYMH2zxfXf0NDHdywbsTp7Cbm+f77Qbwy7J27VqMHDkS9fUNHwISiQTm 5uaIj48HAAgEAvzjH//AuHHjwOfzMWbMGKSmprLn19TUICQkBIMHD8aAAQPwySefoKLij9l1gUCA AwcOwMvLC3w+H+fOnQMATJw4Edu2bZM7bv369RAIBODxeBAKhfjpp58QHR0Ne3t78Pl8+Pj4oKio SKWyN27ciDFjxkBPTw9OTk64du0aACAkJAS7d+/Gtm3boKGhgXXr1gEAvv/+ewgEAnC5XFhbWyM8 PJye+tcpiP38/BAQENBm+qxZszBr1qw206XSevD1DTv9ouvr61FRUSG3Nbb24eHhqKurw/bt2wEA q1evxogRIzBv3jz2/L179+Krr77C/fv3MXbsWEycOBGlpaUAgMWLFyMrKwtisRhisRgPHz5s0cou W7YMs2fPxrVr1zBu3Lg2r/PChQuIi4tDZmYmhg4dChcXF+Tm5uLkyZNIS0tDVlaWXN7KlJ2SkoLY 2FhkZ2dDKBTC398ftbW12Lp1KwIDA7Fs2TLU1dXhiy++wPPnz+Hr64sFCxYgLy8PSUlJmDZtGj31 fQ1GCY4cOcJMnTpVbktISFB4XnzUGib73u0ObfFRa1rNc/369QyAFltERAR7zJUrVxg+n8+cPHmS MTY2ZvLz89k0FxcXZteuXexrqVTKWFtbM7GxsUxxcTGjpqbGpKeny+U1ePBgufO3b9/e4rq8vLyY 6OjoNssRi8UMALlr2bp1K/PWW28xDMMoXXbTPHNychgAzL179xiGYZiFCxcyy5cvZ9N/+eUXRk1N jXn8+DFD9F2UGhP7+fkBAPbt26dUC9zVeHl5sd3Y1njnnXcwc+ZMiEQi7Nu3D6ampm13RdTU4Orq ioyMDGRkZEAmk8HHx4dNr6urk+vSAoCOjo7K1zx8+HB2BrnpPolEAgBKl90UCwsLcLlcNo/mDBs2 DB4eHrC3t4e3tzcWLlwIT09Parle14ktPz8/tsvanQGsLFZWVpDJZEoFnLq6OnR1dWFgYAAASE1N hbGxcadeT2uz5033dbTs9mbl1dXVcf78eVy6dAnx8fGYNm0aPDw8kJSURE/+6zImVnUM3FN48OAB Nm3ahC1btmDJkiXseLeRsrIyudepqamwt7eHpaUluFwuTpw48cqvubPKrqura7HP3d0d8fHxuH79 OpKTk5Gfn09P/usaxD2F1ia2GrudUqkU8+fPx+eff46QkBAIBAKEhoa2mME+fvw4ioqKsHbtWpSX l8PPzw9aWloIDQ1FWFgYLly4AKlUitzcXIjF4i6vU2eUbW5ujnPnzqGgoAAVFRUoKSnB3r17kZ+f j8rKSly+fBlcLhdGRkb05FMQdy+XLl2Cnp6e3GZhYQEA2Lp1KyQSCT799FMAwNdff41Dhw7h4sWL 7PkTJ07E559/Dmtra9y8eROXLl2CpqYmO5sdGhqKJUuWQF9fHxMmTMCdO3deSb1etuzFixfDzMwM NjY2CA4ORmlpKRITE+Hs7AwjIyPExcXhyJEj0NbWpie/D9GlCyD2RX+JdydOUfm8F2XPkfnrr/Bb uLzTr0kgEODjjz9GYGAgvftEn6DLf7F15dwplc/R5fIxxnMKvTsE0d1BHLD8S7rDBEFjYoIgum1M TBAEtcQEQXTnmLizIFcXQfTy7jS5ugiil7fE5OoiiD46Jn5Vrq6rV6/C19cX1tbW0NXVhbW1NRYu XIjff/9dLr+JEyfKnXfx4kXo6enJ/VqsLWpqarBhwwYMHz4curq6GDhwIN5///1O+clnT/B/Ea95 S9xWAL8KV1dERAT27t2LL7/8EmvXroWBgQEeP36MixcvQldXt828Hz58iD/96U/45ptvMGHCBIX1 Wbp0Ke7evYu4uDhYW1ujpKQEN27c6JTVVD3B/0VQEHeLq+uHH37AP//5T/z6669yLfTgwYPxzjvv tHnes2fPMGXKFCxfvhxz585VWLf6+nr861//wrlz51hTiImJCYYNG9Yp9478X9Sdfml6o6sLADZs 2ICQkBCVdLi1tbXw9fXFO++8g9WrVyt1jkwmg1QqxcOHDxV2uTvD/6UoH/JyURC3oDe6ugDg559/ xttvv610fgzDIDAwENra2ti5c6fS52lqaiIgIACLFi3C8uXL21y51Fn+r/byIS8XBbHKgdydooHW ljQ2WiJra2tRWFgIPT099vhvv/1WbhLMw8NDLr/8/HwcO3YMU6ZMgYaGhkrXEhsbi/j4eFy6dAnO zs5wdXWVEwQ0rg1eu3Yt+vfvD3Nzc6xdu7aFpeNvf/sb5s2bhxEjRrQ6ZleUT35+PmprazFlyhQY GhrCwcEBAoGAIoWCuPVA7gmuLoZh5LbGINbU1ISZmRkyMzPZ46dPn47S0lKUlpZizZo1LfIzMzPD 3r17sWLFCly5ckWla1FXV8fMmTORnp6OGzduwMbGBiKRCP/85z8ByDu4LC0tYWlpiVmzZuHFixdy +SjSESnKp6mXa9asWbhw4QJFCU1stQzk3uLqcnBwwIkTJzBnzpwWE2FtBYu/vz/EYjH+9Kc/ITU1 FUOGDGHThEKh3FdGkZGR+Pzzz1vkMXbsWIwdOxZvvPEGDhw4gL/85S+d5v9SlA95uaglVore4uoK Dw/HkSNHcP78eZUnxEaNGgUfHx9UVlay+2/duoW6ujp2ay2AmzJ48GDWwtFZDi5l8yEvFwVxr6A9 VxcAvPvuu/j000/xwQcf4Msvv0Rqairy8/Nx5swZHDt2DDwer/WbqqaGf//733jx4gXmz5+v8Doq Kiowd+5cHDlyBA8ePEBubi4SEhIQFRXFnt9Z/i9F+ZCXi7rTvYrGia2mGBsby/1plS1btmD8+PGI jY3Fzp07UV1dDTs7O0yfPh2LFy9uM29DQ0MkJSVh7NixiIyMxKpVq9r9MLGzs8PmzZuRlZWFuro6 vPXWW9ixYwdmzpzJHrd69WpwuVwsWbIEv//+O958802EhYWpNIOuKJ9GL1dYWBhevHgBOzs78nL1 cHrFAoie6OoiCGqJVYRcXQTRi1tigiDahsweBEFBTBAEBTFBEB3mtfqKiVxdRF/ktZrYIlcXQS1x L4dcXQSNifsoL+Pqio+Ph6urK/h8PoYOHYoNGzageecmKysLU6ZMQb9+/fD222+3KkA4cOAA+Hw+ Hj9+LLe/trYWq1atgqWlJUxMTPDhhx+2+HvLilBUvjJ16M78CWqJFQZwR11dt27dwq5duxAREYHh w4fj0qVLCAoKwptvvokFCxYAAIqKiuDm5oa5c+di27ZtuHjxIgICAqCjowMfHx+UlpbiL3/5C65e vYry8vIWZURERODChQs4evQogAYXl6enJ9LS0lr4wFpDUfnK1KE78ydoTCzHvugvoampqbKrC2j4 xVhrfyCOYRi5YJo3bx7Ky8uRmJgIoGFFU0pKCi5fvsweExISgps3b+LGjRvIysrC9u3bsXTpUlhb W+O3335jly8yDAMej4fjx4+zsr0nT57A0tISycnJmDx5ssI6KypfmTp0Z/5EH2uJExMTsW/fvnaP aW+ZY6OrqzNVP81bQ2NjY7mF+omJiS1anJkzZ+Lvf/87SkpKYGVlhejoaDx9+rRF3gUFBaioqIC5 uTm7z9TUFG5ubjh+/LhSQayo/H79+imsQ3fmT/SxMXFPdXU15fr16xg9ejT7+vfff4eVlZXcMTY2 NgCgcI2usbEx1NXVkZ6eLrdfX18feXl5Sl1PR8pvXofuzJ/og2NiPz+/hq5xsxa5J4gGzpw5g//8 5z84ffo0gAaL5bNnz1pocQ0MDKCmpobi4uJ289PQ0ICfnx8+//xzmJiYwMzMDHFxcbhy5Qqsra0V Xk9Hym9eh+7Mn+iDLXFbLXJPCOCioiIEBQVhy5YtMDQ0ZMfb+vr6KCkpkTtWIpFAJpPBxMREYb6x sbFwdXWFj48POwPs5+cHU1NTxW+uiuW3VofuzJ/ow0HcGMiNwdvdAVxfX48ZM2bA1dUVQUFBcmlm ZmbIyMiQ25eTkwMOh4NBgwYpzLtfv3749ttvUVJSgvv37+Ozzz5DZmamXBdWKBRCQ0OD3TZv3qxy +e3VoavzJ17TIO4pLTDDMFiwYAGqq6sRHx/fIt3b2xv//ve/5fYdPXoUnp6e4PP5Kpf36NEjXLly Re4vS7Tn7lKmfEV16Or8idc4iHsCISEhuHbtGg4ePAiZTMZ6umSyhh+OfPLJJ8jIyMCyZcuQk5OD w4cPY8uWLXKBUFNTg+rqavb/NTU1bFpCQgLS09Px5MkTnD59Gu+99x6CgoLg6Oio1PUpU76iOnRn /oRyLclrQ3zUGib73u0ObfFRa1rkl56ezgBodUtPT5c7zsPDg9HX12fGjBnDJCcns2l5eXmtnl9Q UMAwDMMsXbqUGTRoEKOnp8cIhUImNjZW5Xq3V76ydejO/In2ee1+7EGuLqKv8dr97JJcXURfgxxb BEETWwRBUBATBEFBTBCvK2/QLVAdcnURPQma2OoA5OoiqCXu5ZCri6AxcR/lZVxdrq6uiIiIoJtI UEvcnQHcUVcX0LCQwMHBgW4kQUH8qsjKylbZ1cXTN4BUWt9q2sqVK+mmEtSdflU0urrenTiF3dw8 31co22uPiRMnYtu2bexrgUCA9evXQyAQgMfjQSgU4qeffkJ0dDTs7e3B5/Ph4+PD/kH02tpafPrp p7CxsYGuri7s7Oxw4MAB+e58fT3Cw8MxZMgQGBsbIygoCLa2tsjKygLQsIIqJCQEgwcPxoABA/DJ J5+gouKPGfjvv/8eAoEAXC4X1tbWCA8Pp4eBgrh38ipcXQBw4cIFxMXFITMzE0OHDoWLiwtyc3Nx 8uRJpKWlISsri23BNTU1YW1tjWPHjuHevXuYN28e5s+fj4cPH7L5hYWFISUlBcePH0daWhrU1NTw 6NEjNn3x4sXIysqCWCyGWCzGw4cP2fyfP38OX19fLFiwAHl5eUhKSsK0adPoYaAgJtpj9uzZcHJy gomJCUJDQ8EwDEJDQ2FpaQlbW1vMnz8f165dY49ftGgRHBwcMHToUISHh8PCwgK3b98GAFRVVSEm JgY7d+7EyJEjYWFhgejoaPbckpIS7N27F2vXrkX//v1hbm6OtWvXIimpYSIuPz8ftbW1mDJlCgwN DeHg4ACBQEBvEo2JCWUZPnw4G4xN90kkEvZ1UVERDh48iOvXr+PZs2d4+vQpKisrAQDZ2dmQSqVw dnZmj2+qks3IyIBMJoOPjw+7r66uju1ODxs2DB4eHrC3t4e3tzcWLlwIT09PemOoJSaUpbW/9tB0 n0QigVAoRH5+PlavXo2kpCSMHDlSLiClUimkUmmr+RsYGAAAUlNTkZOTg5ycHOTl5eH58+f/mwdQ x/nz53HixAloaWlh2rRpcgFPUBATL0laWhqKi4uxadMm2Nvbg8fjyQW5lZUVOBwOrl692ur5lpaW 4HK5OHHiRLvluLu7Iz4+HtevX0dycrJCdzZBQUwoycCBA1FWVobY2FgUFRUhISEBd+/eZdN5PB4C AgLw8ccf4/bt2ygsLMS6devYdC0tLYSGhiIsLAwXLlyAVCpFbm4uxGKx3Jg5Pz8flZWVuHz5Mrhc LoyMjOjmUxATnYGdnR02bdqENWvWwM7ODklJSZg0aZLcMdu3b4eHhwe8vb3h5OTEyvnU1Boeg9Wr VyM0NBRLliyBvr4+JkyYgDt37gAASktLkZiYCGdnZxgZGSEuLg5HjhyBtrY23fzuHmrRAgjV6Suu roKCApiamqKyspKCsRdDs9MdpC+4uu7cuQMrKysKYGqJid7CgwcP8PDhQ7i7u6OgoAAzZszAokWL 6C8y0JiY6C2UlpYiMjISpqamEIlEmDdvHgUwtcQEQVBLTBDES0ETWx2AHFsEdad7OeTYIqgl7uWQ Y4ugMXEf5WUcW46Ojjh06JDSZQkEAuzevbvrPqiqqthfdBHUEr82Afwyjq2eRnBwMPT09BAVFUVv LgVx36SzHVsEQd3pV0hXOLaaoowvCwBOnTqF4cOHg8/nw8vLCxkZGXLd7Y0bN2LMmDHQ09ODk5OT nAVEJpMhMjIStra2MDQ0xNSpU/H48WMAQEhICHbv3o1t27ZBQ0ODXe1EDi4K4j5DVzu2lPFlAQ3K nEOHDuHu3bswMTGBu7s7a/IAgJSUFMTGxiI7OxtCoRD+/v5s7yEiIgJJSUk4evQo0tLSoK6uDi8v L9TV1WHr1q0IDAzEsmXLUFdXhy+++AIAObgoiAmVaM+X1UhQUBAcHR1haWmJPXv2gMPh4PDhw2z6 nDlz4OzsjAEDBiAsLAwFBQV49OgRqqqqEBUVhZ07d8LBwQFWVlY4cOAAiouLcepU6ws7yMFFY2JC RdrzZbWGlpYW3NzccP/+/VbTLSwswOVyIZFIkJmZCYZh4OTk9Md4ncfD6NGj8eDBg1bPJwcXtcSE CijyZbUXyFpaWm2mN+p6qqurIZVKIZPJWpzf1rJEcnBREBMqoMiX1UjTH9sxDIPbt2/D3t5eYf42 NjaQyWRyE1319fUQi8VwdHSUa2kbIQcXBTGhAGNjY2RnZ4NhGIW+rEaio6MhFotRWFiIzz77DFKp FL6+vgrLMjAwYH1bYrEYT58+RXBwMMzMzNgusLm5Oc6dO4eCggJUVFSQg4uCmFBESEgIduzYgdmz ZyvlywIADw8P+Pr6ws7ODhkZGfjhhx+goaGhVHkxMTHw8vKCSCTCiBEjIJFIcObMGTZ98eLFMDMz g42NDYKDgwGQg6unQgsgOkBfcWwRfQOane4gfcGxRVBLTBAEjYkJgqAgJggKYoIgejM0sdUByLFF 9CRoYqsDkGOLoJa4l0OOLYLGxH2Ul3FsRUZGwsDAAGVlZa2mP3/+HDweDzExMXLncDgcdjMxMYGv r6/cuuPIyEhMnDhRqetvnp+5uTkmT56MlJQU1T/oyNFFQdwbA7jRsdXU+NF0cxg1Wm5RQXPKysrw zTfftJr29ddfQyKRtNg/fvx4lJaWoqSkBGfPnkVtbS0mT57c4QBqzK+4uBjHjh3D2LFjIRKJsGbN GpXyCQ4OJrMHdad7Nl3h2DIxMUF0dDSWL18OHR0duQ+ImJgYWFpatjhHQ0MD+vr6AABDQ0Ps378f xsbGSE9Ph1AoVLleTfPr168fXFxcMGrUKPj5+cHf3x8ODg705lNL3PvpKseWm5sbhgwZgj179sjt 37VrF9zd3WFlZaUwDx0dHaipqbW7rlhVRCIRXFxcsH//fgCKHWCtObqU9YYRFMSvhK5ybHE4HKxa tQpfffUV6usbWuxG59WKFSsUnl9YWIjly5fDzc0No0aN6tRrEwgErIhPkQOsNUeXst4wgoK41yMS icDj8XDw4EEAQEJCAoYNG9ZmUJ4/f15uYksikeDs2bOdfl2mpqZ49uwZ+1oZB1hzOnIOQWPiXgeH w0F4eDgiIyPx4YcfYtOmTYiNjW3zeA8PD3Yd8PTp01FfX9+pXelGnjx5AltbW/a1qg6wjp5DUEvc K5kxYwZqamoQGBgIPp+P8ePHtzM+V2fdWuHh4UhMTMSvv/7a5vFCoRAaGhrstnnzZqWuKTU1lZ3U 6ogDrKPeMIJa4l6Juro6VqxYgaCgIFYJqwxCoRDvvvsu1q1bx3bHm3Pr1i2Vr+f06dPIyclBYGAg AHkHWNMeRHOafp2m7DkEtcR9hoCAAJw6dQoikUil88LDw/Hdd9+1qZ5VRH19PSoqKlBeXo5ffvkF mzdvxpw5c7Bjxw72qydlHGDNHV3KesMICuI+g6amJj744AOVW6tJkyZh1KhRWL9+fYfKvXTpEvT0 9GBoaIjp06fj7t27+PHHH+X0s8o4wJo7upT1hhEdmEehBRCqQ44tgsbEfQBybBHUEhMEQWNigiAo iAmCgpggiO7ltZrYIjcW0Rd5rSa2yI1FUEvcyyE3FkFj4j7Ky7ix4uPj4erqCj6fj6FDh2LDhg1o 3rnJysrClClT0K9fP7z99tut/q75wIED4PP5ePz4sdz+2tparFq1CpaWljAxMcGHH36I0tJSleqn qHxl6tCd+fcmampqwOFwkJWVRS3xqwzgRjdWW2aO8rJS/Cz+scX+W7duYdeuXYiIiMDw4cNx6dIl BAUF4c0338SCBQsANCy/c3Nzw9y5c7Ft2zZcvHgRAQEB0NHRgY+PD0pLS/GXv/wFV69eRXl5eYsy IiIicOHCBRw9ehQAsHTpUnh6eiItLU2pn2QqKl+ZOnRn/gSNieXYF/0lNDU1VXZjAQ2/0ApY/mWL /QzDyAXTvHnzUF5ejsTERADAhg0bkJKSgsuXL7PHhISE4ObNm7hx4waysrKwfft2LF26FNbW1vjt t98wZMgQNm8ej4fjx49jwoQJABrW9VpaWiI5ORmTJ09WWGdF5StTh+7Mvze2xNra2sjMzFRKp/Ta dacTExMhEona3dpaggd0jRureWtobGws11VMTEzE9OnT5Y6ZOXMmbt68iZKSElhZWSE6Ohp6enot 8m5cAWRubs7uMzU1hZubG44fP670PWuvfGXq0J35N/L9999DIBCAy+XC2tpazqRZU1ODkJAQDB48 GAMGDMAnn3yCiooKuQ/arVu3YtiwYTA2NsbUqVPZYYtMJkNkZCRsbW1haGgolwY0aIk2btyIMWPG QE9PD05OTrh27dofQ636eqxcuRIWFhYwMjLCwoUL5YZCirxiAoEABw4cgJeXF/h8Ps6dO4ePPvoI AQEBcsdt3boV3t7evT+I/fz8WlSuKbNmzcKsWbPaTO8qN1ZTrl+/jtGjR7Ovf//99xafyDY2NgCA /Pz8dvMyNjaGuro60tPT5fbr6+sjLy9PqevpSPnN69Cd+QMNzm1fX18sWLAAeXl5SEpKwrRp09j0 xYsXIysrC2KxGGKxGA8fPsTKlSvZ9I0bNyIhIQEJCQlIT0/HrFmz0L9/f3a4kpSUhKNHjyItLQ3q 6urw8vKSWwudkpKC2NhYZGdnQygUwt/fn+3NhYeH4/vvv0dycjLEYjG4XC57nrJesWXLlmH27Nm4 du0axo0bh+nTp+PUqVOQSqXsMcePH4e/v3/rN4jphRw5coSZOnWq3JaQkKDwvPioNUz2vdsd2uKj 1ijM//Tp0wyPx2NKSkoYhmEYqVTKcDgc5saNGy2OVVNTY3744Qf2dUFBAQOA+e233+SOmz59OmNh YcFcvnyZycrKYsLCwhgjIyNmzJgxCq9HlfLbqkN35t/IL7/8wqipqTGPHz9ukVZcXMyoqakx6enp 7L4rV64wgwcPZhiGYWpqahg+n8+kpqa2OLeyspLR1tZmfvrpJ3bfixcvGENDQ+bYsWMMwzCMi4sL s2vXLjY9JyeHAcDcu3ePqaqqYrS1teXyrqqqYgAwmZmZrdbFysqK2b9/P/vaxcWF2b59u9wx1dXV DJ/PZ65evcowDMM8e/aM0dHRYZ4/f95qnr1yYsvPz69hjLtvn1It8KugqKgIQUFB2LJlCwwNDdnx tr6+PtutbEQikUAmk8HExERhvrGxsVi6dCl8fHxgYmKCBQsWwM/PD0VFRYrHSiqW31odujP/RoYN GwYPDw/Y29vD29sbCxcuhKenJwAgIyMDMplMbr1zXV0d253OyspCZWUlnJ2dW+SbmZkJhmHg5OTE 7uPxeBg9enSbUgULCwtwuVxIJBJkZ2dDKpXK5d186KCMV6ypYxwAtLS0IBKJcOLECbi5ueHUqVOY MGECDAwM+tZXTH5+fmzwdncA19fXY8aMGXB1dUVQUJBcmpmZGat6bSQnJwccDgeDBg1SmHe/fv3w 7bffoqSkBPfv38dnn33WYtKkPW+WsuW3V4euzl8R6urqOH/+PE6cOAEtLS1MmzaNDdrGBzs1NRU5 OTnIyclBXl4enj9/DgDs13GtjcGrq6shlUohk8laBJG2trbCeZCamhpIpVK5bm/zD7OOesWmT5/O znskJye3mHfoE0HcU1pghmGwYMECVFdXIz4+vkW6t7c3/v3vf8vtO3r0KDw9PcHn81Uu79GjR7hy 5Qrmzp0r91VXXV0du33++ecqla+oDl2dv7K4u7sjPj4e169fR3JyMvLz82FpaQkul4sTJ060es7Q oUNRX18PsVjcIs3GxgYymazFRJVYLIajo6PC67G2tgaHw8HVq1dbTW/qFbO3twePx1Pa1PLee+/h v//9L+7du4dLly61q2miH3u8JCEhIbh27RoOHjwImUyGiooKVFRUsJ/un3zyCTIyMrBs2TLk5OTg 8OHD2LJli1wg1NTUsH87qaamBjU1NWxa42TMkydPcPr0abz33nsICgpS6iFTtnxFdejO/AGgpKQE e/fuRX5+PiorK3H58mVwuVwYGRlBS0sLoaGhCAsLw4ULFyCVSpGbm8sGrYmJCaZOnYpFixZqY+K5 AAAeGUlEQVTh0aNHePHiBY4fP46KigoYGBggICAAH3/8McRiMZ4+fYrg4GCYmZmx3fX24PF47Pm3 b99GYWEh1q1bx6a/jFdMU1MT//d//4e//vWvcHV1bbMr3WsntjpKZ09spaenMwBa3ZpOtKSnpzMe Hh6Mvr4+M2bMGCY5OZlNy8vLa/X8goIChmEYZunSpcygQYMYPT09RigUMrGxsSrXu73yla1Dd+af lZXFTJkyhRkwYACjra3NjBw5kjlz5ozcBNvmzZuZt956i+FyuYyVlRUTFxcnN/n10UcfMf3792cM DAwYd3d3dpKssrKSWbJkCWNqasoMGDCAmTNnjtykW/OJLYZhGD09PebWrVsMwzBMRUUFExQUxPTv 358ZNGgQs2rVKsba2pqd2Nq0aRPTv39/xtDQkPH392f8/PyYHTt2tJt/IydPnmQAMPv27Wv3/rx2 P/YgN1bPQyAQIC0trcX+2bNnv9Z/ryk7OxtvvfUWCgsL222JX7ufXZIbq+fRlgv7dfdSHzt2DB4e Hu13pUGOLYLo0T2UwMBAfPzxxxTEBNHbyMzMhK2tLfLz8zFw4EAKYoLoy9BXTATRyyF5fAcgVxfR k6DudAcgVxdBLXEvh1xdBI2J+ygv4+pydXVFREQE3USCWuLuDOCOurqAhoUEDg4OdCMJCuJXRVZW tsquLp6+AaTS+lbTmpooCIK6011MV7i6Jk6ciG3btrGvBQIB1q9fD4FAAB6PB6FQiJ9++gnR0dGw t7cHn8+Hj48PKwdQxudUX1+P8PBwDBkyBMbGxggKCoKtrS2rV1XkqmrPc0VQEPcqXoWrCwAuXLiA uLg4ZGZmYujQoXBxcUFubi5OnjyJtLQ0ZGVlsS24Mj6nsLAwpKSk4Pjx40hLS4OamhoePXrEprfn qlLkuSIoiIlWmD17NpycnGBiYoLQ0FAwDIPQ0FBYWlrC1tYW8+fPl1vQvmjRIjg4OGDo0KEIDw+H hYUFbt++DQCoqqpCTEwMdu7ciZEjR8LCwgLR0dHsuY1rdteuXYv+/fvD3Nwca9euRVJSw0Rcfn4+ amtrMWXKFBgaGsLBwQECgYDeJBoTE8oyfPhwNhib7pNIJOzr9nxOinxQilxV7XmuCGqJCSVobVle 032KfE51dXXt+qAUuara81wRFMREJ6DI52RlZdWuD0qRq6qR1jxXBAUx0Qko8jkp8kEpclW157ki KIiJTsDOzg6bNm3CmjVrYGdnh6SkJEyaNEnumO3bt8PDwwPe3t5wcnJi5Xxqag2PwerVqxEaGool S5ZAX18fEyZMwJ07dwA0qF8TExPh7OwMIyMjxMXF4ciRI+2qXYlXNNSiBRCq01dcXQUFBTA1NUVl ZSUFYy+GZqc7SF9wdd25cwdWVlYUwNQSE72FBw8e4OHDh3B3d0dBQQFmzJiBRYsWqfwXGQgaExPd RGlpKSIjI2FqagqRSIR58+ZRAFNLTBAEtcQEQbwUNLHVAcixRVB3updDji2CWuJeDjm2CBoT91Fe xrHl6OiIQ4cOKV2WQCDA7t27u+6DqqqK/UUXQS3xaxPAL+PY6mkEBwdDT08PUVFR9OZSEPdNOtux RRDUnX6FdIVjqynK+LIA4NSpUxg+fDj4fD68vLyQkZEh193euHEjxowZAz09PTg5OclZQGQyGSIj I2FrawtDQ0NMnToVjx8/BgCEhIRg9+7d2LZtGzQ0NNjVTuTgoiDuM3S1Y0sZXxbQoMw5dOgQ7t69 CxMTE7i7u7MmDwBISUlBbGwssrOzIRQK4e/vz/YeIiIikJSUhKNHjyItLQ3q6urw8vJCXV0dtm7d isDAQCxbtgx1dXX44osvAJCDi4KYUIn2fFmNBAUFwdHREZaWltizZw84HA4OHz7Mps+ZMwfOzs4Y MGAAwsLCUFBQgEePHqGqqgpRUVHYuXMnHBwcYGVlhQMHDqC4uBinTrW+sIMcXDQmJlSkPV9Wa2hp acHNzQ33799vNd3CwgJcLhcSiQSZmZlgGAZOTk5/jNd5PIwePRoPHjxo9XxycFFLTKiAIl9We4Gs paXVZnqjrqe6uhpSqRQymazF+W0tSyQHFwUxoQKKfFmNNP2xHcMwuH37Nuzt7RXmb2NjA5lMJjfR VV9fD7FYDEdHR7mWthFycFEQEwowNjZGdnY2GIZR6MtqJDo6GmKxGIWFhfjss88glUrh6+ursCwD AwPWtyUWi/H06VMEBwfDzMyM7QKbm5vj3LlzKCgoQEVFBTm4KIgJRYSEhGDHjh2YPXu2Ur4sAPDw 8ICvry/s7OyQkZGBH374ARoaGkqVFxMTAy8vL4hEIowYMQISiQRnzpxh0xcvXgwzMzPY2NggODgY ADm4eiq0AKID9BXHFtE3oNnpDtIXHFsEtcQEQdCYmCAICmKCoCAmCKI3QxNbHYAcW0RPgia2OgA5 tghqiXs55NgiaEzcR3kZx1ZkZCQMDAxQVlbWavrz58/B4/EQExMjdw6Hw2E3ExMT+Pr6yq07joyM xMSJE5W6/ub5mZubY/LkyUhJSVH9g44cXRTEvTGAGx1bTY0fTTeHUaPlFhU0p6ysDN98802raV9/ /TUkEkmL/ePHj0dpaSlKSkpw9uxZ1NbWYvLkyR0OoMb8iouLcezYMYwdOxYikQhr1qxRKZ/g4GAy e1B3umfTFY4tExMTREdHY/ny5dDR0ZH7gIiJiYGlpWWLczQ0NKCvrw8AMDQ0xP79+2FsbIz09HQI hUKV69U0v379+sHFxQWjRo2Cn58f/P394eDgQG8+tcS9n65ybLm5uWHIkCHYs2eP3P5du3bB3d0d VlZWCvPQ0dGBmppau+uKVUUkEsHFxQX79+8HoNgB1pqjS1lvGEFB/EroKscWh8PBqlWr8NVXX6G+ vqHFbnRerVixQuH5hYWFWL58Odzc3DBq1KhOvTaBQMCK+BQ5wFpzdCnrDSMoiHs9IpEIPB4PBw8e BAAkJCRg2LBhbQbl+fPn5Sa2JBIJzp492+nXZWpqimfPnrGvlXGANacj5xA0Ju51cDgchIeHIzIy Eh9++CE2bdqE2NjYNo/38PBg1wFPnz4d9fX1ndqVbuTJkyewtbVlX6vqAOvoOQS1xL2SGTNmoKam BoGBgeDz+Rg/fnw743N11q0VHh6OxMRE/Prrr20eLxQKoaGhwW6bN29W6ppSU1PZSa2OOMA66g0j qCXulairq2PFihUICgpilbDKIBQK8e6772LdunVsd7w5t27dUvl6Tp8+jZycHAQGBgKQd4A17UE0 p+nXacqeQ1BL3GcICAjAqVOnIBKJVDovPDwc3333XZvqWUXU19ejoqIC5eXl+OWXX7B582bMmTMH O3bsYL96UsYB1tzRpaw3jKAg7jNoamrigw8+ULm1mjRpEkaNGoX169d3qNxLly5BT08PhoaGmD59 Ou7evYsff/xRTj+rjAOsuaNLWW8Y0YF5FFoAoTrk2CJoTNwHIMcWQS0xQRA0JiYIAlCTZKzD6Mh8 0L/0L/3bO//lCNbnUXeaIGhiq3dgpZYDD93r0GKq5PbLGHUkVb+P/8oG0hNBUBD3ZNx1b8JuiEmr bixRbgqOV75HgUxQEPdktJkK6OiYt9ivq6sLq8EDMe230wCnpVqnmqOL81VueCwdQk8MQUHcE2l0 Y7UWwADAe6MO72lfwc6KOS3SvEfowncUF0MHaKCsUoak9ArEXy+XO2aQgTpC3zOAo5kWnpTW41+3 ynH2P/Jd+vcddfH5ZAPM2vkUBWXSP94gNeDP7/LxnoMutN/gIPW3Gmw68xySGuWnMhSVr0wd2qOt a1e27gQF8UsHcKMbqy0zR3lZKX4W/9hiv8MgTfyfExe7r5Uj51kd3h6ihZVTDFEskeLE3YYldga6 atgVMACnfqnA1rOlcLHQxpeifqipK8bljGroaXGw8gNDOA3WAlez5U8sP3HXh8BSC58fLgYAfPae Ab6Z3R9zdxcqVT9F5StTh7ZQdO2KyiYoiDtEZ7qx7uXX4s/7i9jXJ3+uhPMQLbhZa7MB4DOKi9yS enx98QUAIO95BYYYvYG5Y3m4nFENfR01PJNI8ed9hTi2+M0WZfzJhYuQQ8XIeNqwIij8aDGSlwzE 2KFauJldo7C+ispXpg5toejaFZVNvIZBPOEtHUwZodvuMWf/U4mUNrprjW6srlDrNFJWKQNX6w25 az6eLv+XIs79pxIfjdEDX5uD/FIp/n6uDP24LX93Y6SnBh0NDp6++KOL+kwiQ/rvNXjHVkepIFZU /otqRmEd2qK9a+9o2YTq9KpfbF18UIVTP1d2KICBrnNjNWWEuSZ+ffJHS2/CV0f+c/lWPLek4XV/ nnq7eZVWyiBlANs3NeT2S2oYmPDVlbqejpTfvA4d5WXqTvTRIG4vkBUF8KtgrJUWhvbXwNGfGvzQ nP+NC5tPQklqGMgYQF+3/QdZKgN+uF+FpZ76GDVYE6YG6ljswYfzYE0Y6ip+6zpSfvM6dJSXrTvR h4O4tUDuCQFsoKuGVR8YYtv5MpT/r5vIAJBUM+DryN9mHQ0O1DhAiUSqMN//d+Y5fv69Fl/5GyN6 pjHKqmS4+KAKRRKZwnNVLb+1OnSUzqg70ccnti4+qMIb6pz/BXH3BrA6B9gwrR9+zqtF0h35MWBh uRSD+72B6032mRqogwFQVK74QX5RzWB1concvpiPjPGw4A/1zZ55/TFsoCb7+ptLZThwU6JS+e3V ob382+Nl60708SBubIF7Al9MNYSWOgdrT5S0SLv2qAqT7HVw8PYfD73HWzpIzalBRa3qrZ254Rtw HqyFv58tZfctiC9q83hly2+vDu3l3x6dXXeiD3WnexLLvfThZK6FVUkl4HA40NZo2Bq/NT0irsDg fhr4dJI+TPXV4TlMB7OFPOy/+cePKTTUAc03Gs7QVOdAo8lw8T17HdiaaMBYTw2uVtrY/qExjt2p QFZRvVLXp0z5iurQHu1duzJlEy/Pa7WKaTE3rkNaHaDB5BFT8We5fTYDNPDtnwe0evxHcYV4VFjH HvfXSfp4601N/PasDnuvl+Pqo4bvSfvz1HAquOXvtSdH/xclFTKETNKHx1s60NNSQ1ZRHU79XImj P1WodO3tla9sHVpD0bUrKpugIH5lQfyi7Dl+TL2HXZIZ9MQQNCbubjrixqrh6OFclSs9LQS1xARB dD5qAHDRv+FPadK/9C/92/v+JdslQfSFlpggiN4LSQE6QO6j+7j5w0lUV8p/1aOupg5P3zkYaG5B N4l4ZVB3ugN8F7cVJv2NWnV15f+3ABOmfkiBTFBL3JOpqiiHzuBBLfbr6upi0MA3ceHofkiZlgsU dLh6EHpOxeChdnQTCRoT90QaXV2tBTAA1NfW4ObZ1v/esKurKyIiIugmEtQSd2cAd9TVBQDe3t5w cHCgG0lQEL8qOtPVBQArV66km0pQd/pV0ejqenfiFHZz83y/3QBWxMSJE7Ft2zb2tUAgwPr16yEQ CMDj8SAUCvHTTz8hOjoa9vb24PP58PHxQVFRwzLB2tpafPrpp7CxsYGuri7s7Oxw4MAB+e58fT3C w8MxZMgQGBsbIygoCLa2tsjKygIA1NTUICQkBIMHD8aAAQPwySefoKLijxn477//HgKBAFwuF9bW 1ggPD6eHgYK4d/IqXF0AcOHCBcTFxSEzMxNDhw6Fi4sLcnNzcfLkSaSlpSErK4ttwTU1NWFtbY1j x47h3r17mDdvHubPn4+HDx+y+YWFhSElJQXHjx9HWloa1NTU8OjRIzZ98eLFyMrKglgshlgsxsOH D9n8nz9/Dl9fXyxYsAB5eXlISkrCtGnT6GGgICbaY/bs2XBycoKJiQlCQ0PBMAxCQ0NhaWkJW1tb zJ8/H9euXWOPX7RoERwcHDB06FCEh4fDwsICt2/fBgBUVVUhJiYGO3fuxMiRI2FhYYHo6Gj23JKS Euzduxdr165F//79YW5ujrVr1yIpqWEiLj8/H7W1tZgyZQoMDQ3h4OAAgUBAbxKNiQllGT58OBuM TfdJJH9YM4qKinDw4EFcv34dz549w9OnT1FZ2WA/yc7OhlQqhbOzM3s8h/PHsv+MjAzIZDL4+Piw ++rq6tju9LBhw+Dh4QF7e3t4e3tj4cKF8PT0pDeGWmJCWZoGXGv7JBIJhEIh8vPzsXr1aiQlJWHk yJFyASmVSiGVtu62MjAwAACkpqYiJycHOTk5yMvLw/Pnz/83D6CO8+fP48SJE9DS0sK0adPkAp6g ICZekrS0NBQXF2PTpk2wt7cHj8eTC3IrKytwOBxcvXq11fMtLS3B5XJx4sSJdstxd3dHfHw8rl+/ juTkZOTn59PNpyAmOoOBAweirKwMsbGxKCoqQkJCAu7evcum83g8BAQE4OOPP8bt27dRWFiIdevW selaWloIDQ1FWFgYLly4AKlUitzcXIjFYrkxc35+PiorK3H58mVwuVwYGRnRzacgJjoDOzs7bNq0 CWvWrIGdnR2SkpIwadIkuWO2b98ODw8PeHt7w8nJCdXVDa4rNbWGx2D16tUIDQ3FkiVLoK+vjwkT JuDOnTsAgNLSUiQmJsLZ2RlGRkaIi4vDkSNHoK2tTTe/u4datABCdfZFf9lhV1fmr7/Cb+HyHlGP goICmJqaorKykoKxF0Oz0x2kI64uXS4fYzyn9Jg63LlzB1ZWVhTA1BITvYUHDx7g4cOHcHd3R0FB AWbMmIFFixYhKCiIbg6NiYneQGlpKSIjI2FqagqRSIR58+ZRAFNLTBAEtcQEQbwUNLHVAcixRVB3 updDji2CWuJeDjm2CBoT91FexrHl6OiIQ4cOKV2WQCDA7t27u+6DqqqK/UUXQS3xaxPAL+PY6mkE BwdDT08PUVFR9OZSEPdNOtuxRRDUnX6FdIVjqynK+LIA4NSpUxg+fDj4fD68vLyQkZEh193euHEj xowZAz09PTg5OclZQGQyGSIjI2FrawtDQ0NMnToVjx8/BgCEhIRg9+7d2LZtGzQ0NNjVTuTgoiDu M3S1Y0sZXxbQoMw5dOgQ7t69CxMTE7i7u7MmDwBISUlBbGwssrOzIRQK4e/vz/YeIiIikJSUhKNH jyItLQ3q6urw8vJCXV0dtm7disDAQCxbtgx1dXX44osvAJCDi4KYUIn2fFmNBAUFwdHREZaWltiz Zw84HA4OHz7Mps+ZMwfOzs4YMGAAwsLCUFBQgEePHqGqqgpRUVHYuXMnHBwcYGVlhQMHDqC4uBin TrW+sIMcXDQmJlSkPV9Wa2hpacHNzQ33799vNd3CwgJcLhcSiQSZmZlgGAZOTk5/jNd5PIwePRoP Hjxo9XxycFFLTKiAIl9We4GspaXVZnqjrqe6uhpSqRQymazF+W0tSyQHFwUxoQKKfFmNNP2xHcMw uH37Nuzt7RXmb2NjA5lMJjfRVV9fD7FYDEdHR7mWthFycFEQEwowNjZGdnY2GIZR6MtqJDo6GmKx GIWFhfjss88glUrh6+ursCwDAwPWtyUWi/H06VMEBwfDzMyM7QKbm5vj3LlzKCgoQEVFBTm4KIgJ RYSEhGDHjh2YPXu2Ur4sAPDw8ICvry/s7OyQkZGBH374ARoaGkqVFxMTAy8vL4hEIowYMQISiQRn zpxh0xcvXgwzMzPY2NggODgYADm4eiq0AKID9BXHFtE3oNnpDtIXHFsEtcQEQdCYmCAICmKCoCAm CKI3QxNbHYAcW0RPgia2OgA5tghqiXs55NgiaEzcR3kZx1ZkZCQMDAxQVlbWavrz58/B4/EQExMj dw6Hw2E3ExMT+Pr6yq07joyMxMSJE5W6/ub5mZubY/LkyUhJSVH9g44cXRTEvTGAGx1bTY0fTTeH UaPlFhU0p6ysDN98802raV9//TUkEkmL/ePHj0dpaSlKSkpw9uxZ1NbWYvLkyR0OoMb8iouLcezY MYwdOxYikQhr1qxRKZ/g4GAye1B3umfTFY4tExMTREdHY/ny5dDR0ZH7gIiJiYGlpWWLczQ0NKCv rw8AMDQ0xP79+2FsbIz09HQIhUKV69U0v379+sHFxQWjRo2Cn58f/P394eDgQG8+tcS9n65ybLm5 uWHIkCHYs2eP3P5du3bB3d0dVlZWCvPQ0dGBmppau+uKVUUkEsHFxQX79+8HoNgB1pqjS1lvGEFB /EroKscWh8PBqlWr8NVXX6G+vqHFbnRerVixQuH5hYWFWL58Odzc3DBq1KhOvTaBQMCK+BQ5wFpz dCnrDSMoiHs9IpEIPB4PBw8eBAAkJCRg2LBhbQbl+fPn5Sa2JBIJzp492+nXZWpqimfPnrGvlXGA Nacj5xA0Ju51cDgchIeHIzIyEh9++CE2bdqE2NjYNo/38PBg1wFPnz4d9fX1ndqVbuTJkyewtbVl X6vqAOvoOQS1xL2SGTNmoKamBoGBgeDz+Rg/fnw743N11q0VHh6OxMRE/Prrr20eLxQKoaGhwW6b N29W6ppSU1PZSa2OOMA66g0jqCXulairq2PFihUICgpilbDKIBQK8e6772LdunVsd7w5t27dUvl6 Tp8+jZycHAQGBgKQd4A17UE0p+nXacqeQ1BL3GcICAjAqVOnIBKJVDovPDwc3333XZvqWUXU19ej oqIC5eXl+OWXX7B582bMmTMHO3bsYL96UsYB1tzRpaw3jKAg7jNoamrigw8+ULm1mjRpEkaNGoX1 69d3qNxLly5BT08PhoaGmD59Ou7evYsff/xRTj+rjAOsuaNLWW8Y0YF5FFoAoTrk2CJoTNwHIMcW QS0xQRA0JiYIgoKYICiICYLoXmhiqwOQY4voSdDEVgcgxxZBLXEvhxxbBI2J+ygv49iaNWsW/vrX v7bYn5+fDw6Hg+LiYgCAo6MjDh069McHSie6rGpqarBhwwYMHz4curq6GDhwIN5//332z5d2BzU1 NeBwOMjKyqIHjFrirg/gRsdWW4aP8rJS/Cz+sVPLDQ4Ohp6eHqKiol46r6VLl+Lu3buIi4uDtbU1 SkpKcOPGDRgbG9MbTEHc9+gKx1Z3Ul9fj3/96184d+4cxo0bB6DB+TVs2DB6s6k73ffoKseWqrTm sgIaVDoHDhyAl5cX+Hw+zp07p9BxJZPJIJVKFepyZDIZIiMjYWtrC0NDQ0ydOhWPHz9m0/v374/L ly+zr3/88UfweDz2tUAgwMaNGzFmzBjo6enByckJ165dk/swWblyJSwsLGBkZISFCxfSA0dB3Pl0 lWNLVVpzWTWybNkyzJ49G9euXcO4ceMUOq40NTUREBCARYsWYfny5bhz506rZUZERCApKQlHjx5F Wloa1NXV4eXl1a6KtzkpKSmIjY1FdnY2hEIh/P392V5NeHg4vv/+eyQnJ0MsFoPL5dIDR0H8evK3 v/0N8+bNw4gRI6CrqwtAseMqNjYW8fHxuHTpEpydneHq6ooTJ06w6VVVVYiKisLOnTvh4OAAKysr HDhwAMXFxTh1SvkFIXPmzIGzszMGDBiAsLAwFBQU4NGjR6iursbXX3+NnTt3YuTIkbCwsEB0dDS9 mRTEvYfO/Mq+qbe6kaKiIvzjH//AjBkz4Onp2cJxpa6ujpkzZyI9PR03btyAjY0NRCIR/vnPfwIA MjMzwTAMnJyc/hjn83gYPXp0hyUEFhYW4HK5kEgkyM7OhlQqhbOzM5tO9g8K4l6DgYEB+zVSU8rL y6GhoQE+n/9S+avquBo7diz27duHBQsWsGPn6upqSKVSyGTyX6FpaWlBW1u7wx9GjYFaU1MDqVQK qVRKDwQFce9jxIgRuHz5covvfK9evQoHBwdoaGi0ea4y49Gmjit7e3vweDylWrnBgwezAWpjYwOZ TNZiIkosFsPR0REAwOVycf/+/Q7dA2tra3A4HFy9epUeCAri3kdAQADU1dXh5+eHtLQ05OXlISEh AeHh4di4cSN7nLGxMbKzs9nWrrnLqi0UOa4qKiowd+5cHDlyBA8ePEBubi4SEhIQFRWF+fPns72F gIAAfPzxxxCLxXj69CmCg4NhZmYGT09PAMC4ceOwa9cu5ObmIjc3F3FxcUrfAx6Px+Z/+/ZtFBYW sjPuBAVxj0dXVxfXr1+HgYEBfHx84OjoiJ07d+Lw4cN477332ONCQkKwY8cOzJ49G0BLl1VbKHJc 1dfXw87ODps3b8a4cePg4OCA6Oho7NixAx999BF7XExMDLy8vCASiTBixAhIJBLWew0AW7ZsgYmJ CYYPH46JEyfC2tq63V5Ec7Zv3w4PDw94e3uzY2Nra2t6QNobjtACCNUhxxbRk6BfbHUQcmwR1BIT BEFjYoIgKIgJotfz/wEjp8Ri6gsNowAAAABJRU5ErkJggg== "
+       id="image168"
+       x="24.206257"
+       y="103.30435" />
+    <rect
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect6467-0"
+       width="30.049107"
+       height="34.868301"
+       x="21.544643"
+       y="95.633186"
+       ry="2.2678576"
+       rx="2.2678576" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="23.423353"
+       y="100.38716"
+       id="text6475-4"><tspan
+         sodipodi:role="line"
+         id="tspan6473-4"
+         x="23.423353"
+         y="100.38716"
+         style="font-size:3.88055563px;stroke-width:0.26458332">File Structure</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="34.399376"
+       y="87.317703"
+       id="text6946"><tspan
+         sodipodi:role="line"
+         x="34.399376"
+         y="87.317703"
+         style="font-size:2.82222223px;stroke-width:0.26458332"
+         id="tspan6952">generate </tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="34.490326"
+       y="90.436005"
+       id="text6958"><tspan
+         sodipodi:role="line"
+         id="tspan6956"
+         x="34.490326"
+         y="90.436005"
+         style="font-size:2.82222223px;stroke-width:0.26458332">finger print</tspan></text>
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.7714085;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 72.883398,104.67324 c 0,0 2.010197,3.86576 8.607764,3.81422"
+       id="path4039-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.38570425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-4)"
+       d="m 82.40606,108.07511 c 2.834892,0.3608 3.053952,0.3608 3.053952,0.3608"
+       id="path5160-3"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.555874"
+       y="113.10316"
+       id="text6946-7"><tspan
+         sodipodi:role="line"
+         x="63.555874"
+         y="113.10316"
+         style="font-size:2.82222223px;stroke-width:0.26458332"
+         id="tspan6952-5">insert or update</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.565521"
+       y="116.11452"
+       id="text6958-9"><tspan
+         sodipodi:role="line"
+         id="tspan6956-6"
+         x="63.565521"
+         y="116.11452"
+         style="font-size:2.82222223px;stroke-width:0.26458332">based on finger</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.533482"
+       y="119.22321"
+       id="text7054"><tspan
+         sodipodi:role="line"
+         id="tspan7052"
+         x="63.533482"
+         y="119.22321"
+         style="font-size:3.17499995px;stroke-width:0.26458332">print</tspan></text>
+    <g
+       style="fill:#000000;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,73.943291,100.28828)"
+       id="g454">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path4"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path6"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path8"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path10"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path12"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path14"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path16"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path18"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path20"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path22"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path24"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path26"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path28"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path30"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path32"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path34"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path36"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path38"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path40"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path42"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path44"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path46"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path48"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path50"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path52"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path54"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path56"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path58"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path60"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path62"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path64"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path66"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path68"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path70"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path72"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path74"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path76"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path78"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path80"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path82"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path84"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path86"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path88"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path90"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path92"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path94"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path96"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path98"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path100"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path102"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path104"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path106"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path108"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path110"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path112"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path114"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path116"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path118"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path120"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path122"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path124"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path126"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path128"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path130"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path132"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path134"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path136"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path138"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path140"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path142"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path144"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path146"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path148"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path150"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path152"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path154"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path156"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path158"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path160"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path162"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path164"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path166"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path168"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path170"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path172"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path174"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -191,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 34,37 44,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path176"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path178"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path180"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path182"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path184"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path186"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path188"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path190"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path192"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path194"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path196"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path198"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path200"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path202"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path204"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path206"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path208"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path210"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path212"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path214"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path216"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path218"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path220"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path222"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path224"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path226"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path228"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path230"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path232"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path234"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path236"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path238"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path240"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path242"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path244"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path246"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path248"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path250"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path252"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path254"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path256"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path258"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path260"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path262"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path264"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path266"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path268"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path270"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path272"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path274"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path276"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path278"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path280"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path282"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path284"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path286"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path288"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path290"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path292"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path294"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path296"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path298"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path300"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path302"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path304"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path306"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path308"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path310"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path312"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path314"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path316"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path318"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path320"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path322"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path324"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path326"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path328"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path330"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path332"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path334"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path336"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path338"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path340"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path342"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path344"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path346"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path348"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path350"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path352"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path354"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path356"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path358"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path360"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path362"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path364"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path366"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path368"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path370"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path372"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path374"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path376"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path378"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path380"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path382"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path384"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path386"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path388"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path390"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path392"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path394"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path396"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path398"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path400"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path402"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path404"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path406"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path408"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path410"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path412"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path414"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path416"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path418"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path420"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path422"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path424"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path426"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path428"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path430"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path432"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path434"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path436"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path438"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path440"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path442"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path444"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path446"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path448"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path450"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path452"
+         style="stroke-width:27.17825317" />
+    </g>
+  </g>
+</svg>
diff --git a/src/doc/getting_started.md b/src/doc/getting_started.md
index 6805181e73a7f338fbacb74bdd9f734360404372..97dc1d28e6294cc765a0d5b75de25aa74cf693ed 100644
--- a/src/doc/getting_started.md
+++ b/src/doc/getting_started.md
@@ -1,5 +1,18 @@
 # Getting started with pycaosdb #
 
-1. Install
-2. import
-3. enjoy
+## Installation
+The program can be installed (under Linux) with:
+```
+# Clone the repository:
+git clone 'https://gitlab.com/caosdb/caosdb-advanced-user-tools'
+
+# cd into the directory:
+cd caosdb-advanced-user-tools
+
+# Use pip to install the package:
+pip install --user .
+```
+
+## import
+
+## enjoy
diff --git a/src/doc/index.rst b/src/doc/index.rst
index 84580c215806385b09fd7140ce1d4de22f30f021..99963f686393e9f8627542de630aa1939617e5f0 100644
--- a/src/doc/index.rst
+++ b/src/doc/index.rst
@@ -1,21 +1,21 @@
+Welcome to caosadvancedtools' documentation!
+============================================
 
-Welcome to caosdb-pylib's documentation!
-========================================
+Welcome to the advanced Python tools for CaosDB!
+
+This documentation helps you to :doc:`get started<getting_started>`, explains the most important
+:doc:`concepts<concepts>` and offers a range of :doc:`tutorials<tutorials>`.
 
 .. toctree::
    :maxdepth: 2
    :caption: Contents:
-   :hidden:
 
    Getting started <getting_started>
    Concepts <concepts>
    tutorials
+   Caosdb-Crawler <crawler>
    _apidoc/modules
 
-Welcome to the advanced Python tools for CaosDB!
-
-This documentation helps you to :doc:`get started<getting_started>`, explains the most important
-:doc:`concepts<concepts>` and offers a range of :doc:`tutorials<tutorials>`.
 
 
 Indices and tables