[gnome-color-manager/gnome-2-32] Use a new application icon



commit 92c80daa55b7fae9679f3da1d79b05a30165fb61
Author: Hylke Bons <hylkebons gmail com>
Date:   Mon Apr 19 09:08:54 2010 +0100

    Use a new application icon
    
    Signed-off-by: Richard Hughes <richard hughsie com>

 configure.ac                                |    1 +
 data/icons/16x16/gnome-color-manager.png    |  Bin 762 -> 837 bytes
 data/icons/22x22/gnome-color-manager.png    |  Bin 946 -> 1531 bytes
 data/icons/24x24/gnome-color-manager.png    |  Bin 968 -> 1562 bytes
 data/icons/256x256/Makefile.am              |   15 +
 data/icons/256x256/gnome-color-manager.png  |  Bin 0 -> 44668 bytes
 data/icons/32x32/gnome-color-manager.png    |  Bin 1397 -> 2366 bytes
 data/icons/48x48/gnome-color-manager.png    |  Bin 2216 -> 4353 bytes
 data/icons/64x64/gnome-color-manager.png    |  Bin 3022 -> 5883 bytes
 data/icons/Makefile.am                      |    2 +-
 data/icons/render-icons.py                  |  149 ++++
 data/icons/scalable/gnome-color-manager.svg |  849 ++++++++++++++++----
 data/icons/src/gnome-color-manager.svg      | 1154 +++++++++++++++++++++++++++
 13 files changed, 1997 insertions(+), 173 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index bed98b0..286d1ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -233,6 +233,7 @@ data/icons/24x24/Makefile
 data/icons/32x32/Makefile
 data/icons/48x48/Makefile
 data/icons/64x64/Makefile
+data/icons/256x256/Makefile
 data/icons/scalable/Makefile
 data/tests/Makefile
 data/targets/Makefile
diff --git a/data/icons/16x16/gnome-color-manager.png b/data/icons/16x16/gnome-color-manager.png
index e3ff71c..53c700f 100644
Binary files a/data/icons/16x16/gnome-color-manager.png and b/data/icons/16x16/gnome-color-manager.png differ
diff --git a/data/icons/22x22/gnome-color-manager.png b/data/icons/22x22/gnome-color-manager.png
index 476eb70..27136cc 100644
Binary files a/data/icons/22x22/gnome-color-manager.png and b/data/icons/22x22/gnome-color-manager.png differ
diff --git a/data/icons/24x24/gnome-color-manager.png b/data/icons/24x24/gnome-color-manager.png
index 842bd98..e96ecbc 100644
Binary files a/data/icons/24x24/gnome-color-manager.png and b/data/icons/24x24/gnome-color-manager.png differ
diff --git a/data/icons/256x256/Makefile.am b/data/icons/256x256/Makefile.am
new file mode 100644
index 0000000..1121e66
--- /dev/null
+++ b/data/icons/256x256/Makefile.am
@@ -0,0 +1,15 @@
+themedir = $(datadir)/icons/hicolor
+size = 256x256
+context = apps
+
+iconsdir = $(themedir)/$(size)/$(context)
+
+icons_DATA = 			  	\
+	gnome-color-manager.png
+
+install-data-hook:
+	mkdir -p $(DESTDIR)$(DATADIR)/icons/hicolor/$(size)/mimetypes;
+	ln -fs $(iconsdir)/gnome-color-manager.png $(DESTDIR)$(DATADIR)/icons/hicolor/$(size)/mimetypes/application-vnd.iccprofile.png;
+
+EXTRA_DIST =		\
+	$(icons_DATA)
diff --git a/data/icons/256x256/gnome-color-manager.png b/data/icons/256x256/gnome-color-manager.png
new file mode 100644
index 0000000..b176de8
Binary files /dev/null and b/data/icons/256x256/gnome-color-manager.png differ
diff --git a/data/icons/32x32/gnome-color-manager.png b/data/icons/32x32/gnome-color-manager.png
index 12a9a50..d9d317f 100644
Binary files a/data/icons/32x32/gnome-color-manager.png and b/data/icons/32x32/gnome-color-manager.png differ
diff --git a/data/icons/48x48/gnome-color-manager.png b/data/icons/48x48/gnome-color-manager.png
index 712528f..02974ac 100644
Binary files a/data/icons/48x48/gnome-color-manager.png and b/data/icons/48x48/gnome-color-manager.png differ
diff --git a/data/icons/64x64/gnome-color-manager.png b/data/icons/64x64/gnome-color-manager.png
index df17703..9e99fb0 100644
Binary files a/data/icons/64x64/gnome-color-manager.png and b/data/icons/64x64/gnome-color-manager.png differ
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index c563ecb..0bd0d63 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -1,4 +1,4 @@
-SUBDIRS = scalable 16x16 22x22 24x24 32x32 48x48 64x64
+SUBDIRS = scalable 16x16 22x22 24x24 32x32 48x48 64x64 256x256
 
 gtk_update_icon_cache = gtk-update-icon-cache -f -t $(pkgdatadir)/icons/hicolor
 
diff --git a/data/icons/render-icons.py b/data/icons/render-icons.py
new file mode 100755
index 0000000..639539b
--- /dev/null
+++ b/data/icons/render-icons.py
@@ -0,0 +1,149 @@
+#!/usr/bin/env python
+
+import os
+import sys
+import xml.sax
+import subprocess
+
+INKSCAPE = '/usr/bin/inkscape'
+SRC = os.path.join('.', 'src')
+
+inkscape_process = None
+
+def wait_for_prompt(process, command=None):
+    if command is not None:
+        process.stdin.write(command+'\n')
+
+    output = process.stdout.read(1)
+    output += process.stdout.read(1)
+    
+    while output != "\n>":
+        output = output[-1:]
+        output += process.stdout.read(1)
+
+def start_inkscape():
+    process = subprocess.Popen([INKSCAPE, '--shell'], bufsize=0, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
+    wait_for_prompt(process)
+    return process
+
+def inkscape_render_rect(icon_file, rect, output_file):
+    global inkscape_process
+    if inkscape_process is None:
+        inkscape_process = start_inkscape()
+    wait_for_prompt(inkscape_process, '%s -i %s -e %s' % (icon_file, rect, output_file))
+
+class ContentHandler(xml.sax.ContentHandler):
+    ROOT = 0
+    SVG = 1
+    LAYER = 2
+    OTHER = 3
+    TEXT = 4
+    def __init__(self, path, force=False):
+        self.stack = [self.ROOT]
+        self.inside = [self.ROOT]
+        self.path = path
+        self.rects = []
+        self.state = self.ROOT
+        self.chars = ""
+        self.force = force
+
+    def endDocument(self):
+        pass
+
+    def startElement(self, name, attrs):
+        if self.inside[-1] == self.ROOT:
+            if name == "svg":
+                self.stack.append(self.SVG)
+                self.inside.append(self.SVG)
+                return
+        elif self.inside[-1] == self.SVG:
+            if (name == "g" and attrs.has_key('inkscape:groupmode') and attrs.has_key('inkscape:label')
+               and attrs['inkscape:groupmode'] == 'layer' and attrs['inkscape:label'].startswith('baseplate')):
+                self.stack.append(self.LAYER)
+                self.inside.append(self.LAYER)
+                self.context = None
+                self.icon_name = None
+                self.rects = []
+                return
+        elif self.inside[-1] == self.LAYER:
+            if name == "text" and attrs.has_key('inkscape:label') and attrs['inkscape:label'] == 'context':
+                self.stack.append(self.TEXT)
+                self.inside.append(self.TEXT)
+                self.text='context'
+                self.chars = ""
+                return
+            elif name == "text" and attrs.has_key('inkscape:label') and attrs['inkscape:label'] == 'icon-name':
+                self.stack.append(self.TEXT)
+                self.inside.append(self.TEXT)
+                self.text='icon-name'
+                self.chars = ""
+                return
+            elif name == "rect":
+                self.rects.append(attrs)
+
+        self.stack.append(self.OTHER)
+
+
+    def endElement(self, name):
+        stacked = self.stack.pop()
+        if self.inside[-1] == stacked:
+            self.inside.pop()
+
+        if stacked == self.TEXT and self.text is not None:
+            assert self.text in ['context', 'icon-name']
+            if self.text == 'context':
+                self.context = self.chars
+            elif self.text == 'icon-name':
+                self.icon_name = self.chars
+            self.text = None
+        elif stacked == self.LAYER:
+            assert self.icon_name
+            assert self.context
+            print '%s %s' % (self.context, self.icon_name)
+            for rect in self.rects:
+                width = rect['width']
+                height = rect['height']
+                id = rect['id']
+
+                dir = os.path.join("icons", "%sx%s" % (width, height), self.context)
+                outfile = os.path.join(dir, self.icon_name+'.png')
+                if not os.path.exists(dir):
+                    os.makedirs(dir)
+                # Do a time based check!
+                if self.force or not os.path.exists(outfile):
+                    inkscape_render_rect(self.path, id, outfile)
+                    sys.stdout.write('.')
+                else:
+                    stat_in = os.stat(self.path)
+                    stat_out = os.stat(outfile)
+                    if stat_in.st_mtime > stat_out.st_mtime:
+                        inkscape_render_rect(self.path, id, outfile)
+                        sys.stdout.write('.')
+                    else:
+                        sys.stdout.write('-')
+                sys.stdout.flush()
+            sys.stdout.write('\n')
+            sys.stdout.flush()
+
+    def characters(self, chars):
+        self.chars += chars.strip()
+
+if len(sys.argv) == 1:
+    if not os.path.exists('icons'):
+        os.mkdir('icons')
+    print 'Rendering from SVGs in %s' % SRC
+    for file in os.listdir(SRC):
+        if file[-4:] == '.svg':
+            file = os.path.join(SRC, file)
+            handler = ContentHandler(file)
+            xml.sax.parse(open(file), handler)
+else:
+    file = os.path.join(SRC, sys.argv[1] + '.svg')
+    if os.path.exists(os.path.join(file)):
+        handler = ContentHandler(file, True)
+        xml.sax.parse(open(file), handler)
+    else:
+        print "Error: No such file %s" % file
+        sys.exit(1)
+
+
diff --git a/data/icons/scalable/gnome-color-manager.svg b/data/icons/scalable/gnome-color-manager.svg
index 34d6faa..64326cb 100644
--- a/data/icons/scalable/gnome-color-manager.svg
+++ b/data/icons/scalable/gnome-color-manager.svg
@@ -7,217 +7,722 @@
    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="744.09448819"
-   height="1052.3622047"
-   id="svg2"
-   version="1.1"
-   inkscape:version="0.46+devel"
+   inkscape:export-ydpi="90.000000"
+   inkscape:export-xdpi="90.000000"
+   inkscape:export-filename="/home/hbons/gnome-color-manager.png"
+   width="230"
+   height="230"
+   id="svg11300"
+   sodipodi:version="0.32"
+   inkscape:version="0.47 r22583"
    sodipodi:docname="gnome-color-manager.svg"
-   inkscape:export-filename="/home/hughsie/Code/gnome-color-manager/data/icons/22x22/gnome-color-manager.png"
-   inkscape:export-xdpi="6.1111107"
-   inkscape:export-ydpi="6.1111107">
-  <defs
-     id="defs4">
-    <inkscape:perspective
-       sodipodi:type="inkscape:persp3d"
-       inkscape:vp_x="0 : 526.18109 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_z="744.09448 : 526.18109 : 1"
-       inkscape:persp3d-origin="372.04724 : 350.78739 : 1"
-       id="perspective10" />
-    <inkscape:perspective
-       id="perspective2824"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2848"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2870"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2892"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2914"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2914-7"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2914-76"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2954"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-    <inkscape:perspective
-       id="perspective2980"
-       inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
-       inkscape:vp_z="1 : 0.5 : 1"
-       inkscape:vp_y="0 : 1000 : 0"
-       inkscape:vp_x="0 : 0.5 : 1"
-       sodipodi:type="inkscape:persp3d" />
-  </defs>
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0"
+   style="display:inline;enable-background:new">
   <sodipodi:namedview
+     stroke="#ef2929"
+     fill="#f57900"
      id="base"
      pagecolor="#ffffff"
      bordercolor="#666666"
-     borderopacity="1.0"
+     borderopacity="0.25490196"
      inkscape:pageopacity="0.0"
      inkscape:pageshadow="2"
-     inkscape:zoom="0.7"
-     inkscape:cx="54.892679"
-     inkscape:cy="427.46635"
+     inkscape:zoom="2"
+     inkscape:cx="185.8573"
+     inkscape:cy="186.35354"
+     inkscape:current-layer="svg11300"
+     showgrid="false"
+     inkscape:grid-bbox="true"
      inkscape:document-units="px"
-     inkscape:current-layer="layer1"
-     showgrid="true"
-     objecttolerance="20"
-     showguides="true"
-     inkscape:guide-bbox="true"
-     gridtolerance="1"
+     inkscape:showpageshadow="false"
      inkscape:window-width="1680"
-     inkscape:window-height="976"
+     inkscape:window-height="977"
      inkscape:window-x="0"
      inkscape:window-y="25"
+     width="400px"
+     height="300px"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     objecttolerance="7"
+     gridtolerance="12"
+     guidetolerance="13"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-page="true"
+     inkscape:object-nodes="false"
      inkscape:window-maximized="1">
     <inkscape:grid
        type="xygrid"
-       id="grid2830"
-       empspacing="5"
-       visible="true"
+       id="grid5883"
+       spacingx="1px"
+       spacingy="1px"
        enabled="true"
+       visible="true"
+       empspacing="4"
        snapvisiblegridlinesonly="true" />
   </sodipodi:namedview>
+  <defs
+     id="defs3">
+    <inkscape:perspective
+       sodipodi:type="inkscape:persp3d"
+       inkscape:vp_x="0 : 150 : 1"
+       inkscape:vp_y="0 : 1000 : 0"
+       inkscape:vp_z="400 : 150 : 1"
+       inkscape:persp3d-origin="200 : 100 : 1"
+       id="perspective183" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4115">
+      <stop
+         style="stop-color:#e3e3e1;stop-opacity:1"
+         offset="0"
+         id="stop4117" />
+      <stop
+         style="stop-color:#7f8376;stop-opacity:1"
+         offset="1"
+         id="stop4119" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3983">
+      <path
+         d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.093
 75 -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+         id="path3985"
+         style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 1
 84.46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+         inkscape:radius="2.236068"
+         sodipodi:type="inkscape:offset" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4123">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.26224718"
+         id="feGaussianBlur4125" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4169">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4171"
+         d="m 471.43078,685.92888 c 0,22.09674 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91299 -12.84203,-40.00973 0,-22.09678 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91296 12.84202,40.00974 z"
+         style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4173"
+       x="-0.2469319"
+       width="1.4938638"
+       y="-0.079258353"
+       height="1.1585166">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.642588"
+         id="feGaussianBlur4175" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4145">
+      <path
+         style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 401.43078,865.80173 c 0,22.09677 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91296 -12.84203,-40.00973 0,-22.09675 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91299 12.84202,40.00974 z"
+         id="path4147"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4149"
+       x="-0.2469319"
+       width="1.4938638"
+       y="-0.079258353"
+       height="1.1585166">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.642588"
+         id="feGaussianBlur4151" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4181">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4183"
+         d="m 348.71074,698.72614 c -22.06442,0 -39.95118,-12.86084 -39.95118,-12.86084 0,0 17.88676,-12.86084 39.95118,-12.86084 22.06446,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88673,12.86084 -39.95119,12.86084 z"
+         style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4189"
+       x="-0.079314828"
+       width="1.1586297"
+       y="-0.24638528"
+       height="1.4927706">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6406013"
+         id="feGaussianBlur4191" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4197">
+      <path
+         style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 299.47143,763.19859 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56716,-21.76037 19.16908,-37.38511 15.60192,-15.62479 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76037 -19.16908,37.38512 z"
+         id="path4199"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4201"
+       x="-0.12008792"
+       width="1.2401758"
+       y="-0.11991221"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270453"
+         id="feGaussianBlur4203" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4133">
+      <path
+         style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 538.46677,738.72614 c -22.06443,0 -39.95119,-12.86084 -39.95119,-12.86084 0,0 17.88676,-12.86084 39.95119,-12.86084 22.06442,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88677,12.86084 -39.95119,12.86084 z"
+         id="path4135"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4137"
+       x="-0.079314828"
+       width="1.1586297"
+       y="-0.24638529"
+       height="1.4927706">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6406015"
+         id="feGaussianBlur4139" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4071">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4073"
+         d="m 515.86743,706.71995 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56717,-21.76037 19.16909,-37.38511 15.60192,-15.62478 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76034 -19.16909,37.38512 z"
+         style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4075"
+       x="-0.12008791"
+       width="1.2401758"
+       y="-0.11991222"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270455"
+         id="feGaussianBlur4077" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4083">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4085"
+         d="m 515.86743,745.01066 c 15.60192,15.62474 19.16909,37.38511 19.16909,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62475 -19.16909,-37.38512 -19.16909,-37.38512 0,0 21.72851,3.5724 37.33043,19.19719 z"
+         style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4087"
+       x="-0.12008791"
+       width="1.2401758"
+       y="-0.11991222"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270455"
+         id="feGaussianBlur4089" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4157">
+      <path
+         style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 269.47143,688.53202 c 15.60191,15.62474 19.16908,37.38511 19.16908,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62478 -19.16908,-37.38512 -19.16908,-37.38512 0,0 21.72851,3.57241 37.33043,19.19719 z"
+         id="path4159"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4161"
+       x="-0.12008792"
+       width="1.2401758"
+       y="-0.11991221"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270453"
+         id="feGaussianBlur4163" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4115"
+       id="linearGradient4042"
+       gradientUnits="userSpaceOnUse"
+       x1="177.01997"
+       y1="715.69196"
+       x2="190.86528"
+       y2="745.97327" />
+    <filter
+       inkscape:collect="always"
+       id="filter4144"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.52449438"
+         id="feGaussianBlur4146" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4010"
+       id="radialGradient4016"
+       cx="190.50462"
+       cy="763.02698"
+       fx="190.50462"
+       fy="763.02698"
+       r="25.774157"
+       gradientTransform="matrix(-7.100899,-3.7574025,0.65283651,-1.2337581,945.3963,1718.792)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-8">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-4" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-5" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="803.93988"
+       fx="190.11163"
+       cy="803.93988"
+       cx="190.11163"
+       gradientTransform="matrix(-7.100899,-3.7574025,0.65283651,-1.2337581,945.3963,1718.792)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036"
+       xlink:href="#linearGradient4010-8"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-0">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-51" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="714.44397"
+       fx="196.29478"
+       cy="714.44397"
+       cx="196.29478"
+       gradientTransform="matrix(-0.59883175,-1.0815124,1.5121107,-0.83725328,-944.82871,910.24831)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-9"
+       xlink:href="#linearGradient4010-0"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-3">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-3" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-4" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="689.05688"
+       fx="174.41974"
+       cy="689.05688"
+       cx="174.41974"
+       gradientTransform="matrix(0.66761995,-1.2556356,0.62963254,0.33477488,-513.52469,163.92746)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-6"
+       xlink:href="#linearGradient4010-3"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-9">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-29" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-0" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="846.39172"
+       fx="213.73914"
+       cy="846.39172"
+       cx="213.73914"
+       gradientTransform="matrix(2.1446353,0.54333384,-0.23562774,0.9300646,-46.18505,-798.23193)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-3"
+       xlink:href="#linearGradient4010-9"
+       inkscape:collect="always" />
+  </defs>
   <metadata
-     id="metadata7">
+     id="metadata4">
     <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></dc:title>
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Lapo Calamandrei</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source />
+        <cc:license
+           rdf:resource="" />
+        <dc:title />
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>keyboard</rdf:li>
+            <rdf:li>keys</rdf:li>
+            <rdf:li>configure</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:date />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:rights>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:publisher>
+        <dc:identifier />
+        <dc:relation />
+        <dc:language />
+        <dc:coverage />
+        <dc:description />
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:contributor>
       </cc:Work>
     </rdf:RDF>
   </metadata>
   <g
-     inkscape:label="Layer 1"
+     id="layer1"
+     inkscape:label="gnome-color-manager"
      inkscape:groupmode="layer"
-     id="layer1">
+     style="display:inline"
+     transform="translate(-30.407115,-47.7175)">
+    <g
+       inkscape:groupmode="layer"
+       id="layer6"
+       inkscape:label="baseplate"
+       style="display:none">
+      <rect
+         inkscape:label="48x48"
+         y="49.996326"
+         x="296.0625"
+         height="48"
+         width="48"
+         id="rect6284"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6592"
+         width="32"
+         height="32"
+         x="303"
+         y="125.99633"
+         inkscape:label="32x32" />
+      <rect
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect8104"
+         width="24"
+         height="24"
+         x="302"
+         y="176"
+         inkscape:label="24x24" />
+      <rect
+         inkscape:label="22x22"
+         y="177.05884"
+         x="303"
+         height="22"
+         width="22"
+         id="rect6749"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6833"
+         width="16"
+         height="16"
+         x="303"
+         y="219"
+         inkscape:label="16x16" />
+      <rect
+         inkscape:label="256x256"
+         y="31.996323"
+         x="16.0625"
+         height="256"
+         width="256"
+         id="rect3068"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <text
+         xml:space="preserve"
+         style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
+         x="20.970737"
+         y="21.513618"
+         id="context"
+         inkscape:label="context"><tspan
+           sodipodi:role="line"
+           id="tspan2716"
+           x="20.970737"
+           y="21.513618">apps</tspan></text>
+      <text
+         inkscape:label="icon-name"
+         id="text3021"
+         y="21.513618"
+         x="191.97073"
+         style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
+         xml:space="preserve"
+         sodipodi:linespacing="125%"><tspan
+           y="21.513618"
+           x="191.97073"
+           id="tspan3023"
+           sodipodi:role="line">gnome-color-manager</tspan></text>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer8"
+       inkscape:label="small sizes"
+       style="display:inline" />
+    <g
+       inkscape:groupmode="layer"
+       id="layer7"
+       inkscape:label="hires"
+       style="display:inline" />
+  </g>
+  <g
+     id="g4017"
+     transform="translate(-24.606499,-41.050135)">
     <path
-       sodipodi:type="arc"
-       id="path2838"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 790,477.36218 a 115,115 0 0 1 -57.5,99.59293 L 675,477.36218 z"
-       sodipodi:start="0"
-       sodipodi:end="1.0471976"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13054,149.64195)"
-       style="fill:#c83737" />
+       transform="matrix(4.1368925,0,0,4.1487427,-624.76596,-2861.8892)"
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="2.236068"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       style="color:#000000;fill:url(#linearGradient4042);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="path3687"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z" />
     <path
-       sodipodi:type="arc"
-       id="path2838-3"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 732.5,576.95511 a 115,115 0 0 1 -115,-10e-6 L 675,477.36218 z"
-       sodipodi:start="1.0471976"
-       sodipodi:end="2.0943951"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13054,149.64195)"
-       style="fill:#00369d;fill-opacity:1" />
+       transform="matrix(4.1368925,0,0,4.1487427,-620.76596,-2857.8892)"
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="2.236068"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       style="opacity:0.25;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4144);enable-background:new"
+       id="path4136"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+       clip-path="none" />
     <path
-       sodipodi:type="arc"
-       id="path2838-3-8"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="M 617.5,576.9551 A 115,115 0 0 1 560,477.36218 l 115,0 z"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13053,149.64195)"
-       sodipodi:start="2.0943951"
-       sodipodi:end="3.1415927"
-       style="fill:#008ad4;fill-opacity:1" />
+       clip-path="url(#clipPath3983)"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+       id="path3979"
+       style="opacity:0.96694186;color:#000000;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4123);enable-background:new"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       inkscape:radius="2.236068"
+       sodipodi:type="inkscape:offset"
+       transform="matrix(4.1368925,0,0,4.1487427,-624.76596,-2861.8892)" />
     <path
-       sodipodi:type="arc"
-       id="path2838-3-8-0"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 560,477.36218 a 115,115 0 0 1 57.5,-99.59292 l 57.5,99.59292 z"
-       sodipodi:start="3.1415927"
-       sodipodi:end="4.1887902"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.32705,149.90517)"
-       style="fill:#00aa21;fill-opacity:1" />
+       style="color:#000000;fill:#d5be00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 154.30526,107.37313 c 0,27.48513 -15.97192,49.76628 -15.97192,49.76628 0,0 -15.97193,-22.28115 -15.97193,-49.76628 0,-27.485174 15.97193,-49.766288 15.97193,-49.766288 0,0 15.97192,22.281114 15.97192,49.766288 z"
+       id="path3689"
+       sodipodi:nodetypes="csssc" />
     <path
-       sodipodi:type="arc"
-       id="path2838-3-8-7"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 617.5,377.76926 a 115,115 0 0 1 115,0 L 675,477.36218 z"
-       sodipodi:start="4.1887902"
-       sodipodi:end="5.2359878"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13053,150.17687)"
-       style="fill:#ffff00" />
+       transform="matrix(1.2437231,0,0,1.2438544,-432.02409,-745.82249)"
+       clip-path="url(#clipPath4169)"
+       sodipodi:nodetypes="csssc"
+       id="path4165"
+       d="m 471.43078,685.92888 c 0,22.09674 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91299 -12.84203,-40.00973 0,-22.09678 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91296 12.84202,40.00974 z"
+       style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4173);enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3691"
+       d="m 154.30526,206.72332 c 0,27.48517 -15.97192,49.76628 -15.97192,49.76628 0,0 -15.97193,-22.28111 -15.97193,-49.76628 0,-27.48514 15.97193,-49.76629 15.97193,-49.76629 0,0 15.97192,22.28115 15.97192,49.76629 z"
+       style="color:#000000;fill:#23446e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
     <path
+       sodipodi:nodetypes="csssc"
+       id="path3693"
+       d="m 187.93055,173.04523 c -27.44205,0 -49.68822,-15.99701 -49.68822,-15.99701 0,0 22.24617,-15.99701 49.68822,-15.99701 27.44202,0 49.68821,15.99701 49.68821,15.99701 0,0 -22.24619,15.99701 -49.68821,15.99701 z"
+       style="color:#000000;fill:#56aa07;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       style="color:#000000;fill:#ca0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 88.736129,173.04523 c -27.442028,0 -49.688205,-15.99701 -49.688205,-15.99701 0,0 22.246177,-15.99701 49.688205,-15.99701 27.442081,0 49.688221,15.99701 49.688221,15.99701 0,0 -22.24614,15.99701 -49.688221,15.99701 z"
+       id="path3695"
+       sodipodi:nodetypes="csssc" />
+    <path
+       style="color:#000000;fill:#85b912;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 184.69769,133.23419 c -19.40447,19.43496 -46.42872,23.8785 -46.42872,23.8785 0,0 4.43657,-27.06673 23.84104,-46.50163 19.40447,-19.434952 46.42872,-23.87851 46.42872,-23.87851 0,0 -4.43657,27.06669 -23.84104,46.50164 z"
+       id="path3697"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-344.96347,-870.20793)"
+       clip-path="url(#clipPath4145)"
+       style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4149);enable-background:new"
+       d="m 401.43078,865.80173 c 0,22.09677 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91296 -12.84203,-40.00973 0,-22.09675 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91299 12.84202,40.00974 z"
+       id="path4141"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-344.96347,-696.06832)"
+       clip-path="url(#clipPath4181)"
+       sodipodi:nodetypes="csssc"
+       id="path4177"
+       d="m 348.71074,698.72614 c -22.06442,0 -39.95118,-12.86084 -39.95118,-12.86084 0,0 17.88676,-12.86084 39.95118,-12.86084 22.06446,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88673,12.86084 -39.95119,12.86084 z"
+       style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4189);enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3699"
+       d="m 114.55668,203.4854 c -19.404469,19.43495 -46.428719,23.87849 -46.428719,23.87849 0,0 4.436559,-27.06673 23.841028,-46.50163 19.404471,-19.43496 46.428721,-23.87851 46.428721,-23.87851 0,0 -4.43658,27.06673 -23.84103,46.50165 z"
+       style="color:#000000;fill:#593d5e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3701"
+       d="m 114.55668,110.61106 c 19.40445,19.4349 23.84103,46.50163 23.84103,46.50163 0,0 -27.02425,-4.44354 -46.428721,-23.8785 C 72.56452,113.79924 68.127961,86.73255 68.127961,86.73255 c 0,0 27.02425,4.443558 46.428719,23.87851 z"
+       style="color:#000000;fill:#c96300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-257.90286,-745.82249)"
+       clip-path="url(#clipPath4197)"
+       style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4201);enable-background:new"
+       d="m 299.47143,763.19859 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56716,-21.76037 19.16908,-37.38511 15.60192,-15.62479 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76037 -19.16908,37.38512 z"
+       id="path4193"
+       sodipodi:nodetypes="csssc" />
+    <path
+       style="color:#000000;fill:#3f7bba;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 184.69769,180.86226 c 19.40447,19.4349 23.84104,46.50163 23.84104,46.50163 0,0 -27.02425,-4.44354 -46.42872,-23.87849 -19.40447,-19.43492 -23.84104,-46.50165 -23.84104,-46.50165 0,0 27.02425,4.44355 46.42872,23.87851 z"
+       id="path3703"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-481.77301,-745.82249)"
+       clip-path="url(#clipPath4133)"
+       style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4137);enable-background:new"
+       d="m 538.46677,738.72614 c -22.06443,0 -39.95119,-12.86084 -39.95119,-12.86084 0,0 17.88676,-12.86084 39.95119,-12.86084 22.06442,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88677,12.86084 -39.95119,12.86084 z"
+       id="path4129"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-456.89855,-745.82249)"
+       clip-path="url(#clipPath4071)"
+       sodipodi:nodetypes="csssc"
+       id="path4067"
+       d="m 515.86743,706.71995 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56717,-21.76037 19.16909,-37.38511 15.60192,-15.62478 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76034 -19.16909,37.38512 z"
+       style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4075);enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-456.89855,-745.82249)"
+       clip-path="url(#clipPath4083)"
+       sodipodi:nodetypes="csssc"
+       id="path4079"
+       d="m 515.86743,745.01066 c 15.60192,15.62474 19.16909,37.38511 19.16909,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62475 -19.16909,-37.38512 -19.16909,-37.38512 0,0 21.72851,3.5724 37.33043,19.19719 z"
+       style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4087);enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-220.59116,-745.82249)"
+       clip-path="url(#clipPath4157)"
+       style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4161);enable-background:new"
+       d="m 269.47143,688.53202 c 15.60191,15.62474 19.16908,37.38511 19.16908,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62478 -19.16908,-37.38512 -19.16908,-37.38512 0,0 21.72851,3.57241 37.33043,19.19719 z"
+       id="path4153"
+       sodipodi:nodetypes="csssc" />
+    <path
+       d="m 187.625,727.61218 c 0,1.86396 -1.51104,3.375 -3.375,3.375 -1.86396,0 -3.375,-1.51104 -3.375,-3.375 0,-1.86396 1.51104,-3.375 3.375,-3.375 1.86396,0 3.375,1.51104 3.375,3.375 z"
+       sodipodi:ry="3.375"
+       sodipodi:rx="3.375"
+       sodipodi:cy="727.61218"
+       sodipodi:cx="184.25"
+       id="path3705"
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
        sodipodi:type="arc"
-       id="path2838-3-8-7-8"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 732.5,377.76926 a 115,115 0 0 1 57.5,99.59292 l -115,0 z"
-       sodipodi:start="5.2359878"
-       sodipodi:end="6.2831853"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13055,149.64729)"
-       style="fill:#ff7f2a" />
+       transform="matrix(6.5480183,0,0,6.5667752,-1069.0159,-4621.279)" />
     <path
+       transform="matrix(14.096078,0,0,14.136457,-2459.746,-10129.072)"
        sodipodi:type="arc"
-       id="path2838-3-8-9"
-       sodipodi:cx="675"
-       sodipodi:cy="477.36218"
-       sodipodi:rx="115"
-       sodipodi:ry="115"
-       d="m 790,477.36218 a 115,115 0 1 1 -230,0 115,115 0 1 1 230,0 z"
-       transform="matrix(1.3913045,0,0,1.3913045,-569.13053,149.64195)"
-       style="fill:none;stroke:#000000;stroke-opacity:1;stroke-width:2.87499969000000011;stroke-miterlimit:4;stroke-dasharray:none;stroke-linejoin:round;opacity:0.45013245" />
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="path3707"
+       sodipodi:cx="184.25"
+       sodipodi:cy="727.61218"
+       sodipodi:rx="3.375"
+       sodipodi:ry="3.375"
+       d="m 187.625,727.61218 c 0,1.86396 -1.51104,3.375 -3.375,3.375 -1.86396,0 -3.375,-1.51104 -3.375,-3.375 0,-1.86396 1.51104,-3.375 3.375,-3.375 1.86396,0 3.375,1.51104 3.375,3.375 z" />
+    <path
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 137.44938,85.332635 c -4.15028,0 -8.20042,0.379502 -12.15625,1.0625 -1.72824,6.374669 -2.9375,13.47119 -2.9375,20.968745 0,5.0399 0.52913,9.91534 1.40625,14.5 -2.6169,-3.86387 -5.65983,-7.6855 -9.21875,-11.25 -5.37148,-5.37991 -11.32311,-9.60049 -17.125,-12.906245 -7.18812,4.909705 -13.43098,11.100565 -18.40625,18.249995 3.31137,5.85188 7.55964,11.86364 12.96875,17.28125 3.55235,3.55793 7.33696,6.60095 11.1875,9.21875 -4.56742,-0.87461 -9.41806,-1.40625 -14.4375,-1.40625 -7.65792,0 -14.89692,1.26595 -21.375,3.0625 -0.73474,4.11477 -1.15625,8.36076 -1.15625,12.6875 0,4.52451 0.44816,8.92764 1.25,13.21875 6.45402,1.78244 13.66066,3.03125 21.28125,3.03125 5.00833,0 9.8477,-0.53507 14.40625,-1.40625 -3.83908,2.61272 -7.61423,5.67117 -11.15625,9.21875 -5.32369,5.33204 -9.5243,11.23579 -12.8125,17 5.04292,7.1852 11.37508,13.38158 18.65625,18.28125 5.67081,-3.27029 11.47477,-7.40404 16.71875,-12.65625 3.55892,-3.5645 6.60185,-7.38613 9.21875,-11.25 -0.87712,4.58466 -1.4
 0625,9.46009 -1.40625,14.5 0,7.27634 1.13547,14.1779 2.78125,20.40625 4.00527,0.70084 8.1072,1.09375 12.3125,1.09375 4.84298,0 9.58458,-0.51403 14.15625,-1.4375 1.59587,-6.13752 2.6875,-12.92118 2.6875,-20.0625 0,-5.04013 -0.52905,-9.91516 -1.40625,-14.5 2.61718,3.86448 5.65928,7.68494 9.21875,11.25 4.94856,4.95633 10.38407,8.94403 15.75,12.125 7.41659,-5.13157 13.82787,-11.61275 18.84375,-19.125 -3.16079,-5.32159 -7.10049,-10.71781 -12,-15.625 -3.54201,-3.54758 -7.34841,-6.60603 -11.1875,-9.21875 4.56743,0.87461 9.38683,1.40625 14.40625,1.40625 6.90925,0 13.49045,-1.01346 19.46875,-2.53125 0.86405,-4.44743 1.3125,-9.0178 1.3125,-13.71875 0,-4.50317 -0.42428,-8.91536 -1.21875,-13.1875 -6.00406,-1.53144 -12.61592,-2.5625 -19.5625,-2.5625 -5.04162,0 -9.8836,0.52476 -14.46875,1.40625 3.85782,-2.62102 7.69109,-5.65424 11.25,-9.21875 4.98494,-4.99277 8.96814,-10.4946 12.15625,-15.90625 -4.94351,-7.47022 -11.24797,-13.95313 -18.5625,-19.093745 -5.50721,3.222955 -11.10419,7.283705 
 -16.1875,12.374995 -3.55947,3.56505 -6.60157,7.38552 -9.21875,11.25 0.8772,-4.58484 1.40625,-9.45987 1.40625,-14.5 0,-7.36254 -1.16592,-14.339257 -2.84375,-20.624995 -4.5237,-0.903292 -9.21157,-1.40625 -14,-1.40625 z"
+       id="path3906"
+       inkscape:connector-curvature="0" />
   </g>
+  <path
+     style="opacity:0.96694186;color:#000000;fill:none;stroke:url(#radialGradient4036);stroke-width:1.99999988;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 113.23782,10.255961 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.344495,19.338451 -16.159735,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 67
 .678432,43.630605 44.591469,39.428883 44.591469,39.428883 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0
 .06887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.25855
 6,0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.2585558,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.03
 31,0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.1671308,0.17384 0.0815,0.0958 0.2585558,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 C 41.524211,162.11426 37.3517,185.41069 37.3517,185.41069 c -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.23
 15 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627
 ,0 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.159745,45.11758 16.159745,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.3
 8763,0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24
 449,0.0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.
 22943 0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -10e-4,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968
 ,-0.22113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.
 25855,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 10e-4,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.151
 41,-0.193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.
 9846976 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0
 032 -0.029,-0.01245 -0.12949,0 z"
+     id="path4008-6" />
+  <path
+     style="opacity:0.96694186;color:#000000;fill:none;stroke:url(#radialGradient4036-9);stroke-width:1.99999988;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 113.23782,10.255961 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.344495,19.338451 -16.159735,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 67
 .678432,43.630605 44.591469,39.428883 44.591469,39.428883 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0
 .06887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.25855
 6,0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.2585558,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.03
 31,0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.1671308,0.17384 0.0815,0.0958 0.2585558,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 C 41.524211,162.11426 37.3517,185.41069 37.3517,185.41069 c -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.23
 15 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627
 ,0 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.159745,45.11758 16.159745,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.3
 8763,0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24
 449,0.0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.
 22943 0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -10e-4,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968
 ,-0.22113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.
 25855,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 10e-4,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.151
 41,-0.193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.
 9846976 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0
 032 -0.029,-0.01245 -0.12949,0 z"
+     id="path4008-7" />
+  <path
+     style="opacity:0.96694186;color:#000000;fill:none;stroke:url(#radialGradient4036-6);stroke-width:1.99999988;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 113.23782,10.255961 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.344495,19.338451 -16.159735,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 67
 .678432,43.630605 44.591469,39.428883 44.591469,39.428883 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0
 .06887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.25855
 6,0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.2585558,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.03
 31,0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.1671308,0.17384 0.0815,0.0958 0.2585558,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 C 41.524211,162.11426 37.3517,185.41069 37.3517,185.41069 c -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.23
 15 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627
 ,0 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.159745,45.11758 16.159745,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.3
 8763,0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24
 449,0.0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.
 22943 0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -10e-4,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968
 ,-0.22113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.
 25855,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 10e-4,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.151
 41,-0.193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.
 9846976 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0
 032 -0.029,-0.01245 -0.12949,0 z"
+     id="path4008-1" />
+  <path
+     style="opacity:0.96694186;color:#000000;fill:none;stroke:url(#radialGradient4036-3);stroke-width:1.99999988;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 113.23782,10.255961 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.344495,19.338451 -16.159735,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 67
 .678432,43.630605 44.591469,39.428883 44.591469,39.428883 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0
 .06887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.25855
 6,0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.2585558,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.03
 31,0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.1671308,0.17384 0.0815,0.0958 0.2585558,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 C 41.524211,162.11426 37.3517,185.41069 37.3517,185.41069 c -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.23
 15 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627
 ,0 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.159745,45.11758 16.159745,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.3
 8763,0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24
 449,0.0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.
 22943 0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -10e-4,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968
 ,-0.22113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.
 25855,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 10e-4,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.151
 41,-0.193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.
 9846976 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0
 032 -0.029,-0.01245 -0.12949,0 z"
+     id="path4008-0" />
 </svg>
diff --git a/data/icons/src/gnome-color-manager.svg b/data/icons/src/gnome-color-manager.svg
new file mode 100644
index 0000000..dc011e3
--- /dev/null
+++ b/data/icons/src/gnome-color-manager.svg
@@ -0,0 +1,1154 @@
+<?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";
+   inkscape:export-ydpi="90.000000"
+   inkscape:export-xdpi="90.000000"
+   inkscape:export-filename="/home/hbons/gnome-color-manager.png"
+   width="400"
+   height="300"
+   id="svg11300"
+   sodipodi:version="0.32"
+   inkscape:version="0.47+devel r"
+   sodipodi:docname="gnome-color-manager.svg"
+   inkscape:output_extension="org.inkscape.output.svg.inkscape"
+   version="1.0"
+   style="display:inline;enable-background:new">
+  <sodipodi:namedview
+     stroke="#ef2929"
+     fill="#f57900"
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="0.25490196"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1"
+     inkscape:cx="437.25452"
+     inkscape:cy="182.70128"
+     inkscape:current-layer="svg11300"
+     showgrid="false"
+     inkscape:grid-bbox="true"
+     inkscape:document-units="px"
+     inkscape:showpageshadow="false"
+     inkscape:window-width="1280"
+     inkscape:window-height="742"
+     inkscape:window-x="0"
+     inkscape:window-y="26"
+     width="400px"
+     height="300px"
+     inkscape:snap-nodes="false"
+     inkscape:snap-bbox="true"
+     objecttolerance="7"
+     gridtolerance="12"
+     guidetolerance="13"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-page="true"
+     inkscape:object-nodes="false"
+     inkscape:window-maximized="1">
+    <inkscape:grid
+       type="xygrid"
+       id="grid5883"
+       spacingx="1px"
+       spacingy="1px"
+       enabled="true"
+       visible="true"
+       empspacing="4"
+       snapvisiblegridlinesonly="true" />
+  </sodipodi:namedview>
+  <defs
+     id="defs3">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4115">
+      <stop
+         style="stop-color:#e3e3e1;stop-opacity:1"
+         offset="0"
+         id="stop4117" />
+      <stop
+         style="stop-color:#7f8376;stop-opacity:1"
+         offset="1"
+         id="stop4119" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath3983">
+      <path
+         d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.093
 75 -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+         id="path3985"
+         style="color:#000000;fill:#eeeeec;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 1
 84.46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+         inkscape:radius="2.236068"
+         sodipodi:type="inkscape:offset" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4123">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.26224718"
+         id="feGaussianBlur4125" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4169">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4171"
+         d="m 471.43078,685.92888 c 0,22.09674 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91299 -12.84203,-40.00973 0,-22.09678 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91296 12.84202,40.00974 z"
+         style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4173"
+       x="-0.2469319"
+       width="1.4938638"
+       y="-0.079258353"
+       height="1.1585166">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.642588"
+         id="feGaussianBlur4175" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4145">
+      <path
+         style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 401.43078,865.80173 c 0,22.09677 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91296 -12.84203,-40.00973 0,-22.09675 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91299 12.84202,40.00974 z"
+         id="path4147"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4149"
+       x="-0.2469319"
+       width="1.4938638"
+       y="-0.079258353"
+       height="1.1585166">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.642588"
+         id="feGaussianBlur4151" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4181">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4183"
+         d="m 348.71074,698.72614 c -22.06442,0 -39.95118,-12.86084 -39.95118,-12.86084 0,0 17.88676,-12.86084 39.95118,-12.86084 22.06446,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88673,12.86084 -39.95119,12.86084 z"
+         style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4189"
+       x="-0.079314828"
+       width="1.1586297"
+       y="-0.24638528"
+       height="1.4927706">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6406013"
+         id="feGaussianBlur4191" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4197">
+      <path
+         style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 299.47143,763.19859 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56716,-21.76037 19.16908,-37.38511 15.60192,-15.62479 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76037 -19.16908,37.38512 z"
+         id="path4199"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4201"
+       x="-0.12008792"
+       width="1.2401758"
+       y="-0.11991221"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270453"
+         id="feGaussianBlur4203" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4133">
+      <path
+         style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 538.46677,738.72614 c -22.06443,0 -39.95119,-12.86084 -39.95119,-12.86084 0,0 17.88676,-12.86084 39.95119,-12.86084 22.06442,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88677,12.86084 -39.95119,12.86084 z"
+         id="path4135"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4137"
+       x="-0.079314828"
+       width="1.1586297"
+       y="-0.24638529"
+       height="1.4927706">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.6406015"
+         id="feGaussianBlur4139" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4071">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4073"
+         d="m 515.86743,706.71995 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56717,-21.76037 19.16909,-37.38511 15.60192,-15.62478 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76034 -19.16909,37.38512 z"
+         style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4075"
+       x="-0.12008791"
+       width="1.2401758"
+       y="-0.11991222"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270455"
+         id="feGaussianBlur4077" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4083">
+      <path
+         sodipodi:nodetypes="csssc"
+         id="path4085"
+         d="m 515.86743,745.01066 c 15.60192,15.62474 19.16909,37.38511 19.16909,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62475 -19.16909,-37.38512 -19.16909,-37.38512 0,0 21.72851,3.5724 37.33043,19.19719 z"
+         style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4087"
+       x="-0.12008791"
+       width="1.2401758"
+       y="-0.11991222"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270455"
+         id="feGaussianBlur4089" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4157">
+      <path
+         style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+         d="m 269.47143,688.53202 c 15.60191,15.62474 19.16908,37.38511 19.16908,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62478 -19.16908,-37.38512 -19.16908,-37.38512 0,0 21.72851,3.57241 37.33043,19.19719 z"
+         id="path4159"
+         sodipodi:nodetypes="csssc" />
+    </clipPath>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4161"
+       x="-0.12008792"
+       width="1.2401758"
+       y="-0.11991221"
+       height="1.2398244">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="2.8270453"
+         id="feGaussianBlur4163" />
+    </filter>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4115"
+       id="linearGradient4042"
+       gradientUnits="userSpaceOnUse"
+       x1="177.01997"
+       y1="715.69196"
+       x2="190.86528"
+       y2="745.97327" />
+    <filter
+       inkscape:collect="always"
+       id="filter4144">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.52449438"
+         id="feGaussianBlur4146" />
+    </filter>
+    <radialGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4010"
+       id="radialGradient4016"
+       cx="190.50462"
+       cy="763.02698"
+       fx="190.50462"
+       fy="763.02698"
+       r="25.774156"
+       gradientTransform="matrix(-1.7164814,-0.90567257,0.15780843,-0.29738121,385.4992,1114.0077)"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-8">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-4" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-5" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="803.93988"
+       fx="190.11163"
+       cy="803.93988"
+       cx="190.11163"
+       gradientTransform="matrix(-7.100899,-3.7574025,0.65283651,-1.2337581,971.80341,1762.5095)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036"
+       xlink:href="#linearGradient4010-8"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-0">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-2" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-51" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="714.44397"
+       fx="196.29478"
+       cy="714.44397"
+       cx="196.29478"
+       gradientTransform="matrix(-0.59883175,-1.0815124,1.5121107,-0.83725328,-918.4216,953.96581)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-9"
+       xlink:href="#linearGradient4010-0"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-3">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-3" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-4" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="689.05688"
+       fx="174.41974"
+       cy="689.05688"
+       cx="174.41974"
+       gradientTransform="matrix(0.66761995,-1.2556356,0.62963254,0.33477488,-487.11758,207.64496)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-6"
+       xlink:href="#linearGradient4010-3"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4010-9">
+      <stop
+         style="stop-color:#ffffff;stop-opacity:1;"
+         offset="0"
+         id="stop4012-29" />
+      <stop
+         style="stop-color:#ffffff;stop-opacity:0;"
+         offset="1"
+         id="stop4014-0" />
+    </linearGradient>
+    <radialGradient
+       r="25.774157"
+       fy="846.39172"
+       fx="213.73914"
+       cy="846.39172"
+       cx="213.73914"
+       gradientTransform="matrix(2.1446353,0.54333384,-0.23562774,0.9300646,-19.777935,-754.51443)"
+       gradientUnits="userSpaceOnUse"
+       id="radialGradient4036-3"
+       xlink:href="#linearGradient4010-9"
+       inkscape:collect="always" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient4001-7"
+       id="linearGradient4007-3"
+       x1="325.10092"
+       y1="153.11827"
+       x2="312.28464"
+       y2="134.7825"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient4001-7">
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="0"
+         id="stop4003-4" />
+      <stop
+         style="stop-color:#d3d7cf;stop-opacity:1"
+         offset="1"
+         id="stop4005-5" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3967-5"
+       id="linearGradient3665-2"
+       x1="172.82822"
+       y1="711.43457"
+       x2="191.75198"
+       y2="752.31256"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       id="linearGradient3967-5"
+       inkscape:collect="always">
+      <stop
+         id="stop3969-4"
+         offset="0"
+         style="stop-color:#d3d7cf;stop-opacity:1" />
+      <stop
+         id="stop3971-7"
+         offset="1"
+         style="stop-color:#888a85;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3973"
+       id="linearGradient3979"
+       x1="310.58127"
+       y1="184.49281"
+       x2="319.74625"
+       y2="196.51363"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3973">
+      <stop
+         style="stop-color:#babdb6;stop-opacity:1;"
+         offset="0"
+         id="stop3975" />
+      <stop
+         style="stop-color:#888a85;stop-opacity:1"
+         offset="1"
+         id="stop3977" />
+    </linearGradient>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4113-4">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.52449425"
+         id="feGaussianBlur4115-4" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4124-3">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.24045921"
+         id="feGaussianBlur4126-0" />
+    </filter>
+    <filter
+       color-interpolation-filters="sRGB"
+       inkscape:collect="always"
+       id="filter4132-7">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.20006812"
+         id="feGaussianBlur4134-8" />
+    </filter>
+  </defs>
+  <metadata
+     id="metadata4">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage"; />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Lapo Calamandrei</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:source />
+        <cc:license
+           rdf:resource="" />
+        <dc:title />
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>keyboard</rdf:li>
+            <rdf:li>keys</rdf:li>
+            <rdf:li>configure</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:date />
+        <dc:rights>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:rights>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:publisher>
+        <dc:identifier />
+        <dc:relation />
+        <dc:language />
+        <dc:coverage />
+        <dc:description />
+        <dc:contributor>
+          <cc:Agent>
+            <dc:title />
+          </cc:Agent>
+        </dc:contributor>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="gnome-color-manager"
+     inkscape:groupmode="layer"
+     style="display:inline">
+    <g
+       inkscape:groupmode="layer"
+       id="layer6"
+       inkscape:label="baseplate"
+       style="display:none">
+      <rect
+         inkscape:label="48x48"
+         y="49.996326"
+         x="296.0625"
+         height="48"
+         width="48"
+         id="rect6284"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6592"
+         width="32"
+         height="32"
+         x="303"
+         y="125.99633"
+         inkscape:label="32x32" />
+      <rect
+         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect8104"
+         width="24"
+         height="24"
+         x="302"
+         y="176"
+         inkscape:label="24x24" />
+      <rect
+         inkscape:label="22x22"
+         y="177.05884"
+         x="303"
+         height="22"
+         width="22"
+         id="rect6749"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="rect6833"
+         width="16"
+         height="16"
+         x="303"
+         y="219"
+         inkscape:label="16x16" />
+      <rect
+         inkscape:label="256x256"
+         y="31.996323"
+         x="16.0625"
+         height="256"
+         width="256"
+         id="rect3068"
+         style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <text
+         xml:space="preserve"
+         style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
+         x="20.970737"
+         y="21.513618"
+         id="context"
+         inkscape:label="context"><tspan
+           sodipodi:role="line"
+           id="tspan2716"
+           x="20.970737"
+           y="21.513618">apps</tspan></text>
+      <text
+         inkscape:label="icon-name"
+         id="text3021"
+         y="21.513618"
+         x="191.97073"
+         style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
+         xml:space="preserve"
+         sodipodi:linespacing="125%"><tspan
+           y="21.513618"
+           x="191.97073"
+           id="tspan3023"
+           sodipodi:role="line">gnome-color-manager</tspan></text>
+    </g>
+    <g
+       inkscape:groupmode="layer"
+       id="layer8"
+       inkscape:label="small sizes"
+       style="display:inline" />
+    <g
+       inkscape:groupmode="layer"
+       id="layer7"
+       inkscape:label="hires"
+       style="display:inline" />
+  </g>
+  <g
+     id="g4017"
+     transform="translate(1.8006158,2.6673653)">
+    <path
+       transform="matrix(4.1368925,0,0,4.1487427,-624.76596,-2861.8892)"
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="2.236068"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       style="color:#000000;fill:url(#linearGradient4042);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="path3687"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z" />
+    <path
+       transform="matrix(4.1368925,0,0,4.1487427,-620.76596,-2857.8892)"
+       sodipodi:type="inkscape:offset"
+       inkscape:radius="2.236068"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       style="opacity:0.25;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4144);enable-background:new"
+       id="path4136"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+       clip-path="none" />
+    <path
+       clip-path="url(#clipPath3983)"
+       d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375
  -0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+       id="path3979"
+       style="opacity:0.96694186;color:#000000;fill:#f9f9f9;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.30022803;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4123);enable-background:new"
+       inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184
 .46875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+       inkscape:radius="2.236068"
+       sodipodi:type="inkscape:offset"
+       transform="matrix(4.1368925,0,0,4.1487427,-624.76596,-2861.8892)" />
+    <path
+       style="color:#000000;fill:#d5be00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 154.30526,107.37313 c 0,27.48513 -15.97192,49.76628 -15.97192,49.76628 0,0 -15.97193,-22.28115 -15.97193,-49.76628 0,-27.485174 15.97193,-49.766288 15.97193,-49.766288 0,0 15.97192,22.281114 15.97192,49.766288 z"
+       id="path3689"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-432.02409,-745.82249)"
+       clip-path="url(#clipPath4169)"
+       sodipodi:nodetypes="csssc"
+       id="path4165"
+       d="m 471.43078,685.92888 c 0,22.09674 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91299 -12.84203,-40.00973 0,-22.09678 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91296 12.84202,40.00974 z"
+       style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4173);enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3691"
+       d="m 154.30526,206.72332 c 0,27.48517 -15.97192,49.76628 -15.97192,49.76628 0,0 -15.97193,-22.28111 -15.97193,-49.76628 0,-27.48514 15.97193,-49.76629 15.97193,-49.76629 0,0 15.97192,22.28115 15.97192,49.76629 z"
+       style="color:#000000;fill:#23446e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3693"
+       d="m 187.93055,173.04523 c -27.44205,0 -49.68822,-15.99701 -49.68822,-15.99701 0,0 22.24617,-15.99701 49.68822,-15.99701 27.44202,0 49.68821,15.99701 49.68821,15.99701 0,0 -22.24619,15.99701 -49.68821,15.99701 z"
+       style="color:#000000;fill:#56aa07;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       style="color:#000000;fill:#ca0f0f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 88.736129,173.04523 c -27.442028,0 -49.688205,-15.99701 -49.688205,-15.99701 0,0 22.246177,-15.99701 49.688205,-15.99701 27.442081,0 49.688221,15.99701 49.688221,15.99701 0,0 -22.24614,15.99701 -49.688221,15.99701 z"
+       id="path3695"
+       sodipodi:nodetypes="csssc" />
+    <path
+       style="color:#000000;fill:#85b912;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 184.69769,133.23419 c -19.40447,19.43496 -46.42872,23.8785 -46.42872,23.8785 0,0 4.43657,-27.06673 23.84104,-46.50163 19.40447,-19.434952 46.42872,-23.87851 46.42872,-23.87851 0,0 -4.43657,27.06669 -23.84104,46.50164 z"
+       id="path3697"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-344.96347,-870.20793)"
+       clip-path="url(#clipPath4145)"
+       style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4149);enable-background:new"
+       d="m 401.43078,865.80173 c 0,22.09677 -12.84202,40.00973 -12.84202,40.00973 0,0 -12.84203,-17.91296 -12.84203,-40.00973 0,-22.09675 12.84203,-40.00974 12.84203,-40.00974 0,0 12.84202,17.91299 12.84202,40.00974 z"
+       id="path4141"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-344.96347,-696.06832)"
+       clip-path="url(#clipPath4181)"
+       sodipodi:nodetypes="csssc"
+       id="path4177"
+       d="m 348.71074,698.72614 c -22.06442,0 -39.95118,-12.86084 -39.95118,-12.86084 0,0 17.88676,-12.86084 39.95118,-12.86084 22.06446,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88673,12.86084 -39.95119,12.86084 z"
+       style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4189);enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3699"
+       d="m 114.55668,203.4854 c -19.404469,19.43495 -46.428719,23.87849 -46.428719,23.87849 0,0 4.436559,-27.06673 23.841028,-46.50163 19.404471,-19.43496 46.428721,-23.87851 46.428721,-23.87851 0,0 -4.43658,27.06673 -23.84103,46.50165 z"
+       style="color:#000000;fill:#593d5e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       sodipodi:nodetypes="csssc"
+       id="path3701"
+       d="m 114.55668,110.61106 c 19.40445,19.4349 23.84103,46.50163 23.84103,46.50163 0,0 -27.02425,-4.44354 -46.428721,-23.8785 C 72.56452,113.79924 68.127961,86.73255 68.127961,86.73255 c 0,0 27.02425,4.443558 46.428719,23.87851 z"
+       style="color:#000000;fill:#c96300;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-257.90286,-745.82249)"
+       clip-path="url(#clipPath4197)"
+       style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4201);enable-background:new"
+       d="m 299.47143,763.19859 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56716,-21.76037 19.16908,-37.38511 15.60192,-15.62479 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76037 -19.16908,37.38512 z"
+       id="path4193"
+       sodipodi:nodetypes="csssc" />
+    <path
+       style="color:#000000;fill:#3f7bba;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 184.69769,180.86226 c 19.40447,19.4349 23.84104,46.50163 23.84104,46.50163 0,0 -27.02425,-4.44354 -46.42872,-23.87849 -19.40447,-19.43492 -23.84104,-46.50165 -23.84104,-46.50165 0,0 27.02425,4.44355 46.42872,23.87851 z"
+       id="path3703"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-481.77301,-745.82249)"
+       clip-path="url(#clipPath4133)"
+       style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4137);enable-background:new"
+       d="m 538.46677,738.72614 c -22.06443,0 -39.95119,-12.86084 -39.95119,-12.86084 0,0 17.88676,-12.86084 39.95119,-12.86084 22.06442,0 39.95119,12.86084 39.95119,12.86084 0,0 -17.88677,12.86084 -39.95119,12.86084 z"
+       id="path4129"
+       sodipodi:nodetypes="csssc" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-456.89855,-745.82249)"
+       clip-path="url(#clipPath4071)"
+       sodipodi:nodetypes="csssc"
+       id="path4067"
+       d="m 515.86743,706.71995 c -15.60192,15.62478 -37.33043,19.19718 -37.33043,19.19718 0,0 3.56717,-21.76037 19.16909,-37.38511 15.60192,-15.62478 37.33043,-19.19719 37.33043,-19.19719 0,0 -3.56717,21.76034 -19.16909,37.38512 z"
+       style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4075);enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-456.89855,-745.82249)"
+       clip-path="url(#clipPath4083)"
+       sodipodi:nodetypes="csssc"
+       id="path4079"
+       d="m 515.86743,745.01066 c 15.60192,15.62474 19.16909,37.38511 19.16909,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62475 -19.16909,-37.38512 -19.16909,-37.38512 0,0 21.72851,3.5724 37.33043,19.19719 z"
+       style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4087);enable-background:new" />
+    <path
+       transform="matrix(1.2437231,0,0,1.2438544,-220.59116,-745.82249)"
+       clip-path="url(#clipPath4157)"
+       style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4161);enable-background:new"
+       d="m 269.47143,688.53202 c 15.60191,15.62474 19.16908,37.38511 19.16908,37.38511 0,0 -21.72851,-3.5724 -37.33043,-19.19718 -15.60192,-15.62478 -19.16908,-37.38512 -19.16908,-37.38512 0,0 21.72851,3.57241 37.33043,19.19719 z"
+       id="path4153"
+       sodipodi:nodetypes="csssc" />
+    <path
+       d="m 187.625,727.61218 c 0,1.86396 -1.51104,3.375 -3.375,3.375 -1.86396,0 -3.375,-1.51104 -3.375,-3.375 0,-1.86396 1.51104,-3.375 3.375,-3.375 1.86396,0 3.375,1.51104 3.375,3.375 z"
+       sodipodi:ry="3.375"
+       sodipodi:rx="3.375"
+       sodipodi:cy="727.61218"
+       sodipodi:cx="184.25"
+       id="path3705"
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       sodipodi:type="arc"
+       transform="matrix(6.5480183,0,0,6.5667752,-1069.0159,-4621.279)" />
+    <path
+       transform="matrix(14.096078,0,0,14.136457,-2459.746,-10129.072)"
+       sodipodi:type="arc"
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       id="path3707"
+       sodipodi:cx="184.25"
+       sodipodi:cy="727.61218"
+       sodipodi:rx="3.375"
+       sodipodi:ry="3.375"
+       d="m 187.625,727.61218 c 0,1.86396 -1.51104,3.375 -3.375,3.375 -1.86396,0 -3.375,-1.51104 -3.375,-3.375 0,-1.86396 1.51104,-3.375 3.375,-3.375 1.86396,0 3.375,1.51104 3.375,3.375 z" />
+    <path
+       style="opacity:0.1;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+       d="m 137.44938,85.332635 c -4.15028,0 -8.20042,0.379502 -12.15625,1.0625 -1.72824,6.374669 -2.9375,13.47119 -2.9375,20.968745 0,5.0399 0.52913,9.91534 1.40625,14.5 -2.6169,-3.86387 -5.65983,-7.6855 -9.21875,-11.25 -5.37148,-5.37991 -11.32311,-9.60049 -17.125,-12.906245 -7.18812,4.909705 -13.43098,11.100565 -18.40625,18.249995 3.31137,5.85188 7.55964,11.86364 12.96875,17.28125 3.55235,3.55793 7.33696,6.60095 11.1875,9.21875 -4.56742,-0.87461 -9.41806,-1.40625 -14.4375,-1.40625 -7.65792,0 -14.89692,1.26595 -21.375,3.0625 -0.73474,4.11477 -1.15625,8.36076 -1.15625,12.6875 0,4.52451 0.44816,8.92764 1.25,13.21875 6.45402,1.78244 13.66066,3.03125 21.28125,3.03125 5.00833,0 9.8477,-0.53507 14.40625,-1.40625 -3.83908,2.61272 -7.61423,5.67117 -11.15625,9.21875 -5.32369,5.33204 -9.5243,11.23579 -12.8125,17 5.04292,7.1852 11.37508,13.38158 18.65625,18.28125 5.67081,-3.27029 11.47477,-7.40404 16.71875,-12.65625 3.55892,-3.5645 6.60185,-7.38613 9.21875,-11.25 -0.87712,4.58466 -1.4
 0625,9.46009 -1.40625,14.5 0,7.27634 1.13547,14.1779 2.78125,20.40625 4.00527,0.70084 8.1072,1.09375 12.3125,1.09375 4.84298,0 9.58458,-0.51403 14.15625,-1.4375 1.59587,-6.13752 2.6875,-12.92118 2.6875,-20.0625 0,-5.04013 -0.52905,-9.91516 -1.40625,-14.5 2.61718,3.86448 5.65928,7.68494 9.21875,11.25 4.94856,4.95633 10.38407,8.94403 15.75,12.125 7.41659,-5.13157 13.82787,-11.61275 18.84375,-19.125 -3.16079,-5.32159 -7.10049,-10.71781 -12,-15.625 -3.54201,-3.54758 -7.34841,-6.60603 -11.1875,-9.21875 4.56743,0.87461 9.38683,1.40625 14.40625,1.40625 6.90925,0 13.49045,-1.01346 19.46875,-2.53125 0.86405,-4.44743 1.3125,-9.0178 1.3125,-13.71875 0,-4.50317 -0.42428,-8.91536 -1.21875,-13.1875 -6.00406,-1.53144 -12.61592,-2.5625 -19.5625,-2.5625 -5.04162,0 -9.8836,0.52476 -14.46875,1.40625 3.85782,-2.62102 7.69109,-5.65424 11.25,-9.21875 4.98494,-4.99277 8.96814,-10.4946 12.15625,-15.90625 -4.94351,-7.47022 -11.24797,-13.95313 -18.5625,-19.093745 -5.50721,3.222955 -11.10419,7.283705 
 -16.1875,12.374995 -3.55947,3.56505 -6.60157,7.38552 -9.21875,11.25 0.8772,-4.58484 1.40625,-9.45987 1.40625,-14.5 0,-7.36254 -1.16592,-14.339257 -2.84375,-20.624995 -4.5237,-0.903292 -9.21157,-1.40625 -14,-1.40625 z"
+       id="path3906"
+       inkscape:connector-curvature="0" />
+  </g>
+  <path
+     transform="matrix(4.1368925,0,0,4.1487427,-622.96534,-2859.2218)"
+     style="opacity:0.96694186;color:#000000;fill:none;stroke:url(#radialGradient4016);stroke-width:0.48276371;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 189.5628,713.65655 c -0.67039,-6.18808 -3.875,-10.84375 -3.875,-10.84375 -0.0358,-0.0504 -0.0236,-0.0145 -0.0625,-0.0625 -0.0389,-0.048 -0.0206,-0.017 -0.0625,-0.0625 -0.0419,-0.0455 -0.0179,-0.0509 -0.0625,-0.0937 -0.0446,-0.0428 -0.0153,-0.0226 -0.0625,-0.0625 -0.0472,-0.0399 -0.0129,0.006 -0.0625,-0.0313 -0.0496,-0.0369 -0.0419,-0.0288 -0.0937,-0.0625 -0.0519,-0.0337 -0.009,-0.0321 -0.0625,-0.0625 -0.0539,-0.0304 -0.0381,-0.004 -0.0937,-0.0313 -0.0557,-0.0269 -0.0365,-0.008 -0.0937,-0.0313 -0.0572,-0.0234 -0.0352,-0.0427 -0.0937,-0.0625 -0.0586,-0.0198 -0.034,0.016 -0.0937,0 -0.0597,-0.016 -0.0332,-0.019 -0.0937,-0.0313 -0.0606,-0.0123 -0.0325,-0.0228 -0.0937,-0.0313 -0.0613,-0.008 -0.0321,0.005 -0.0937,0 -0.0617,-0.005 -0.0319,7e-4 -0.0937,0 -0.0412,-4.7e-4 -0.048,-7.2e-4 -0.0625,0 -0.0242,0.002 -0.0247,-7.7e-4 -0.0313,0 -0.007,7.7e-4 -0.007,-0.003 -0.0313,0 l -6.5e-4,-10e-5 c -0.0482,0.007 -0.0459,0.022 -0.0937,0.0313 -0.0482,0.008 -0.046,-0.01 -0.0937,0 -0.04
 78,0.01 -0.0153,0.0189 -0.0625,0.0313 -0.0472,0.0123 -0.016,-0.0147 -0.0625,0 -0.0465,0.0147 -0.048,0.0143 -0.0937,0.0313 -0.0457,0.0169 -0.0177,0.0121 -0.0625,0.0313 -0.0448,0.0192 -0.0187,0.01 -0.0625,0.0313 -0.0438,0.0214 -0.0198,0.008 -0.0625,0.0313 -0.0427,0.0235 -0.021,0.006 -0.0625,0.0313 -0.0415,0.0256 -0.0223,0.0349 -0.0625,0.0625 -0.0402,0.0276 -0.0237,0.002 -0.0625,0.0313 -0.0388,0.0296 -0.0252,0.031 -0.0625,0.0625 -0.0373,0.0315 -0.0268,-0.002 -0.0625,0.0313 -0.0357,0.0333 -0.0285,0.0275 -0.0625,0.0625 -0.034,0.035 9.5e-4,0.0258 -0.0313,0.0625 -0.0322,0.0367 -0.0322,-0.007 -0.0625,0.0313 -0.0303,0.0382 -0.003,0.0228 -0.0313,0.0625 0,0 -3.22573,4.66128 -3.90625,10.84375 -0.0684,0.49864 -0.75995,0.77902 -1.15625,0.46875 -4.85675,-3.89348 -10.4375,-4.90625 -10.4375,-4.90625 -0.0578,-0.0101 -0.0354,-0.0246 -0.0937,-0.0313 -0.0583,-0.007 -0.0351,0.003 -0.0937,0 -0.0586,-0.003 -0.0351,-2.9e-4 -0.0937,0 -0.0587,2.9e-4 -0.0352,-0.004 -0.0937,0 -0.0586,0.004 -0.004,-0.007
  -0.0625,0 -0.0582,0.007 -0.036,0.0205 -0.0937,0.0313 -0.0577,0.0107 -0.0368,-0.0141 -0.0937,0 -0.057,0.0141 -0.0377,0.0137 -0.0937,0.0313 -0.056,0.0175 -0.0389,0.0104 -0.0937,0.0313 -0.0549,0.0208 -0.009,0.007 -0.0625,0.0313 -0.0535,0.024 -0.0417,0.004 -0.0937,0.0313 -0.052,0.0272 -0.0122,0.0323 -0.0625,0.0625 -0.0503,0.0302 -0.0453,-0.002 -0.0937,0.0313 -0.0484,0.0332 -0.0161,0.0265 -0.0625,0.0625 -0.0464,0.036 -0.0184,0.0238 -0.0625,0.0625 -0.0441,0.0387 -0.0207,0.0213 -0.0625,0.0625 -0.0418,0.0412 -0.0233,0.0188 -0.0625,0.0625 -0.0392,0.0437 -0.0259,0.0166 -0.0625,0.0625 -0.0366,0.0459 -0.0288,0.0457 -0.0625,0.0937 -0.0337,0.048 -0.0317,0.0126 -0.0625,0.0625 -0.0308,0.0499 -0.003,0.0108 -0.0313,0.0625 -0.0278,0.0517 -0.007,0.0405 -0.0313,0.0937 -0.0247,0.0533 -0.041,0.0391 -0.0625,0.0937 -0.0215,0.0546 -0.0131,0.007 -0.0313,0.0625 -0.0182,0.0558 0.0148,0.037 0,0.0937 -0.0148,0.0568 -0.0198,0.0362 -0.0313,0.0937 -0.0114,0.0576 0.008,0.0356 0,0.0937 -0.008,0.0581 -0.0268,0
 .0352 -0.0313,0.0937 -0.004,0.0585 10e-4,0.0351 0,0.0937 -0.001,0.0587 -0.002,0.0351 0,0.0937 0.002,0.0586 -0.006,0.004 0,0.0625 0.006,0.0584 0.0218,0.0358 0.0313,0.0937 0,0 1.00861,5.6153 4.90625,10.46875"
+     id="path4008"
+     sodipodi:nodetypes="ccsssssssssssssssssccssssssssssssssssccccssssssssssssssssssssssssssssssscc" />
+  <path
+     style="opacity:0.96694186000000004;color:#000000;fill:none;stroke:url(#radialGradient4036);stroke-width:1.99999988000000006;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 139.64493,53.973461 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.34449,19.338451 -16.15973,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 94.0
 85547,87.348105 70.998584,83.146383 70.998584,83.146383 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0.0
 6887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.258556,
 0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.258556,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.0331,
 0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.167131,0.17384 0.0815,0.0958 0.258556,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 c -16.125566,20.13759 -20.298077,43.43402 -20.298077,43.43402 -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.2315 
 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627,0 
 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.15974,45.11758 16.15974,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.38763,
 0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24449,0
 .0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.22943
  0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -0.001,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968,-0.2
 2113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.25855
 ,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 0.001,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.15141,-0
 .193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.98469
 76 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0032 -
 0.029,-0.01245 -0.12949,0 z"
+     id="path4008-6" />
+  <path
+     style="opacity:0.96694186000000004;color:#000000;fill:none;stroke:url(#radialGradient4036-9);stroke-width:1.99999988000000006;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 139.64493,53.973461 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.34449,19.338451 -16.15973,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 94.0
 85547,87.348105 70.998584,83.146383 70.998584,83.146383 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0.0
 6887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.258556,
 0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.258556,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.0331,
 0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.167131,0.17384 0.0815,0.0958 0.258556,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 c -16.125566,20.13759 -20.298077,43.43402 -20.298077,43.43402 -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.2315 
 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627,0 
 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.15974,45.11758 16.15974,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.38763,
 0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24449,0
 .0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.22943
  0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -0.001,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968,-0.2
 2113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.25855
 ,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 0.001,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.15141,-0
 .193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.98469
 76 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0032 -
 0.029,-0.01245 -0.12949,0 z"
+     id="path4008-7" />
+  <path
+     style="opacity:0.96694186000000004;color:#000000;fill:none;stroke:url(#radialGradient4036-6);stroke-width:1.99999988000000006;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 139.64493,53.973461 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.34449,19.338451 -16.15973,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 94.0
 85547,87.348105 70.998584,83.146383 70.998584,83.146383 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0.0
 6887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.258556,
 0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.258556,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.0331,
 0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.167131,0.17384 0.0815,0.0958 0.258556,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 c -16.125566,20.13759 -20.298077,43.43402 -20.298077,43.43402 -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.2315 
 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627,0 
 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.15974,45.11758 16.15974,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.38763,
 0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24449,0
 .0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.22943
  0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -0.001,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968,-0.2
 2113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.25855
 ,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 0.001,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.15141,-0
 .193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.98469
 76 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0032 -
 0.029,-0.01245 -0.12949,0 z"
+     id="path4008-1" />
+  <path
+     style="opacity:0.96694186000000004;color:#000000;fill:none;stroke:url(#radialGradient4036-3);stroke-width:1.99999988000000006;stroke-miterlimit:4;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 139.64493,53.973461 c -0.19939,0.02904 -0.18988,0.09127 -0.38762,0.129856 -0.1994,0.03319 -0.1903,-0.04149 -0.38763,0 -0.19774,0.04149 -0.0633,0.07841 -0.25856,0.129855 -0.19526,0.05103 -0.0662,-0.06099 -0.25855,0 -0.19237,0.06099 -0.19857,0.05933 -0.38763,0.129856 -0.18905,0.07011 -0.0732,0.0502 -0.25855,0.129856 -0.18534,0.07966 -0.0774,0.04149 -0.25856,0.129855 -0.1812,0.08878 -0.0819,0.03319 -0.25856,0.129856 -0.17664,0.0975 -0.0869,0.02489 -0.25855,0.129856 -0.17168,0.106207 -0.0922,0.144791 -0.25856,0.259296 -0.1663,0.114505 -0.098,0.0083 -0.25855,0.129856 -0.16051,0.122802 -0.10425,0.128611 -0.25856,0.259296 -0.1543,0.130685 -0.11087,-0.0083 -0.25855,0.129856 -0.14769,0.138153 -0.11791,0.11409 -0.25856,0.259296 -0.14065,0.145206 0.004,0.107038 -0.12948,0.259297 -0.13321,0.152258 -0.13321,-0.02904 -0.25856,0.129855 -0.12535,0.158482 -0.0124,0.09459 -0.12949,0.259297 0,0 -13.34449,19.338451 -16.15973,44.98793 a 2.9761723,2.9846976 0 0 1 -4.78328,1.94472 C 94.0
 85547,87.348105 70.998584,83.146383 70.998584,83.146383 c -0.239112,-0.0419 -0.146446,-0.102059 -0.387627,-0.129856 -0.241181,-0.02904 -0.145205,0.01245 -0.387627,0 -0.242422,-0.01245 -0.145205,-0.0012 -0.387626,0 -0.242836,0.0012 -0.145619,-0.0166 -0.387627,0 -0.242422,0.01659 -0.01655,-0.02904 -0.258556,0 -0.240767,0.02904 -0.148928,0.08505 -0.387627,0.129856 -0.238699,0.04439 -0.152238,-0.0585 -0.387627,0 -0.235803,0.0585 -0.155961,0.05684 -0.387627,0.129855 -0.231666,0.0726 -0.160925,0.04315 -0.387626,0.129856 -0.227116,0.08629 -0.03723,0.02904 -0.258556,0.129856 -0.221324,0.09957 -0.172509,0.01659 -0.387627,0.129855 -0.215118,0.112846 -0.05047,0.134005 -0.258556,0.259297 -0.208085,0.125292 -0.187401,-0.0083 -0.387627,0.129855 -0.200225,0.137738 -0.0666,0.109942 -0.258555,0.259297 -0.191952,0.149354 -0.07612,0.09874 -0.258556,0.259296 -0.182437,0.160556 -0.08563,0.08837 -0.258556,0.259296 -0.172922,0.170929 -0.09639,0.078 -0.258556,0.259297 -0.162166,0.1813 -0.107145,0.0
 6887 -0.258556,0.259296 -0.15141,0.190428 -0.119142,0.189598 -0.258555,0.388738 -0.139414,0.199139 -0.13114,0.05227 -0.258556,0.259296 -0.127416,0.207022 -0.01241,0.04481 -0.129485,0.259296 -0.115005,0.21449 -0.02896,0.168024 -0.129485,0.388738 -0.102181,0.221128 -0.169612,0.162215 -0.258555,0.388737 -0.08894,0.226521 -0.05419,0.02904 -0.129485,0.259296 -0.07529,0.2315 0.06123,0.153504 0,0.388737 -0.06123,0.235649 -0.08191,0.150185 -0.129485,0.388738 -0.04716,0.238967 0.03309,0.147695 0,0.388737 -0.03309,0.241042 -0.110869,0.146035 -0.129485,0.388737 -0.01655,0.242701 0.0041,0.145621 0,0.388737 -0.0041,0.243531 -0.0083,0.145621 0,0.388737 0.0083,0.243117 -0.02482,0.01659 0,0.259297 0.02482,0.242286 0.09018,0.148525 0.129485,0.388737 0,0 4.172511,23.296433 20.296629,43.432153 a 2.9761723,2.9846976 0 0 1 -1.939168,4.79698 c -25.613529,2.82185 -44.988706,16.20603 -44.988706,16.20603 -0.195262,0.14147 -0.07198,-0.0249 -0.258556,0.12985 -0.186574,0.15268 -0.0815,0.0958 -0.258556,
 0.2593 -0.177059,0.16346 -0.09143,0.0855 -0.258556,0.2593 -0.16713,0.17383 -0.101767,0.0759 -0.258555,0.25929 -0.156789,0.18338 -0.112938,0.19665 -0.258556,0.38874 -0.145619,0.19209 0.0041,0.0589 -0.129485,0.2593 -0.134035,0.20038 -0.136517,0.051 -0.258556,0.25929 -0.122038,0.20827 -0.02068,0.17383 -0.129485,0.38874 -0.109627,0.2149 -0.161752,0.0373 -0.258555,0.2593 -0.0968,0.22112 -0.04592,0.16263 -0.129485,0.38873 -0.08357,0.22652 -0.05916,0.15807 -0.129485,0.38874 -0.06991,0.23108 0.05626,0.15433 0,0.38874 -0.05626,0.23482 -0.08688,0.0207 -0.129484,0.25929 -0.04261,0.23773 0.02896,0.14936 0,0.38874 -0.02896,0.2398 -0.115006,0.14811 -0.129485,0.38874 -0.01241,0.24104 0,0.14769 0,0.38874 0,0.24145 -0.01241,0.14811 0,0.38873 0.01241,0.24104 0.10094,0.14936 0.129485,0.38874 0.02896,0.2398 -0.04261,0.15143 0,0.38874 0.04261,0.23772 0.07281,0.0249 0.129484,0.25929 0.05626,0.23482 -0.06991,0.15807 0,0.38874 0.06991,0.23109 0.04592,0.16263 0.129485,0.38874 0.08357,0.22652 0.0331,
 0.16802 0.129485,0.38873 0.0968,0.22113 0.148928,0.0444 0.258555,0.2593 0.109628,0.21491 0.0083,0.18089 0.129485,0.38874 0.122039,0.20827 0.124521,0.0589 0.258556,0.25929 0.134035,0.20039 -0.01655,0.0672 0.129485,0.2593 0.145618,0.19209 0.101767,0.20578 0.258556,0.38874 0.156788,0.18337 0.09143,0.0855 0.258555,0.25929 0.167131,0.17384 0.0815,0.0958 0.258556,0.2593 0.177059,0.16346 0.07198,0.10662 0.258556,0.2593 0.186574,0.15267 0.06329,-0.0125 0.258556,0.12985 0,0 19.261206,13.27781 44.859428,16.07638 a 2.9761723,2.9846976 0 0 1 2.068446,4.79698 c -16.125566,20.13759 -20.298077,43.43402 -20.298077,43.43402 -0.03723,0.24021 -0.104663,0.14687 -0.129484,0.38874 -0.02482,0.24229 0.0083,0.0166 0,0.2593 -0.0083,0.24311 -0.0041,0.14562 0,0.38873 0.0041,0.24353 -0.01655,0.14604 0,0.38874 0.01655,0.2427 0.09639,0.1477 0.129484,0.38874 0.03309,0.24104 -0.04716,0.15018 0,0.38873 0.04716,0.23897 0.06785,0.15351 0.129485,0.38874 0.06123,0.23565 -0.07529,0.15765 0,0.38874 0.07529,0.2315 
 0.04137,0.0332 0.129485,0.2593 0.08894,0.22652 0.156374,0.16802 0.258556,0.38873 0.102181,0.22113 0.01241,0.17466 0.129484,0.38874 0.115006,0.21449 0.0017,0.0523 0.129485,0.2593 0.127416,0.20702 0.119142,0.0601 0.258556,0.25929 0.139413,0.19914 0.107145,0.19831 0.258556,0.38874 0.15141,0.19043 0.09639,0.078 0.258555,0.2593 0.162167,0.1813 0.08563,0.0884 0.258556,0.25929 0.172922,0.17093 0.07612,0.0987 0.258556,0.2593 0.182437,0.16056 0.0666,0.10994 0.258556,0.2593 0.191951,0.14935 0.05833,0.12155 0.258555,0.25929 0.200226,0.13774 0.179955,0.004 0.387627,0.12986 0.208086,0.12529 0.04344,0.14645 0.258556,0.25929 0.215118,0.11285 0.166303,0.029 0.387627,0.12986 0.221324,0.0996 0.0331,0.0431 0.258556,0.12985 0.227115,0.0863 0.155961,0.0568 0.387626,0.12986 0.231666,0.0726 0.152238,0.0709 0.387627,0.12986 0.235803,0.0585 0.148928,-0.0444 0.387627,0 0.238699,0.0444 0.14686,0.0996 0.387627,0.12985 0.240767,0.029 0.01655,-0.0166 0.258556,0 0.242422,0.0166 0.145205,-0.001 0.387627,0 
 0.242835,10e-4 0.145205,0.0125 0.387626,0 0.242422,-0.0124 0.146446,0.029 0.387627,0 0.241181,-0.029 0.148928,-0.0875 0.387627,-0.12985 0,0 23.086963,-4.20173 43.178814,-20.35477 a 2.9761723,2.9846976 0 0 1 4.78328,1.94472 c 2.81305,25.66827 16.15974,45.11758 16.15974,45.11758 0.14106,0.19582 -0.0248,0.0722 0.12948,0.25929 0.15224,0.18711 0.0956,0.0817 0.25856,0.2593 0.16299,0.17757 0.0852,0.0917 0.25855,0.2593 0.17334,0.16761 0.0757,0.10206 0.25856,0.25929 0.18285,0.15724 0.19609,0.11326 0.38763,0.2593 0.19153,0.14604 0.0587,-0.004 0.25855,0.12986 0.19981,0.13441 0.0509,0.1369 0.25856,0.25929 0.20767,0.12239 0.17333,0.0208 0.38762,0.12986 0.2143,0.10994 0.0372,0.16221 0.25856,0.25929 0.2205,0.0971 0.16217,0.0461 0.38763,0.12986 0.22587,0.0838 0.15761,0.0593 0.38762,0.12985 0.23043,0.0701 0.1539,-0.0564 0.38763,0 0.23415,0.0564 0.0207,0.0871 0.25856,0.12986 0.23704,0.0427 0.14892,-0.029 0.38762,0 0.23912,0.029 0.14769,0.11534 0.38763,0.12986 0.24035,0.0124 0.14727,0 0.38763,
 0 0.24076,0 0.14768,0.0124 0.38762,0 0.24036,-0.0125 0.14893,-0.10123 0.38763,-0.12986 0.23911,-0.029 0.151,0.0427 0.38763,0 0.23704,-0.0427 0.0248,-0.073 0.25855,-0.12986 0.23415,-0.0564 0.15762,0.0701 0.38763,0 0.23042,-0.0701 0.16217,-0.0461 0.38763,-0.12985 0.22587,-0.0838 0.16754,-0.0332 0.38762,-0.12986 0.2205,-0.0971 0.0443,-0.14935 0.25856,-0.25929 0.21429,-0.10994 0.18037,-0.008 0.38763,-0.12986 0.20767,-0.12239 0.0587,-0.12488 0.25855,-0.25929 0.19981,-0.13442 0.067,0.0166 0.25856,-0.12986 0.19154,-0.14604 0.20519,-0.10206 0.38762,-0.2593 0.18286,-0.15723 0.0852,-0.0917 0.25856,-0.25929 0.17334,-0.16761 0.0956,-0.0817 0.25856,-0.2593 0.16299,-0.17757 0.10631,-0.0722 0.25855,-0.2593 0.15224,-0.1871 -0.0124,-0.0635 0.12949,-0.25929 0,0 13.27197,-19.40102 16.03045,-45.11758 a 2.9761723,2.9846976 0 0 1 4.78329,-2.07437 c 20.12395,16.24872 43.30809,20.48442 43.30809,20.48442 0.24118,0.0431 0.14438,0.10123 0.38763,0.12985 0.24325,0.029 0.14313,-0.0124 0.38762,0 0.24449,0
 .0125 0.14273,10e-4 0.38763,0 0.2449,-9.9e-4 0.14355,0.0166 0.38763,0 0.24449,-0.0166 0.14479,0.029 0.38762,0 0.24325,-0.029 0.0166,-0.0846 0.25856,-0.12985 0.24077,-0.0452 0.15017,0.0593 0.38763,0 0.23745,-0.0593 0.1543,-0.056 0.38762,-0.12986 0.23374,-0.0738 0.15886,-0.0419 0.38763,-0.12986 0.22877,-0.0875 0.16465,-0.029 0.38763,-0.12985 0.22298,-0.10123 0.0418,-0.14479 0.25855,-0.2593 0.21678,-0.1145 0.1783,-0.002 0.38763,-0.12985 0.20933,-0.12737 0.0571,-0.11949 0.25856,-0.2593 0.20146,-0.13981 0.19526,0.0207 0.38762,-0.12985 0.19278,-0.15185 0.0753,-0.0963 0.25856,-0.2593 0.18326,-0.16305 0.0852,-0.0855 0.25855,-0.2593 0.17334,-0.17383 0.096,-0.0755 0.25856,-0.25929 0.16258,-0.18379 0.10715,-0.066 0.25856,-0.2593 0.15141,-0.19333 -0.008,-0.18669 0.12948,-0.38874 0.13941,-0.20204 0.13155,-0.0494 0.25856,-0.25929 0.127,-0.20993 0.0165,-0.17176 0.12948,-0.38874 0.11418,-0.2174 0.15762,-0.0373 0.25856,-0.2593 0.10094,-0.22361 0.0418,-0.15931 0.12948,-0.38873 0.0873,-0.22943
  0.0558,-0.15475 0.12949,-0.38874 0.0736,-0.23441 0.0699,-0.1506 0.12948,-0.38874 0.0592,-0.23855 -0.0451,-0.14728 0,-0.38874 0.0451,-0.24145 0.0989,-0.0166 0.12949,-0.25929 0.0289,-0.24395 -0.0165,-0.14396 0,-0.38874 0.0165,-0.24519 -0.001,-0.14313 0,-0.38874 9.9e-4,-0.2456 0.0124,-0.14354 0,-0.38873 -0.0124,-0.2452 0.0289,-0.1448 0,-0.38874 -0.029,-0.24395 -0.0865,-0.14687 -0.12949,-0.38874 0,0 -4.28359,-23.17305 -20.42591,-43.3025 a 2.9761723,2.9846976 0 0 1 2.06845,-4.79698 c 25.617,-2.79642 44.98871,-16.07638 44.98871,-16.07638 0.19526,-0.14147 0.072,0.0249 0.25855,-0.12986 0.18658,-0.15267 0.0815,-0.0958 0.25856,-0.25929 0.17706,-0.16346 0.0914,-0.0855 0.25855,-0.2593 0.16713,-0.17383 0.10177,-0.0759 0.25856,-0.2593 0.15679,-0.18337 0.11294,-0.19665 0.25856,-0.38873 0.14561,-0.19209 -0.004,-0.0589 0.12948,-0.2593 0.13404,-0.20039 0.13652,-0.051 0.25856,-0.2593 0.12203,-0.20826 0.0207,-0.17383 0.12948,-0.38873 0.10963,-0.21491 0.16175,-0.0373 0.25856,-0.2593 0.0968,-0.2
 2113 0.0459,-0.16263 0.12948,-0.38874 0.0836,-0.22652 0.0592,-0.15807 0.12949,-0.38874 0.0699,-0.23108 -0.0563,-0.15433 0,-0.38873 0.0563,-0.23482 0.0869,-0.0207 0.12948,-0.2593 0.0426,-0.23772 -0.029,-0.14935 0,-0.38874 0.029,-0.23979 0.11501,-0.14811 0.12949,-0.38873 0.0124,-0.24105 0,-0.1477 0,-0.38874 0,-0.24146 0.0124,-0.14811 0,-0.38874 -0.0124,-0.24104 -0.10094,-0.14935 -0.12949,-0.38873 -0.029,-0.2398 0.0426,-0.15143 0,-0.38874 -0.0426,-0.23773 -0.0728,-0.0249 -0.12948,-0.2593 -0.0563,-0.23482 0.0699,-0.15807 0,-0.38874 -0.0699,-0.23108 -0.0459,-0.16263 -0.12949,-0.38873 -0.0836,-0.22652 -0.0331,-0.16803 -0.12948,-0.38874 -0.0968,-0.22113 -0.14893,-0.0444 -0.25856,-0.2593 -0.10963,-0.2149 -0.008,-0.18088 -0.12948,-0.38873 -0.12204,-0.20827 -0.12452,-0.0589 -0.25856,-0.2593 -0.13404,-0.20038 0.0165,-0.0672 -0.12948,-0.2593 -0.14562,-0.19208 -0.10177,-0.20577 -0.25856,-0.38873 -0.15679,-0.18338 -0.0914,-0.0855 -0.25856,-0.2593 -0.16713,-0.17383 -0.0815,-0.0958 -0.25855
 ,-0.2593 -0.17706,-0.16346 -0.072,-0.10662 -0.25856,-0.25929 -0.18657,-0.15268 -0.0633,0.0124 -0.25855,-0.12986 0,0 -19.48568,-13.38633 -45.11799,-16.20603 a 2.9761723,2.9846976 0 0 1 -1.93379,-4.80009 c 16.14228,-20.12945 20.42591,-43.302502 20.42591,-43.302502 0.043,-0.241872 0.10094,-0.144791 0.12948,-0.388737 0.029,-0.243946 -0.0124,-0.143547 0,-0.388737 0.0124,-0.245191 0.001,-0.143132 0,-0.388738 -9.9e-4,-0.245605 0.0165,-0.143961 0,-0.388737 -0.0165,-0.245191 0.029,-0.145206 0,-0.388737 -0.029,-0.243946 -0.0844,-0.01659 -0.12948,-0.259296 -0.0451,-0.241457 0.0592,-0.1506 0,-0.388738 -0.0592,-0.238552 -0.0558,-0.154748 -0.12949,-0.388737 -0.0736,-0.234404 -0.0418,-0.159312 -0.12948,-0.388737 -0.0873,-0.229425 -0.029,-0.16512 -0.12949,-0.388737 -0.10094,-0.223617 -0.14437,-0.0419 -0.25855,-0.259297 -0.11418,-0.217394 -0.002,-0.17881 -0.12949,-0.388737 -0.127,-0.209926 -0.11914,-0.05725 -0.25855,-0.259296 -0.13941,-0.202044 0.0207,-0.195821 -0.12949,-0.388737 -0.15141,-0
 .193332 -0.096,-0.07551 -0.25855,-0.259297 -0.16258,-0.183789 -0.0852,-0.08546 -0.25856,-0.259296 -0.17333,-0.173833 -0.0753,-0.09625 -0.25855,-0.259297 -0.18327,-0.163045 -0.0658,-0.107452 -0.25856,-0.259296 -0.19278,-0.151844 -0.18657,0.0083 -0.38763,-0.129856 -0.20146,-0.139812 -0.0492,-0.13193 -0.25855,-0.259296 -0.20933,-0.127367 -0.17127,-0.01659 -0.38763,-0.129856 -0.21677,-0.114505 -0.0372,-0.158067 -0.25855,-0.259296 -0.22298,-0.10123 -0.15886,-0.0419 -0.38763,-0.129856 -0.22877,-0.08754 -0.15431,-0.05601 -0.38763,-0.129856 -0.23373,-0.07385 -0.15017,-0.07011 -0.38763,-0.129855 -0.23745,-0.05933 -0.14685,0.04522 -0.38762,0 -0.24077,-0.04522 -0.0165,-0.09915 -0.25856,-0.129856 -0.24325,-0.02904 -0.14355,0.01659 -0.38762,0 -0.24449,-0.0166 -0.14273,9.96e-4 -0.38763,0 -0.24491,-9.96e-4 -0.14314,-0.01245 -0.38763,0 -0.24449,0.01245 -0.14438,-0.02904 -0.38762,0 -0.24325,0.02904 -0.14645,0.08671 -0.38763,0.129856 0,0 -23.18414,4.2357 -43.3081,20.484417 a 2.9761723,2.98469
 76 0 0 1 -4.78328,-2.07437 c -2.77333,-25.672753 -16.03046,-44.98793 -16.03046,-44.98793 -0.1481,-0.209097 -0.0976,-0.06016 -0.25855,-0.259297 -0.16093,-0.199139 -0.0852,-0.07053 -0.25856,-0.259296 -0.17333,-0.188768 -0.074,-0.211171 -0.25855,-0.388737 -0.18451,-0.177566 -0.0633,-0.09376 -0.25856,-0.259297 -0.19526,-0.165534 -0.0534,0.02489 -0.25855,-0.129855 -0.20519,-0.153089 -0.17334,-0.119484 -0.38763,-0.259297 -0.21471,-0.139812 -0.0372,-0.133174 -0.25856,-0.259296 -0.22298,-0.126122 -0.15761,-0.0166 -0.38762,-0.129856 -0.23043,-0.111601 -0.151,-0.03319 -0.38763,-0.129855 -0.23663,-0.09708 -0.14562,-0.177152 -0.38763,-0.259297 -0.24242,-0.08214 -0.14065,0.06638 -0.38762,0 -0.24698,-0.06638 -0.13735,-0.07883 -0.38763,-0.129855 -0.2507,-0.05103 -0.13445,-0.09459 -0.38763,-0.129856 -0.25359,-0.03319 -0.13279,0.02074 -0.38762,0 -0.25525,-0.02074 -0.13197,0.0029 -0.38763,0 -0.17044,-0.0019 -0.19857,-0.003 -0.25856,0 -0.10011,0.0083 -0.10218,-0.0032 -0.12948,0 -0.029,0.0032 -
 0.029,-0.01245 -0.12949,0 z"
+     id="path4008-0" />
+  <path
+     d="m 313.375,177.5 a 1.5014517,1.5014517 0 0 0 -1.0625,0.5625 c 0,0 -0.9445,1.20549 -1.46875,3 C 309.20424,180.16626 307.6875,180 307.6875,180 A 1.5014517,1.5014517 0 0 0 306,181.6875 c 0,0 0.16627,1.51674 1.0625,3.15625 -1.79415,0.52409 -3,1.46875 -3,1.46875 a 1.5014517,1.5014517 0 0 0 0,2.375 c 0,0 1.19178,0.94263 2.96875,1.46875 -0.89625,1.64986 -1.0625,3.1875 -1.0625,3.1875 A 1.5014517,1.5014517 0 0 0 307.625,195 c 0,0 1.517,-0.17972 3.15625,-1.0625 0.53315,1.82317 1.5625,3 1.5625,3 a 1.5014517,1.5014517 0 0 0 2.34375,0 c 0,0 0.97856,-1.21242 1.5,-3.03125 1.62374,0.903 3.125,1.09375 3.125,1.09375 A 1.5014517,1.5014517 0 0 0 321,193.3125 c 0,0 -0.18998,-1.52213 -1.09375,-3.15625 1.81288,-0.51014 3,-1.46875 3,-1.46875 a 1.5014517,1.5014517 0 0 0 0,-2.375 c 0,0 -1.20066,-0.961 -3.03125,-1.46875 0.92293,-1.64837 1.125,-3.1875 1.125,-3.1875 a 1.5014517,1.5014517 0 0 0 -1.6875,-1.6875 c 0,0 -1.51827,0.20291 -3.15625,1.125 -0.50976,-1.81192 -1.46875,-3 -1.46875,-3 A 1.5014
 517,1.5014517 0 0 0 313.375,177.5 z"
+     id="path4130"
+     style="opacity:0.15;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4132-7);enable-background:new"
+     inkscape:original="M 313.5 179 C 313.5 179 312 180.90222 312 183.25 C 312 183.53274 312.05625 183.7952 312.09375 184.0625 C 311.93384 183.85002 311.75925 183.63425 311.5625 183.4375 C 309.90401 181.77895 307.5 181.5 307.5 181.5 C 307.5 181.5 307.77894 183.90395 309.4375 185.5625 C 309.63403 185.75903 309.85028 185.90273 310.0625 186.0625 C 309.79552 186.02429 309.5324 186 309.25 186 C 306.90446 186 305 187.5 305 187.5 C 305 187.5 306.90445 189 309.25 189 C 309.4892 189 309.70909 188.9655 309.9375 188.9375 C 309.7546 189.07982 309.57658 189.23592 309.40625 189.40625 C 307.74371 191.06881 307.46875 193.5 307.46875 193.5 C 307.46875 193.5 309.89995 193.22505 311.5625 191.5625 C 311.73283 191.39217 311.88893 191.21415 312.03125 191.03125 C 312.00235 191.26194 311.96875 191.50832 311.96875 191.75 C 311.96877 194.1012 313.5 196 313.5 196 C 313.5 196 315 194.1012 315 191.75 C 315 191.46654 314.9764 191.1742 314.9375 190.90625 C 315.09851 191.11887 315.27134 191.33384 315.46875
  191.53125 C 317.13289 193.19538 319.5 193.5 319.5 193.5 C 319.5 193.5 319.19539 191.10162 317.53125 189.4375 C 317.33384 189.24009 317.11887 189.06726 316.90625 188.90625 C 317.17446 188.94385 317.46628 188.96875 317.75 188.96875 C 320.10344 188.96875 322 187.5 322 187.5 C 322 187.5 320.10344 186.03124 317.75 186.03125 C 317.45582 186.03125 317.1524 186.05355 316.875 186.09375 C 317.09911 185.9265 317.32373 185.73877 317.53125 185.53125 C 319.19137 183.87111 319.5 181.46875 319.5 181.46875 C 319.5 181.46875 317.12888 181.77736 315.46875 183.4375 C 315.26123 183.64502 315.0735 183.86964 314.90625 184.09375 C 314.94645 183.81702 314.96875 183.54347 314.96875 183.25 C 314.96873 180.90222 313.5 179 313.5 179 z "
+     inkscape:radius="1.5013015"
+     sodipodi:type="inkscape:offset"
+     transform="translate(0.99999785,1.0000082)" />
+  <path
+     transform="matrix(1.1653943,0,0,1.1653943,-51.666622,-22.391818)"
+     d="m 318.28125,129.5 a 1.5105318,1.5105318 0 0 0 -1,0.6875 c 0,0 -1.05656,2.06575 -1.4375,4.6875 -2.18577,-1.6749 -4.46875,-2.25 -4.46875,-2.25 a 1.5105318,1.5105318 0 0 0 -1.8125,1.8125 c 0,0 0.71311,2.14493 2.25,4.25 -2.66952,0.38009 -4.625,1.5625 -4.625,1.5625 a 1.5105318,1.5105318 0 0 0 0,2.5625 c 0,0 1.87849,1.15819 4.46875,1.5625 -1.52626,2.11661 -2.03125,4.25 -2.03125,4.25 a 1.5105318,1.5105318 0 0 0 1.78125,1.78125 c 0,0 2.12961,-0.50246 4.25,-2.03125 0.40756,2.58012 1.5625,4.4375 1.5625,4.4375 a 1.5105318,1.5105318 0 0 0 2.5625,0 c 0,0 1.14685,-1.87101 1.5625,-4.46875 2.11231,1.54106 4.25,2.03125 4.25,2.03125 a 1.5105318,1.5105318 0 0 0 1.78125,-1.78125 c 0,0 -0.49019,-2.13768 -2.03125,-4.25 2.58413,-0.4033 4.46875,-1.5625 4.46875,-1.5625 a 1.5105318,1.5105318 0 0 0 0,-2.5625 c 0,0 -1.96085,-1.18397 -4.625,-1.5625 1.53157,-2.07973 2.25,-4.21875 2.25,-4.21875 a 1.5105318,1.5105318 0 0 0 -1.8125,-1.8125 c 0,0 -2.23448,0.70397 -4.375,2.3125 -0.35793,-2.65265 -1.40
 625,-4.71875 -1.40625,-4.71875 A 1.5105318,1.5105318 0 0 0 318.28125,129.5 z"
+     id="path4117"
+     style="opacity:0.25;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.85807866;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4124-3);enable-background:new"
+     inkscape:original="M 318.5625 131 C 318.5625 131 317.09875 133.33183 317.09375 136.21875 C 317.09175 137.30134 317.27669 138.2913 317.53125 139.125 C 317.1251 138.35971 316.59607 137.53357 315.84375 136.78125 C 313.78565 134.72315 311.03125 134.09375 311.03125 134.09375 C 311.03125 134.09375 311.66064 136.81689 313.71875 138.875 C 314.34243 139.49869 315.00416 139.99404 315.65625 140.375 C 314.93573 140.18887 314.14679 140.03125 313.28125 140.03125 C 310.37066 140.03125 308 141.53125 308 141.53125 C 308 141.53125 310.37065 143.03125 313.28125 143.03125 C 314.09694 143.03125 314.84193 142.91933 315.53125 142.75 C 314.93126 143.11305 314.31756 143.55938 313.75 144.125 C 311.68062 146.18718 311.09375 148.9375 311.09375 148.9375 C 311.09375 148.9375 313.83694 148.34349 315.90625 146.28125 C 316.48129 145.70821 316.91472 145.07389 317.28125 144.46875 C 317.11258 145.15189 317.00138 145.91413 317 146.71875 C 316.995 149.6402 318.5 152 318.5 152 C 318.5 152 320.02625 149.6402 
 320.03125 146.71875 C 320.03225 145.90003 319.92105 145.12901 319.75 144.4375 C 320.11782 145.05158 320.57282 145.69782 321.15625 146.28125 C 323.20214 148.32714 325.90625 148.90625 325.90625 148.90625 C 325.90625 148.90625 325.32715 146.20214 323.28125 144.15625 C 322.63589 143.51089 321.92265 143.00909 321.25 142.625 C 322.0002 142.83082 322.83215 143 323.75 143 C 326.64333 143 329 141.5 329 141.5 C 329 141.5 326.64334 139.99999 323.75 140 C 322.83389 140 321.9992 140.13853 321.25 140.34375 C 321.9255 139.95562 322.62869 139.4628 323.28125 138.8125 C 325.32605 136.77455 325.96875 134.09375 325.96875 134.09375 C 325.96875 134.09375 323.26364 134.71217 321.21875 136.75 C 320.47966 137.48661 319.937 138.3151 319.53125 139.0625 C 319.78069 138.2387 319.99817 137.27751 320 136.21875 C 320.00485 133.33181 318.5625 131 318.5625 131 z "
+     inkscape:radius="1.5103807"
+     sodipodi:type="inkscape:offset" />
+  <path
+     transform="matrix(0.86090294,0,0,0.86090013,162.26997,-551.3872)"
+     d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375 -
 0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+     id="path4103"
+     style="opacity:0.25;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.16157317;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4113-4);enable-background:new"
+     inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184.4
 6875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+     inkscape:radius="2.236068"
+     sodipodi:type="inkscape:offset" />
+  <path
+     transform="translate(-2.1548671e-6,8.1602296e-6)"
+     sodipodi:type="inkscape:offset"
+     inkscape:radius="1.5013015"
+     inkscape:original="M 313.5 179 C 313.5 179 312 180.90222 312 183.25 C 312 183.53274 312.05625 183.7952 312.09375 184.0625 C 311.93384 183.85002 311.75925 183.63425 311.5625 183.4375 C 309.90401 181.77895 307.5 181.5 307.5 181.5 C 307.5 181.5 307.77894 183.90395 309.4375 185.5625 C 309.63403 185.75903 309.85028 185.90273 310.0625 186.0625 C 309.79552 186.02429 309.5324 186 309.25 186 C 306.90446 186 305 187.5 305 187.5 C 305 187.5 306.90445 189 309.25 189 C 309.4892 189 309.70909 188.9655 309.9375 188.9375 C 309.7546 189.07982 309.57658 189.23592 309.40625 189.40625 C 307.74371 191.06881 307.46875 193.5 307.46875 193.5 C 307.46875 193.5 309.89995 193.22505 311.5625 191.5625 C 311.73283 191.39217 311.88893 191.21415 312.03125 191.03125 C 312.00235 191.26194 311.96875 191.50832 311.96875 191.75 C 311.96877 194.1012 313.5 196 313.5 196 C 313.5 196 315 194.1012 315 191.75 C 315 191.46654 314.9764 191.1742 314.9375 190.90625 C 315.09851 191.11887 315.27134 191.33384 315.46875
  191.53125 C 317.13289 193.19538 319.5 193.5 319.5 193.5 C 319.5 193.5 319.19539 191.10162 317.53125 189.4375 C 317.33384 189.24009 317.11887 189.06726 316.90625 188.90625 C 317.17446 188.94385 317.46628 188.96875 317.75 188.96875 C 320.10344 188.96875 322 187.5 322 187.5 C 322 187.5 320.10344 186.03124 317.75 186.03125 C 317.45582 186.03125 317.1524 186.05355 316.875 186.09375 C 317.09911 185.9265 317.32373 185.73877 317.53125 185.53125 C 319.19137 183.87111 319.5 181.46875 319.5 181.46875 C 319.5 181.46875 317.12888 181.77736 315.46875 183.4375 C 315.26123 183.64502 315.0735 183.86964 314.90625 184.09375 C 314.94645 183.81702 314.96875 183.54347 314.96875 183.25 C 314.96873 180.90222 313.5 179 313.5 179 z "
+     style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3979);stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path4101"
+     d="m 313.375,177.5 a 1.5014517,1.5014517 0 0 0 -1.0625,0.5625 c 0,0 -0.9445,1.20549 -1.46875,3 C 309.20424,180.16626 307.6875,180 307.6875,180 A 1.5014517,1.5014517 0 0 0 306,181.6875 c 0,0 0.16627,1.51674 1.0625,3.15625 -1.79415,0.52409 -3,1.46875 -3,1.46875 a 1.5014517,1.5014517 0 0 0 0,2.375 c 0,0 1.19178,0.94263 2.96875,1.46875 -0.89625,1.64986 -1.0625,3.1875 -1.0625,3.1875 A 1.5014517,1.5014517 0 0 0 307.625,195 c 0,0 1.517,-0.17972 3.15625,-1.0625 0.53315,1.82317 1.5625,3 1.5625,3 a 1.5014517,1.5014517 0 0 0 2.34375,0 c 0,0 0.97856,-1.21242 1.5,-3.03125 1.62374,0.903 3.125,1.09375 3.125,1.09375 A 1.5014517,1.5014517 0 0 0 321,193.3125 c 0,0 -0.18998,-1.52213 -1.09375,-3.15625 1.81288,-0.51014 3,-1.46875 3,-1.46875 a 1.5014517,1.5014517 0 0 0 0,-2.375 c 0,0 -1.20066,-0.961 -3.03125,-1.46875 0.92293,-1.64837 1.125,-3.1875 1.125,-3.1875 a 1.5014517,1.5014517 0 0 0 -1.6875,-1.6875 c 0,0 -1.51827,0.20291 -3.15625,1.125 -0.50976,-1.81192 -1.46875,-3 -1.46875,-3 A 1.5014
 517,1.5014517 0 0 0 313.375,177.5 z" />
+  <path
+     sodipodi:type="inkscape:offset"
+     inkscape:radius="2.236068"
+     inkscape:original="M 184.46875 703.71875 C 184.46875 703.71875 180.59375 709.06256 180.59375 715.6875 C 180.59375 716.89696 180.75838 718.0867 180.96875 719.1875 C 180.33528 718.25414 179.58087 717.32975 178.71875 716.46875 C 174.02816 711.78421 167.5 710.71875 167.5 710.71875 C 167.5 710.71875 168.55941 717.25296 173.25 721.9375 C 174.11212 722.7985 175.03419 723.55485 175.96875 724.1875 C 174.85826 723.9742 173.69012 723.8125 172.46875 723.8125 C 165.83526 723.8125 160.46875 727.6875 160.46875 727.6875 C 160.46875 727.6875 165.83526 731.53125 172.46875 731.53125 C 173.69012 731.53125 174.85826 731.4008 175.96875 731.1875 C 175.03456 731.81999 174.11178 732.54558 173.25 733.40625 C 168.55941 738.09078 167.5 744.625 167.5 744.625 C 167.5 744.625 174.02816 743.55954 178.71875 738.875 C 179.58087 738.014 180.33528 737.08961 180.96875 736.15625 C 180.75518 737.2653 180.59375 738.43646 180.59375 739.65625 C 180.59375 746.28119 184.46875 751.65625 184.46875 751.65625 C 184.4
 6875 751.65625 188.3125 746.28119 188.3125 739.65625 C 188.3125 738.43646 188.18232 737.2653 187.96875 736.15625 C 188.60222 737.08961 189.35663 738.014 190.21875 738.875 C 194.90934 743.55954 201.4375 744.625 201.4375 744.625 C 201.4375 744.625 200.34684 738.09078 195.65625 733.40625 C 194.79906 732.55017 193.89785 731.849 192.96875 731.21875 C 194.06956 731.42831 195.22825 731.53125 196.4375 731.53125 C 203.07099 731.53125 208.46875 727.6875 208.46875 727.6875 C 208.46875 727.6875 203.07099 723.8125 196.4375 723.8125 C 195.22647 723.8125 194.07098 723.9774 192.96875 724.1875 C 193.90331 723.55485 194.79413 722.7985 195.65625 721.9375 C 200.34684 717.25296 201.4375 710.71875 201.4375 710.71875 C 201.4375 710.71875 194.90934 711.78421 190.21875 716.46875 C 189.35663 717.32975 188.60222 718.25414 187.96875 719.1875 C 188.17912 718.0867 188.3125 716.89696 188.3125 715.6875 C 188.3125 709.06256 184.46875 703.71875 184.46875 703.71875 z "
+     style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3665-2);stroke-width:1.16157317;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path3624"
+     d="m 184.125,701.5 a 2.2362916,2.2362916 0 0 0 -1.46875,0.90625 c 0,0 -3.32798,4.76714 -4.03125,11.15625 -5.01814,-4.02286 -10.75,-5.0625 -10.75,-5.0625 a 2.2362916,2.2362916 0 0 0 -2.59375,2.5625 c 0,0 1.03401,5.76487 5.0625,10.78125 -6.3978,0.70283 -11.1875,4.03125 -11.1875,4.03125 a 2.2362916,2.2362916 0 0 0 0,3.625 c 0,0 4.79479,3.3031 11.1875,4 -4.02849,5.01638 -5.0625,10.78125 -5.0625,10.78125 a 2.2362916,2.2362916 0 0 0 2.59375,2.5625 c 0,0 5.73186,-1.03964 10.75,-5.0625 0.70267,6.3934 4.03125,11.1875 4.03125,11.1875 a 2.2362916,2.2362916 0 0 0 3.625,0 c 0,0 3.31109,-4.81453 4,-11.21875 5.02623,4.04674 10.78125,5.09375 10.78125,5.09375 a 2.2362916,2.2362916 0 0 0 2.59375,-2.59375 c 0,0 -1.0624,-5.73727 -5.09375,-10.75 6.397,-0.69632 11.21875,-4 11.21875,-4 a 2.2362916,2.2362916 0 0 0 0,-3.625 c 0,0 -4.81666,-3.329 -11.21875,-4.03125 4.03134,-5.01273 5.09375,-10.75 5.09375,-10.75 A 2.2362916,2.2362916 0 0 0 201.0625,708.5 c 0,0 -5.75502,1.04701 -10.78125,5.09375 -
 0.69265,-6.39357 -4,-11.1875 -4,-11.1875 A 2.2362916,2.2362916 0 0 0 184.125,701.5 z"
+     transform="matrix(0.86090294,0,0,0.86090013,161.26997,-552.3872)" />
+  <path
+     style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 323.39776,63.760511 c -3e-5,5.70341 -3.32382,10.326934 -3.32382,10.326934 0,0 -3.32383,-4.623515 -3.32384,-10.326924 1e-5,-5.703418 3.32383,-10.326923 3.32383,-10.326923 0,0 3.32382,4.623505 3.32383,10.326913 z"
+     id="path2816"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3591"
+     d="m 323.39773,84.376553 c 0,5.703389 -3.32381,10.326913 -3.32381,10.326913 0,0 -3.32381,-4.623505 -3.32383,-10.326913 10e-6,-5.7034 3.32383,-10.326942 3.32383,-10.326942 0,0 3.32383,4.623524 3.32381,10.326942 z"
+     style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3593"
+     d="m 330.3953,77.388045 c -5.71081,0 -10.34033,-3.319527 -10.34033,-3.319527 0,0 4.62952,-3.319518 10.34031,-3.319508 5.7108,-1e-5 10.3403,3.319508 10.3403,3.319508 0,0 -4.6295,3.319518 -10.34028,3.319527 z"
+     style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 309.75256,77.388036 c -5.71079,0 -10.34031,-3.319528 -10.34031,-3.319528 0,0 4.62949,-3.319488 10.34028,-3.319498 5.71082,1e-5 10.34032,3.319527 10.34032,3.319527 0,0 -4.62949,3.319518 -10.34029,3.319499 z"
+     id="path3595"
+     sodipodi:nodetypes="csssc" />
+  <path
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 329.72251,69.126933 c -4.03797,4.033097 -9.66199,4.954992 -9.66199,4.954992 0,0 0.92327,-5.616588 4.9614,-9.649503 4.03799,-4.033097 9.66201,-4.954993 9.66201,-4.954993 0,0 -0.92327,5.616559 -4.96142,9.649504 z"
+     id="path3597"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3599"
+     d="m 315.12591,83.704633 c -4.03798,4.033107 -9.662,4.955021 -9.662,4.955021 0,0 0.92328,-5.616607 4.96142,-9.649513 4.03797,-4.033097 9.66197,-4.954983 9.66197,-4.954983 0,0 -0.92326,5.616578 -4.96139,9.649475 z"
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3601"
+     d="m 315.12589,64.432412 c 4.03797,4.033097 4.96141,9.649485 4.96141,9.649485 0,0 -5.62384,-0.922048 -9.66198,-4.954992 -4.03796,-4.033078 -4.96142,-9.649485 -4.96142,-9.649485 0,0 5.62387,0.922077 9.66199,4.954992 z"
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 329.72251,79.010151 c 4.03798,4.033096 4.96142,9.649484 4.96142,9.649484 0,0 -5.62386,-0.922067 -9.66199,-4.955002 -4.03796,-4.033078 -4.96142,-9.649494 -4.96142,-9.649494 0,0 5.62384,0.922076 9.66199,4.955012 z"
+     id="path3603"
+     sodipodi:nodetypes="csssc" />
+  <path
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z"
+     sodipodi:ry="3.375"
+     sodipodi:rx="3.375"
+     sodipodi:cy="727.61218"
+     sodipodi:cx="184.25"
+     id="path3636"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     sodipodi:type="arc"
+     transform="matrix(4.3930976,0,0,4.3930832,-489.53675,-3122.4468)" />
+  <path
+     transform="matrix(2.933447,0,0,2.9334374,-220.59626,-2060.3908)"
+     sodipodi:type="arc"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path3634"
+     sodipodi:cx="184.25"
+     sodipodi:cy="727.61218"
+     sodipodi:rx="3.375"
+     sodipodi:ry="3.375"
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z" />
+  <path
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z"
+     sodipodi:ry="3.375"
+     sodipodi:rx="3.375"
+     sodipodi:cy="727.61218"
+     sodipodi:cx="184.25"
+     id="path3632"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     sodipodi:type="arc"
+     transform="matrix(1.3626673,4.8358059e-8,-4.8358217e-8,1.3626628,68.820018,-917.47577)" />
+  <path
+     style="fill:#ffffff;stroke:#babdb6;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline;enable-background:new;fill-opacity:1"
+     d="m 310.27934,219.5 1.48735,0 1.50863,2.01733 2.46518,0 0.78486,0.72717 0,2.18798 1.97464,1.8586 0,1.48411 -1.98011,1.58257 0,2.44021 -0.82283,0.70323 -2.43125,0.0313 -1.45908,1.96755 -1.50327,0.008 -1.48446,-1.99415 -2.56916,0 -0.74652,-0.7816 0,-2.44826 -2.00332,-1.57518 0,-1.46794 2.0146,-1.49262 0,-2.47309 0.76072,-0.76517 2.56056,0 1.44346,-2.0096 0,-4.4e-4 z"
+     id="path4151"
+     sodipodi:nodetypes="cccccccccccccccccccccccccc" />
+  <path
+     style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 305.99504,226.00005 4.00498,0 1,1 -0.99999,1 -4.005,0 -1.00001,-1 1.00002,-1 z"
+     id="rect3758"
+     sodipodi:nodetypes="ccccccc" />
+  <path
+     sodipodi:nodetypes="ccccccc"
+     id="path3761"
+     d="m 308.41789,223.00005 1.58214,1.56087 -10e-6,1.43913 -1.41787,1e-5 -1.58214,-1.56087 1e-5,-1.43914 1.41787,0 z"
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="ccccccc"
+     id="path3763"
+     d="m 311.99752,221.99756 10e-6,4.00498 -0.99999,1.00001 -1.00001,-1.00001 -10e-6,-4.00498 0.99998,-1.00001 1.00002,1.00001 z"
+     style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="ccccccc"
+     id="path3765"
+     d="m 315.99753,227.99755 -4.00499,0 -1,-1 0.99999,-1 4.005,0 0.99999,1 -0.99999,1 z"
+     style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 313.57862,231.00005 -1.58608,-1.56217 0,-1.44033 1.4214,0 1.58608,1.56218 0,1.44032 -1.4214,0 z"
+     id="path3767"
+     sodipodi:nodetypes="ccccccc" />
+  <path
+     style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 309.99504,232.00004 -1e-5,-4.00498 0.99999,-1.00001 1,1.00001 3e-5,4.00498 -1,1.00001 -1.00001,-1.00001 z"
+     id="path3769"
+     sodipodi:nodetypes="ccccccc" />
+  <path
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 313.57862,223.00005 -1.58608,1.56087 0,1.43913 1.42141,1e-5 1.58607,-1.56088 0,-1.43913 -1.4214,0 z"
+     id="path3771"
+     sodipodi:nodetypes="ccccccc" />
+  <path
+     sodipodi:nodetypes="ccccccc"
+     id="path3773"
+     d="m 308.41789,231.00005 1.58214,-1.56217 0,-1.44033 -1.41788,0 -1.58212,1.56219 -10e-6,1.44031 1.41787,0 z"
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <rect
+     y="226.00002"
+     x="310"
+     height="1"
+     width="1"
+     id="rect3928"
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <rect
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="rect3930"
+     width="1"
+     height="1"
+     x="311"
+     y="226.00002" />
+  <rect
+     y="227"
+     x="310"
+     height="1"
+     width="1"
+     id="rect3932"
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <rect
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="rect3934"
+     width="1"
+     height="1"
+     x="311"
+     y="227" />
+  <path
+     sodipodi:type="inkscape:offset"
+     inkscape:radius="1.5103807"
+     inkscape:original="M 318.5625 131 C 318.5625 131 317.09875 133.33183 317.09375 136.21875 C 317.09175 137.30134 317.27669 138.2913 317.53125 139.125 C 317.1251 138.35971 316.59607 137.53357 315.84375 136.78125 C 313.78565 134.72315 311.03125 134.09375 311.03125 134.09375 C 311.03125 134.09375 311.66064 136.81689 313.71875 138.875 C 314.34243 139.49869 315.00416 139.99404 315.65625 140.375 C 314.93573 140.18887 314.14679 140.03125 313.28125 140.03125 C 310.37066 140.03125 308 141.53125 308 141.53125 C 308 141.53125 310.37065 143.03125 313.28125 143.03125 C 314.09694 143.03125 314.84193 142.91933 315.53125 142.75 C 314.93126 143.11305 314.31756 143.55938 313.75 144.125 C 311.68062 146.18718 311.09375 148.9375 311.09375 148.9375 C 311.09375 148.9375 313.83694 148.34349 315.90625 146.28125 C 316.48129 145.70821 316.91472 145.07389 317.28125 144.46875 C 317.11258 145.15189 317.00138 145.91413 317 146.71875 C 316.995 149.6402 318.5 152 318.5 152 C 318.5 152 320.02625 149.6402 
 320.03125 146.71875 C 320.03225 145.90003 319.92105 145.12901 319.75 144.4375 C 320.11782 145.05158 320.57282 145.69782 321.15625 146.28125 C 323.20214 148.32714 325.90625 148.90625 325.90625 148.90625 C 325.90625 148.90625 325.32715 146.20214 323.28125 144.15625 C 322.63589 143.51089 321.92265 143.00909 321.25 142.625 C 322.0002 142.83082 322.83215 143 323.75 143 C 326.64333 143 329 141.5 329 141.5 C 329 141.5 326.64334 139.99999 323.75 140 C 322.83389 140 321.9992 140.13853 321.25 140.34375 C 321.9255 139.95562 322.62869 139.4628 323.28125 138.8125 C 325.32605 136.77455 325.96875 134.09375 325.96875 134.09375 C 325.96875 134.09375 323.26364 134.71217 321.21875 136.75 C 320.47966 137.48661 319.937 138.3151 319.53125 139.0625 C 319.78069 138.2387 319.99817 137.27751 320 136.21875 C 320.00485 133.33181 318.5625 131 318.5625 131 z "
+     style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4007-3);stroke-width:0.85807866;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path4148"
+     d="m 318.28125,129.5 a 1.5105318,1.5105318 0 0 0 -1,0.6875 c 0,0 -1.05656,2.06575 -1.4375,4.6875 -2.18577,-1.6749 -4.46875,-2.25 -4.46875,-2.25 a 1.5105318,1.5105318 0 0 0 -1.8125,1.8125 c 0,0 0.71311,2.14493 2.25,4.25 -2.66952,0.38009 -4.625,1.5625 -4.625,1.5625 a 1.5105318,1.5105318 0 0 0 0,2.5625 c 0,0 1.87849,1.15819 4.46875,1.5625 -1.52626,2.11661 -2.03125,4.25 -2.03125,4.25 a 1.5105318,1.5105318 0 0 0 1.78125,1.78125 c 0,0 2.12961,-0.50246 4.25,-2.03125 0.40756,2.58012 1.5625,4.4375 1.5625,4.4375 a 1.5105318,1.5105318 0 0 0 2.5625,0 c 0,0 1.14685,-1.87101 1.5625,-4.46875 2.11231,1.54106 4.25,2.03125 4.25,2.03125 a 1.5105318,1.5105318 0 0 0 1.78125,-1.78125 c 0,0 -0.49019,-2.13768 -2.03125,-4.25 2.58413,-0.4033 4.46875,-1.5625 4.46875,-1.5625 a 1.5105318,1.5105318 0 0 0 0,-2.5625 c 0,0 -1.96085,-1.18397 -4.625,-1.5625 1.53157,-2.07973 2.25,-4.21875 2.25,-4.21875 a 1.5105318,1.5105318 0 0 0 -1.8125,-1.8125 c 0,0 -2.23448,0.70397 -4.375,2.3125 -0.35793,-2.65265 -1.40
 625,-4.71875 -1.40625,-4.71875 A 1.5105318,1.5105318 0 0 0 318.28125,129.5 z"
+     transform="matrix(1.1653943,0,0,1.1653943,-52.666622,-23.391818)" />
+  <path
+     style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 324.64157,143.25315 c -3.37189,0 -6.10532,-1.74547 -6.10532,-1.74547 0,0 2.73343,-1.74548 6.10531,-1.74547 3.37188,-1e-5 6.10531,1.74547 6.10531,1.74547 0,0 -2.73343,1.74547 -6.1053,1.74547 z"
+     id="path3205"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path4122"
+     d="m 321.6091,147.07447 c -2.38429,-2.3843 -3.08289,-5.55136 -3.08289,-5.55136 0,0 3.16707,0.69858 5.55135,3.08288 2.38428,2.38426 3.08287,5.55134 3.08287,5.55134 0,0 -3.16706,-0.6986 -5.55133,-3.08286 z"
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 320.25955,135.34763 c -0.006,3.36437 -1.70727,6.09557 -1.70727,6.09557 0,0 -1.6924,-2.72357 -1.68673,-6.08797 0.006,-3.3644 1.70727,-6.0956 1.70727,-6.0956 0,0 1.69238,2.72357 1.68673,6.088 z"
+     id="path3243"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path4124"
+     d="m 324.10058,138.38586 c -2.38309,2.37485 -5.51744,3.103 -5.51744,3.103 0,0 0.72915,-3.12257 3.11215,-5.49755 2.38311,-2.37488 5.51746,-3.10301 5.51746,-3.10301 0,0 -0.72917,3.12254 -3.11217,5.49756 z"
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3207"
+     d="m 312.42007,143.30466 c -3.392,0 -6.14174,-1.74547 -6.14174,-1.74547 0,0 2.74973,-1.74548 6.14172,-1.74548 3.39201,0 6.14174,1.74549 6.14174,1.74549 0,0 -2.74972,1.74547 -6.14172,1.74546 z"
+     style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 312.93077,138.46898 c -2.39851,-2.3985 -3.10864,-5.57711 -3.10864,-5.57711 0,0 3.1786,0.71013 5.5771,3.10862 2.39851,2.39851 3.10862,5.57711 3.10862,5.57711 0,0 -3.17859,-0.71011 -5.57708,-3.10862 z"
+     id="path4126"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3245"
+     d="m 320.31107,147.57843 c -0.006,3.40464 -1.78631,6.16849 -1.78631,6.16849 0,0 -1.77079,-2.75615 -1.76485,-6.16079 0.006,-3.4046 1.78631,-6.16844 1.78631,-6.16844 0,0 1.77078,2.75614 1.76485,6.16074 z"
+     style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 315.48853,147.07077 c -2.41156,2.40332 -5.6249,3.09867 -5.6249,3.09867 0,0 0.69676,-3.20102 3.10841,-5.60428 2.41153,-2.4033 5.62485,-3.09863 5.62485,-3.09863 0,0 -0.69675,3.20102 -3.10836,5.60424 z"
+     id="path4128"
+     sodipodi:nodetypes="csssc" />
+  <path
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z"
+     sodipodi:ry="3.375"
+     sodipodi:rx="3.375"
+     sodipodi:cy="727.61218"
+     sodipodi:cx="184.25"
+     id="path3219"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     sodipodi:type="arc"
+     transform="matrix(2.2222232,0,0,2.2222241,-90.944622,-1475.4173)" />
+  <path
+     transform="matrix(1.0370376,3.68023e-8,-3.6802299e-8,1.0370376,127.42584,-613.06119)"
+     sodipodi:type="arc"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path3221"
+     sodipodi:cx="184.25"
+     sodipodi:cy="727.61218"
+     sodipodi:rx="3.375"
+     sodipodi:ry="3.375"
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3253"
+     d="m 314.95613,183.25103 c -2e-5,2.34779 -1.47037,4.25105 -1.47037,4.25105 0,0 -1.4704,-1.90326 -1.4704,-4.25105 0,-2.34778 1.47039,-4.25103 1.47039,-4.25103 0,0 1.47036,1.90325 1.47038,4.25103 z"
+     style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 315.00849,191.7428 c 0,2.3512 -1.52274,4.2572 -1.52274,4.2572 0,0 -1.52275,-1.906 -1.52277,-4.2572 2e-5,-2.35117 1.52277,-4.25719 1.52277,-4.25719 0,0 1.52274,1.906 1.52274,4.25719 z"
+     id="path3255"
+     sodipodi:nodetypes="csssc" />
+  <path
+     style="color:#000000;fill:#65c808;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 317.73874,188.96511 c -2.35342,0 -4.26124,-1.47127 -4.26124,-1.47127 0,0 1.90782,-1.47127 4.26124,-1.47126 2.35344,-1e-5 4.26126,1.47126 4.26126,1.47126 0,0 -1.90782,1.47127 -4.26126,1.47127 z"
+     id="path3257"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path3259"
+     d="m 309.24699,188.99221 c -2.34555,0 -4.24699,-1.49837 -4.24699,-1.49837 0,0 1.90144,-1.49837 4.24698,-1.49837 2.34557,0 4.24701,1.49838 4.24701,1.49838 0,0 -1.90144,1.49837 -4.247,1.49836 z"
+     style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path4078"
+     d="m 311.56655,191.56678 c -1.66255,1.66255 -4.08703,1.93355 -4.08703,1.93355 0,0 0.27099,-2.42449 1.93353,-4.08705 1.66254,-1.66252 4.08705,-1.93353 4.08705,-1.93353 0,0 -0.27101,2.42448 -1.93355,4.08703 z"
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 317.53411,185.52516 c -1.66015,1.66013 -4.04565,1.96624 -4.04565,1.96624 0,0 0.30608,-2.38554 1.96622,-4.04567 1.66013,-1.66014 4.04565,-1.96621 4.04565,-1.96621 0,0 -0.3061,2.3855 -1.96622,4.04564 z"
+     id="path4076"
+     sodipodi:nodetypes="csssc" />
+  <path
+     sodipodi:nodetypes="csssc"
+     id="path4080"
+     d="m 315.46125,191.53323 c -1.66412,-1.66412 -1.9728,-4.0535 -1.9728,-4.0535 0,0 2.38937,0.30869 4.05349,1.97282 1.66414,1.66412 1.97282,4.0535 1.97282,4.0535 0,0 -2.38937,-0.30869 -4.05351,-1.97282 z"
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <path
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:12;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     d="m 309.43752,185.54782 c -1.65856,-1.65855 -1.94357,-4.06258 -1.94357,-4.06258 0,0 2.40403,0.28501 4.06257,1.94356 1.65857,1.65857 1.94358,4.0626 1.94358,4.0626 0,0 -2.40403,-0.28501 -4.06258,-1.94358 z"
+     id="path4082"
+     sodipodi:nodetypes="csssc" />
+  <path
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z"
+     sodipodi:ry="3.375"
+     sodipodi:rx="3.375"
+     sodipodi:cy="727.61218"
+     sodipodi:cx="184.25"
+     id="path3271"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     sodipodi:type="arc"
+     transform="matrix(1.4760449,0,0,1.4760001,41.527558,-886.44282)" />
+  <path
+     transform="matrix(0.73749573,2.6171391e-8,-2.6172183e-8,0.73747337,177.62738,-349.10373)"
+     sodipodi:type="arc"
+     style="opacity:0.15;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="path3273"
+     sodipodi:cx="184.25"
+     sodipodi:cy="727.61218"
+     sodipodi:rx="3.375"
+     sodipodi:ry="3.375"
+     d="m 187.625,727.61218 a 3.375,3.375 0 1 1 -6.75,0 3.375,3.375 0 1 1 6.75,0 z" />
+  <rect
+     style="color:#000000;fill:#f57900;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="rect3983"
+     width="1"
+     height="1"
+     x="309.50824"
+     y="225.50826" />
+  <rect
+     y="225.46968"
+     x="311.57452"
+     height="1"
+     width="1"
+     id="rect3985"
+     style="color:#000000;fill:#afea2c;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <rect
+     y="227.50824"
+     x="311.50824"
+     height="1"
+     width="1"
+     id="rect3987"
+     style="color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" />
+  <rect
+     style="color:#000000;fill:#75507b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new"
+     id="rect3989"
+     width="1"
+     height="1"
+     x="309.49176"
+     y="227.50824" />
+</svg>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]