diff options
| author | Paolo Borelli <pborelli@gnome.org> | 2015-11-29 14:32:09 (GMT) |
|---|---|---|
| committer | Paolo Borelli <pborelli@gnome.org> | 2015-11-29 15:15:41 (GMT) |
| commit | 176a2c71c9928b6e5b20ad7f7db4bd360e65fc1d (patch) | |
| tree | 07c3effcca4e828d2647d8676f4a6ad80f6f6e4e | |
| parent | 391165c5014b227a84e8b7ad5757f50e74a77f11 (diff) | |
| download | gedit-176a2c7.zip gedit-176a2c7.tar.xz | |
Ship our own icons.
At the moment the icon is the same as the one shipped with
Adwaita for "accessories-text-editor" that we always used.
https://bugzilla.gnome.org/show_bug.cgi?id=746714
| -rw-r--r-- | Makefile.am | 1 | ||||
| -rw-r--r-- | data/icons/Makefile.am | 39 | ||||
| -rw-r--r-- | data/icons/hicolor/16x16/apps/gedit.png | bin | 0 -> 912 bytes | |||
| -rw-r--r-- | data/icons/hicolor/22x22/apps/gedit.png | bin | 0 -> 1266 bytes | |||
| -rw-r--r-- | data/icons/hicolor/24x24/apps/gedit.png | bin | 0 -> 1291 bytes | |||
| -rw-r--r-- | data/icons/hicolor/256x256/apps/gedit.png | bin | 0 -> 43585 bytes | |||
| -rw-r--r-- | data/icons/hicolor/32x32/apps/gedit.png | bin | 0 -> 1839 bytes | |||
| -rw-r--r-- | data/icons/hicolor/48x48/apps/gedit.png | bin | 0 -> 2767 bytes | |||
| -rw-r--r-- | data/icons/hicolor/symbolic/apps/gedit-symbolic.svg | 39 | ||||
| -rw-r--r-- | data/icons/src/gedit.svg | 11255 | ||||
| -rw-r--r-- | data/org.gnome.gedit.desktop.in.in | 2 | ||||
| -rw-r--r-- | gedit/gedit-app.c | 2 |
12 files changed, 11336 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 78238f7..0769fb9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -88,6 +88,7 @@ BUILT_SOURCES = CLEANFILES = include data/Makefile.am +include data/icons/Makefile.am include win32/Makefile.am include osx/bundle/data/Makefile.am include plugins/Makefile.am diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am new file mode 100644 index 0000000..a0c4e14 --- /dev/null +++ b/data/icons/Makefile.am @@ -0,0 +1,39 @@ +icon16dir = $(datadir)/icons/hicolor/16x16/apps +icon16_DATA = data/icons/hicolor/16x16/apps/gedit.png +icon22dir = $(datadir)/icons/hicolor/22x22/apps +icon22_DATA = data/icons/hicolor/22x22/apps/gedit.png +icon24dir = $(datadir)/icons/hicolor/24x24/apps +icon24_DATA = data/icons/hicolor/24x24/apps/gedit.png +icon32dir = $(datadir)/icons/hicolor/32x32/apps +icon32_DATA = data/icons/hicolor/32x32/apps/gedit.png +icon48dir = $(datadir)/icons/hicolor/48x48/apps +icon48_DATA = data/icons/hicolor/48x48/apps/gedit.png +icon256dir = $(datadir)/icons/hicolor/256x256/apps +icon256_DATA = data/icons/hicolor/256x256/apps/gedit.png +iconsymbolicdir = $(datadir)/icons/hicolor/symbolic/apps +iconsymbolic_DATA = data/icons/hicolor/symbolic/apps/gedit-symbolic.svg + +icon_files = \ + $(icon16_DATA) \ + $(icon22_DATA) \ + $(icon24_DATA) \ + $(icon32_DATA) \ + $(icon48_DATA) \ + $(icon256_DATA) \ + $(iconsymbolic_DATA) \ + data/src/gedit.svg + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: update-icon-cache +uninstall-hook: update-icon-cache +update-icon-cache: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. After (un)install, run this:"; \ + echo "*** $(gtk_update_icon_cache)"; \ + fi + +EXTRA_DIST += $(icon_files) diff --git a/data/icons/hicolor/16x16/apps/gedit.png b/data/icons/hicolor/16x16/apps/gedit.png Binary files differnew file mode 100644 index 0000000..31c1aa6 --- /dev/null +++ b/data/icons/hicolor/16x16/apps/gedit.png diff --git a/data/icons/hicolor/22x22/apps/gedit.png b/data/icons/hicolor/22x22/apps/gedit.png Binary files differnew file mode 100644 index 0000000..4d8cc5a --- /dev/null +++ b/data/icons/hicolor/22x22/apps/gedit.png diff --git a/data/icons/hicolor/24x24/apps/gedit.png b/data/icons/hicolor/24x24/apps/gedit.png Binary files differnew file mode 100644 index 0000000..9b781a8 --- /dev/null +++ b/data/icons/hicolor/24x24/apps/gedit.png diff --git a/data/icons/hicolor/256x256/apps/gedit.png b/data/icons/hicolor/256x256/apps/gedit.png Binary files differnew file mode 100644 index 0000000..7ed05c4 --- /dev/null +++ b/data/icons/hicolor/256x256/apps/gedit.png diff --git a/data/icons/hicolor/32x32/apps/gedit.png b/data/icons/hicolor/32x32/apps/gedit.png Binary files differnew file mode 100644 index 0000000..5eaf6fc --- /dev/null +++ b/data/icons/hicolor/32x32/apps/gedit.png diff --git a/data/icons/hicolor/48x48/apps/gedit.png b/data/icons/hicolor/48x48/apps/gedit.png Binary files differnew file mode 100644 index 0000000..602a275 --- /dev/null +++ b/data/icons/hicolor/48x48/apps/gedit.png diff --git a/data/icons/hicolor/symbolic/apps/gedit-symbolic.svg b/data/icons/hicolor/symbolic/apps/gedit-symbolic.svg new file mode 100644 index 0000000..b75c950 --- /dev/null +++ b/data/icons/hicolor/symbolic/apps/gedit-symbolic.svg @@ -0,0 +1,39 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg sodipodi:docname='accessories-text-editor-symbolic.svg' xmlns:inkscape='http://www.inkscape.org/namespaces/inkscape' xmlns:dc='http://purl.org/dc/elements/1.1/' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' inkscape:version='0.48.1 r9760' version='1.1' id='svg7384' xmlns:svg='http://www.w3.org/2000/svg' xmlns:sodipodi='http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd' xmlns:cc='http://creativecommons.org/ns#' xmlns='http://www.w3.org/2000/svg' width='16' height='16.008873'> + <metadata id='metadata90'> + <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>Gnome Symbolic Icon Theme</dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <sodipodi:namedview inkscape:window-maximized='0' inkscape:snap-nodes='true' inkscape:snap-others='false' inkscape:object-paths='false' inkscape:zoom='11.313708' showborder='false' showgrid='false' inkscape:snap-global='true' inkscape:current-layer='layer11' inkscape:pageopacity='1' inkscape:pageshadow='2' inkscape:object-nodes='false' bordercolor='#666666' gridtolerance='10' inkscape:snap-bbox-midpoints='false' inkscape:window-height='967' pagecolor='#555753' id='namedview88' showguides='true' inkscape:window-x='2087' inkscape:window-y='282' inkscape:snap-bbox='true' borderopacity='1' inkscape:window-width='1226' inkscape:cx='-20.114158' inkscape:cy='266.82175' inkscape:bbox-paths='false' objecttolerance='10' inkscape:guide-bbox='true' inkscape:snap-to-guides='true' guidetolerance='10' inkscape:snap-grids='true'> + <inkscape:grid visible='true' spacingx='1px' spacingy='1px' enabled='true' empspacing='2' snapvisiblegridlinesonly='true' id='grid4866' type='xygrid'/> + </sodipodi:namedview> + <title id='title9167'>Gnome Symbolic Icon Theme</title> + <defs id='defs7386'/> + <g inkscape:groupmode='layer' inkscape:label='status' transform='translate(-163.0002,-508.99113)' id='layer9' style='display:inline'/> + <g inkscape:groupmode='layer' inkscape:label='devices' transform='translate(-163.0002,-508.99113)' id='layer10'/> + <g inkscape:groupmode='layer' inkscape:label='apps' transform='translate(-163.0002,-508.99113)' id='layer11'> + <path d='m 168.40625,515 a 0.50219246,0.50219246 0 1 0 0.0937,1 l 6,0 a 0.50005,0.50005 0 1 0 0,-1 l -6,0 a 0.50005,0.50005 0 0 0 -0.0937,0 z' id='path3601-2' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='m 168.40625,517 a 0.50219246,0.50219246 0 1 0 0.0937,1 l 5,0 a 0.50005,0.50005 0 1 0 0,-1 l -5,0 a 0.50005,0.50005 0 0 0 -0.0937,0 z' id='path3601-2-3' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='m 168.40625,519 a 0.50219246,0.50219246 0 1 0 0.0937,1 l 6,0 a 0.50005,0.50005 0 1 0 0,-1 l -6,0 a 0.50005,0.50005 0 0 0 -0.0937,0 z' id='path3601-2-3-2' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='m 168.40625,521 a 0.50219246,0.50219246 0 1 0 0.0937,1 l 3,0 a 0.50005,0.50005 0 1 0 0,-1 l -3,0 a 0.50005,0.50005 0 0 0 -0.0937,0 z' id='path3601-2-3-3' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='m 167.0002,510 c -1.0907,0 -2,0.9093 -2,2 l 0,11 c 0,1.0907 0.9093,2 2,2 l 9,0 c 1.0907,0 2,-0.9093 2,-2 l 0,-11 c 0,-1.0907 -0.9093,-2 -2,-2 0,4.33333 0,8.66667 0,13 l -9,0 c 0,-4.33333 0,-8.66667 0,-13 z' sodipodi:nodetypes='csssssscccc' id='rect10788' inkscape:connector-curvature='0' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:Sans;-inkscape-font-specification:Sans'/> + <path d='M 168.40625,509 A 0.50005,0.50005 0 0 0 168,509.5 l 0,3 a 0.50005,0.50005 0 1 0 1,0 l 0,-3 a 0.50005,0.50005 0 0 0 -0.59375,-0.5 z' id='path3601-2-3-3-9' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='M 170.40625,509 A 0.50005,0.50005 0 0 0 170,509.5 l 0,3 a 0.50005,0.50005 0 1 0 1,0 l 0,-3 a 0.50005,0.50005 0 0 0 -0.59375,-0.5 z' id='path3601-2-3-3-9-3' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='M 172.40625,509 A 0.50005,0.50005 0 0 0 172,509.5 l 0,3 a 0.50005,0.50005 0 1 0 1,0 l 0,-3 a 0.50005,0.50005 0 0 0 -0.59375,-0.5 z' id='path3601-2-3-3-9-3-3' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + <path d='M 174.40625,509 A 0.50005,0.50005 0 0 0 174,509.5 l 0,3 a 0.50005,0.50005 0 1 0 1,0 l 0,-3 a 0.50005,0.50005 0 0 0 -0.59375,-0.5 z' id='path3601-2-3-3-9-3-3-7' style='font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;fill:#bebebe;fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Sans;-inkscape-font-specification:Sans' inkscape:connector-curvature='0'/> + + </g> + <g inkscape:groupmode='layer' inkscape:label='places' transform='translate(-163.0002,-508.99113)' id='layer13'/> + <g inkscape:groupmode='layer' inkscape:label='mimetypes' transform='translate(-163.0002,-508.99113)' id='layer14'/> + <g inkscape:groupmode='layer' inkscape:label='emblems' transform='translate(-163.0002,-508.99113)' id='layer15' style='display:inline'/> + <g inkscape:groupmode='layer' inkscape:label='emotes' transform='translate(-163.0002,-508.99113)' id='g71291' style='display:inline'/> + <g inkscape:groupmode='layer' inkscape:label='categories' transform='translate(-163.0002,-508.99113)' id='g4953' style='display:inline'/> + <g inkscape:groupmode='layer' inkscape:label='actions' transform='translate(-163.0002,-508.99113)' id='layer12' style='display:inline'/> +</svg> diff --git a/data/icons/src/gedit.svg b/data/icons/src/gedit.svg new file mode 100644 index 0000000..8df86cb --- /dev/null +++ b/data/icons/src/gedit.svg @@ -0,0 +1,11255 @@ +<?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/jimmac/Desktop/wi-fi.png" + width="400" + height="300" + id="svg11300" + sodipodi:version="0.32" + inkscape:version="0.48.4 r9939" + sodipodi:docname="accessories-text-editor.svg" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.0" + style="enable-background:new"> + <title + id="title2348">Text Editor</title> + <sodipodi:namedview + stroke="#ef2929" + fill="#f57900" + id="base" + pagecolor="#474747" + bordercolor="#666666" + borderopacity="0.25490196" + inkscape:pageopacity="0" + inkscape:pageshadow="2" + inkscape:zoom="1" + inkscape:cx="125.59182" + inkscape:cy="88.349942" + inkscape:current-layer="g58732" + showgrid="false" + inkscape:grid-bbox="true" + inkscape:document-units="px" + inkscape:showpageshadow="false" + inkscape:window-width="2560" + inkscape:window-height="1401" + inkscape:window-x="2560" + inkscape:window-y="0" + width="400px" + height="300px" + inkscape:snap-nodes="false" + inkscape:snap-bbox="true" + gridtolerance="10000" + inkscape:object-nodes="true" + inkscape:snap-grids="true" + showguides="false" + inkscape:guide-bbox="true" + inkscape:window-maximized="1"> + <inkscape:grid + spacingy="1px" + spacingx="1px" + id="grid5883" + type="xygrid" + enabled="true" + visible="true" + empspacing="4" + snapvisiblegridlinesonly="true" /> + <inkscape:grid + type="xygrid" + id="grid11592" + empspacing="2" + visible="true" + enabled="false" + spacingx="0.5px" + spacingy="0.5px" + color="#ff0000" + opacity="0.1254902" + empcolor="#ff0000" + empopacity="0.25098039" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="-0.70710678,0.70710678" + position="309.8125,173.625" + id="guide9630" /> + </sodipodi:namedview> + <defs + id="defs3"> + <linearGradient + inkscape:collect="always" + id="linearGradient2329"> + <stop + style="stop-color:#1b1b1b;stop-opacity:1;" + offset="0" + id="stop2331" /> + <stop + style="stop-color:#9f9f9f;stop-opacity:1" + offset="1" + id="stop2333" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11897"> + <stop + style="stop-color:#555753;stop-opacity:1;" + offset="0" + id="stop11899" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="1" + id="stop11901" /> + </linearGradient> + <linearGradient + id="linearGradient11866"> + <stop + id="stop11868" + offset="0" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + style="stop-color:#000000;stop-opacity:0.7647059;" + offset="0.40380377" + id="stop11870" /> + <stop + id="stop11872" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient11816"> + <stop + style="stop-color:#2e3436;stop-opacity:1;" + offset="0" + id="stop11818" /> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="1" + id="stop11820" /> + </linearGradient> + <linearGradient + id="linearGradient3228"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop3230" /> + <stop + id="stop3232" + offset="0.25594649" + style="stop-color:#000000;stop-opacity:0.49803922;" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop3234" /> + </linearGradient> + <linearGradient + id="linearGradient3078"> + <stop + style="stop-color:#cdcdcd;stop-opacity:1;" + offset="0" + id="stop3080" /> + <stop + id="stop3082" + offset="0.15303211" + style="stop-color:#f9f9f9;stop-opacity:1" /> + <stop + style="stop-color:#656565;stop-opacity:1;" + offset="0.73782027" + id="stop3084" /> + <stop + id="stop3086" + offset="0.89014578" + style="stop-color:#ffffff;stop-opacity:1" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0.91738266" + id="stop3088" /> + <stop + style="stop-color:#cacaca;stop-opacity:1" + offset="1" + id="stop3090" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2778"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop2780" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop2782" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2563"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2565" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2567" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2551"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop2553" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop2555" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2527"> + <stop + style="stop-color:#3e3e3e;stop-opacity:1" + offset="0" + id="stop2529" /> + <stop + style="stop-color:#8e8f8b;stop-opacity:1" + offset="1" + id="stop2531" /> + </linearGradient> + <linearGradient + id="linearGradient2514"> + <stop + id="stop2516" + offset="0" + style="stop-color:#cdcdcd;stop-opacity:1;" /> + <stop + style="stop-color:#f9f9f9;stop-opacity:1" + offset="0.15303211" + id="stop2518" /> + <stop + id="stop2520" + offset="0.73782027" + style="stop-color:#656565;stop-opacity:1;" /> + <stop + style="stop-color:#f4f4f4;stop-opacity:1;" + offset="0.92627496" + id="stop2524" /> + <stop + id="stop2522" + offset="1" + style="stop-color:#cacaca;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2314"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop2316" /> + <stop + style="stop-color:#5b676b;stop-opacity:1" + offset="1" + id="stop2318" /> + </linearGradient> + <inkscape:path-effect + effect="spiro" + id="path-effect2424" + is_visible="true" /> + <inkscape:path-effect + is_visible="true" + id="path-effect2422" + effect="spiro" /> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,97.606136,310.30495)" + id="pattern2420" + xlink:href="#pattern2354" + inkscape:collect="always" /> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,98.500479,309.86179)" + id="pattern2354" + xlink:href="#pattern2288" + inkscape:collect="always" /> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,99.394822,309.41863)" + id="pattern2288" + xlink:href="#pattern2222" + inkscape:collect="always" /> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,99.837986,310.31297)" + id="pattern2222" + xlink:href="#pattern2156" + inkscape:collect="always" /> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,100.28115,311.20731)" + id="pattern2156" + xlink:href="#pattern756" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4396" + inkscape:collect="always"> + <stop + id="stop4398" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop4400" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9256"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop9258" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9260" /> + </linearGradient> + <linearGradient + id="linearGradient9226"> + <stop + style="stop-color:#000000;stop-opacity:0.2" + offset="0" + id="stop9228" /> + <stop + id="stop9234" + offset="0.46706849" + style="stop-color:#000000;stop-opacity:0.4" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop9230" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9180"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop9182" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9184" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9168"> + <stop + style="stop-color:#555753;stop-opacity:1;" + offset="0" + id="stop9170" /> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="1" + id="stop9172" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9112"> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0" + id="stop9114" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop9116" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9104"> + <stop + style="stop-color:#babdb6;stop-opacity:1;" + offset="0" + id="stop9106" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop9108" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9852"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop9854" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop9856" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9728"> + <stop + style="stop-color:#babdb6;stop-opacity:1" + offset="0" + id="stop9730" /> + <stop + style="stop-color:#555753;stop-opacity:1" + offset="1" + id="stop9732" /> + </linearGradient> + <linearGradient + id="linearGradient9606"> + <stop + id="stop9608" + offset="0" + style="stop-color:#555753;stop-opacity:1;" /> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="0.66795093" + id="stop9610" /> + <stop + id="stop9612" + offset="1" + style="stop-color:#888a85;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9390"> + <stop + style="stop-color:#d3d7cf;stop-opacity:1" + offset="0" + id="stop9392" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop9394" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9312"> + <stop + style="stop-color:#d3d7cf;stop-opacity:1;" + offset="0" + id="stop9314" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop9316" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient9302"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop9304" /> + <stop + style="stop-color:#eeeeec;stop-opacity:1" + offset="1" + id="stop9306" /> + </linearGradient> + <linearGradient + y2="32.714375" + x2="25.485056" + y1="34.389839" + x1="26.379272" + gradientUnits="userSpaceOnUse" + id="linearGradient6488" + xlink:href="#linearGradient6437" + inkscape:collect="always" /> + <linearGradient + y2="22.118853" + x2="22.810215" + y1="21.481258" + x1="23.447809" + gradientTransform="translate(6.39225,12.18459)" + gradientUnits="userSpaceOnUse" + id="linearGradient6486" + xlink:href="#linearGradient2301" + inkscape:collect="always" /> + <linearGradient + y2="14.691495" + x2="30.432114" + y1="12.338078" + x1="28.078697" + gradientTransform="translate(6.39225,12.18459)" + gradientUnits="userSpaceOnUse" + id="linearGradient6484" + xlink:href="#linearGradient6445" + inkscape:collect="always" /> + <linearGradient + y2="18.392296" + x2="32.9375" + y1="18.53828" + x1="18.1875" + gradientTransform="matrix(1,0,0,0.415008,6.5485,26.7669)" + gradientUnits="userSpaceOnUse" + id="linearGradient6482" + xlink:href="#linearGradient1813" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="16.003418" + x2="4" + y1="53.320892" + x1="5.6568546" + id="linearGradient4698" + xlink:href="#linearGradient4700" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.012905,0,0,1.338879,-28.88714,-12.68199)" + r="18.5" + fy="36.776756" + fx="29.480816" + cy="36.776756" + cx="29.480816" + id="radialGradient4696" + xlink:href="#linearGradient4690" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="54.448856" + x2="7.9215727" + y1="32.963203" + x1="6.7928934" + id="linearGradient4688" + xlink:href="#linearGradient4682" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.226496,0,25.67067)" + r="14.625" + fy="33.1875" + fx="37.375" + cy="33.1875" + cx="37.375" + id="radialGradient4339" + xlink:href="#linearGradient4333" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient1813"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1815" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1817" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2301"> + <stop + style="stop-color:#ce5c00;stop-opacity:1" + offset="0" + id="stop2303" /> + <stop + style="stop-color:#ce5c00" + offset="1" + id="stop2305" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(1,0,0,1.489708,-2,-22.55226)" + gradientUnits="userSpaceOnUse" + y2="47.897068" + x2="94.364037" + y1="40.664974" + x1="11.949747" + id="linearGradient2925" + xlink:href="#linearGradient2919" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2791"> + <stop + id="stop2793" + offset="0" + style="stop-color:#555753;stop-opacity:1;" /> + <stop + style="stop-color:#cccdcb;stop-opacity:1;" + offset="0.5" + id="stop2799" /> + <stop + id="stop2795" + offset="1" + style="stop-color:#555753;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2804"> + <stop + id="stop2806" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop2808" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2919" + inkscape:collect="always"> + <stop + id="stop2921" + offset="0" + style="stop-color:#d3d7cf;stop-opacity:1;" /> + <stop + id="stop2923" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4333" + inkscape:collect="always"> + <stop + id="stop4335" + offset="0" + style="stop-color:black;stop-opacity:1;" /> + <stop + id="stop4337" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4682" + inkscape:collect="always"> + <stop + id="stop4684" + offset="0" + style="stop-color:white;stop-opacity:1;" /> + <stop + id="stop4686" + offset="1" + style="stop-color:white;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4690" + inkscape:collect="always"> + <stop + id="stop4692" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop4694" + offset="1" + style="stop-color:#eeeeec;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4700"> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="0" + id="stop4702" /> + <stop + style="stop-color:#888a85;stop-opacity:1" + offset="1" + id="stop4704" /> + </linearGradient> + <linearGradient + id="linearGradient6437" + inkscape:collect="always"> + <stop + id="stop6439" + offset="0" + style="stop-color:#e9b96e;stop-opacity:1" /> + <stop + id="stop6441" + offset="1" + style="stop-color:#ffffff;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient6445" + inkscape:collect="always"> + <stop + id="stop6447" + offset="0" + style="stop-color:#fcaf3e;stop-opacity:1" /> + <stop + id="stop6449" + offset="1" + style="stop-color:#ce5c00" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.666667,0,0,0.666667,4.2615023,8.1230633)" + y2="14.691495" + x2="30.432114" + y1="12.120453" + x1="27.861073" + gradientUnits="userSpaceOnUse" + id="linearGradient6432" + xlink:href="#linearGradient2275" + inkscape:collect="always" /> + <linearGradient + y2="18.392296" + x2="32.9375" + y1="18.53828" + x1="18.1875" + gradientTransform="matrix(0.666667,0,0,0.2766721,4.365669,17.844608)" + gradientUnits="userSpaceOnUse" + id="linearGradient6424" + xlink:href="#linearGradient1813-1" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3903" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3901" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3887" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3885" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3877" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3875" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3867" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3865" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3857" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3855" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + y2="14.662594" + x2="11.580806" + y1="6.728353" + x1="11.669194" + gradientUnits="userSpaceOnUse" + id="linearGradient3847" + xlink:href="#linearGradient2791-3" + inkscape:collect="always" /> + <radialGradient + r="1.499999" + fy="11.669307" + fx="12.321928" + cy="11.669307" + cx="12.321928" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + gradientUnits="userSpaceOnUse" + id="radialGradient3845" + xlink:href="#linearGradient2804-5" + inkscape:collect="always" /> + <linearGradient + gradientTransform="matrix(0.666667,0,0,0.666667,-1.500014,0.484431)" + y2="16.003418" + x2="4" + y1="53.320892" + x1="5.6568546" + gradientUnits="userSpaceOnUse" + id="linearGradient3674" + xlink:href="#linearGradient4700-6" + inkscape:collect="always" /> + <radialGradient + r="18.5" + fy="36.776756" + fx="29.480816" + cy="36.776756" + cx="29.480816" + gradientTransform="matrix(1.341937,0,0,0.892586,-20.75811,-7.970233)" + gradientUnits="userSpaceOnUse" + id="radialGradient3672" + xlink:href="#linearGradient4690-3" + inkscape:collect="always" /> + <linearGradient + y2="47.897068" + x2="94.364037" + y1="40.664974" + x1="11.949747" + gradientTransform="matrix(0.657143,0,0,0.989708,-2.599999,-14.55747)" + gradientUnits="userSpaceOnUse" + id="linearGradient3656" + xlink:href="#linearGradient2919-8" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="54.448856" + x2="7.9215727" + y1="32.963203" + x1="6.7928934" + id="linearGradient4688-4" + xlink:href="#linearGradient4682-5" + inkscape:collect="always" /> + <radialGradient + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.226496,0,25.67067)" + r="14.625" + fy="33.1875" + fx="37.375" + cy="33.1875" + cx="37.375" + id="radialGradient4339-5" + xlink:href="#linearGradient4333-5" + inkscape:collect="always" /> + <linearGradient + y2="32.999397" + x2="18" + y1="46" + x1="18" + gradientUnits="userSpaceOnUse" + id="linearGradient3434-9" + xlink:href="#linearGradient3415-2" + inkscape:collect="always" /> + <radialGradient + r="3" + fy="39.5" + fx="6" + cy="39.5" + cx="6" + gradientTransform="matrix(1,0,0,2.166667,-45,-125.0833)" + gradientUnits="userSpaceOnUse" + id="radialGradient3432-4" + xlink:href="#linearGradient3399-3" + inkscape:collect="always" /> + <radialGradient + r="3" + fy="39.5" + fx="6" + cy="39.5" + cx="6" + gradientTransform="matrix(1,0,0,2.166667,0,-46.08333)" + gradientUnits="userSpaceOnUse" + id="radialGradient3430-7" + xlink:href="#linearGradient3399-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient1813-1"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1815-2" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1817-4" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient2275"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1" + offset="0" + id="stop2277" /> + <stop + style="stop-color:#ce5c00" + offset="1" + id="stop2279" /> + </linearGradient> + <linearGradient + id="linearGradient2791-3"> + <stop + id="stop2793-3" + offset="0" + style="stop-color:#555753;stop-opacity:1;" /> + <stop + style="stop-color:#cccdcb;stop-opacity:1;" + offset="0.5" + id="stop2799-5" /> + <stop + id="stop2795-5" + offset="1" + style="stop-color:#555753;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2804-5"> + <stop + id="stop2806-2" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop2808-4" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient2919-8" + inkscape:collect="always"> + <stop + id="stop2921-9" + offset="0" + style="stop-color:#d3d7cf;stop-opacity:1;" /> + <stop + id="stop2923-1" + offset="1" + style="stop-color:#d3d7cf;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient3399-3" + inkscape:collect="always"> + <stop + id="stop3401-2" + offset="0" + style="stop-color:black;stop-opacity:1;" /> + <stop + id="stop3403-9" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient3415-2"> + <stop + id="stop3417-1" + offset="0" + style="stop-color:black;stop-opacity:0;" /> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0.5" + id="stop3423-7" /> + <stop + id="stop3419-0" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4333-5" + inkscape:collect="always"> + <stop + id="stop4335-5" + offset="0" + style="stop-color:black;stop-opacity:1;" /> + <stop + id="stop4337-4" + offset="1" + style="stop-color:black;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4682-5" + inkscape:collect="always"> + <stop + id="stop4684-1" + offset="0" + style="stop-color:white;stop-opacity:1;" /> + <stop + id="stop4686-1" + offset="1" + style="stop-color:white;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4690-3" + inkscape:collect="always"> + <stop + id="stop4692-6" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop4694-7" + offset="1" + style="stop-color:#eeeeec;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4700-6"> + <stop + style="stop-color:#2e3436;stop-opacity:1" + offset="0" + id="stop4702-6" /> + <stop + style="stop-color:#888a85;stop-opacity:1" + offset="1" + id="stop4704-2" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2804-5" + id="radialGradient10778" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + cx="12.321928" + cy="11.669307" + fx="12.321928" + fy="11.669307" + r="1.499999" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2791-3" + id="linearGradient10780" + gradientUnits="userSpaceOnUse" + x1="11.669194" + y1="6.728353" + x2="11.580806" + y2="14.662594" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9302" + id="linearGradient9308" + x1="311.0625" + y1="182.125" + x2="309.8125" + y2="174.0936" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1333333,0,0,1,-42.8,2)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9312" + id="linearGradient9318" + x1="305" + y1="181.625" + x2="321.19629" + y2="186.1875" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.125,0,0,1.0555556,-40.1875,-9.416667)" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2804" + id="radialGradient9693" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(9.835652,1.854444e-6,0,1.136384,-108.6942,-1.914856)" + cx="12.321928" + cy="11.669307" + fx="12.321928" + fy="11.669307" + r="1.499999" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2791" + id="linearGradient9695" + gradientUnits="userSpaceOnUse" + x1="11.669194" + y1="6.728353" + x2="11.580806" + y2="14.662594" /> + <filter + inkscape:collect="always" + id="filter9701"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.1944021" + id="feGaussianBlur9703" /> + </filter> + <filter + inkscape:collect="always" + id="filter9723" + x="-0.067058824" + width="1.1341176" + y="-0.57" + height="2.14"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.475" + id="feGaussianBlur9725" /> + </filter> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9728" + id="linearGradient9734" + x1="318.06305" + y1="169" + x2="321" + y2="185.24222" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.125,0,0,1.0555556,-39.0625,-9.416667)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9728" + id="linearGradient9796" + gradientUnits="userSpaceOnUse" + x1="318.06305" + y1="169" + x2="321" + y2="185.24222" + gradientTransform="matrix(0.75,0,0,0.7777778,75.125,78.666668)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9390" + id="linearGradient9800" + gradientUnits="userSpaceOnUse" + x1="308.43115" + y1="169.16127" + x2="308.43115" + y2="171.16251" + gradientTransform="matrix(1,0,0,0.75,0,41.875)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9606" + id="linearGradient9802" + gradientUnits="userSpaceOnUse" + x1="309.5625" + y1="171.27699" + x2="309.5625" + y2="167.34317" + gradientTransform="matrix(1,0,0,0.75,0,41.875)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9852" + id="linearGradient9858" + x1="304.54205" + y1="218.94789" + x2="304.54205" + y2="226.19572" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9302" + id="linearGradient9860" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.7333333,0,0,0.8,79.6,75.8)" + x1="313.5" + y1="182.34598" + x2="311.13834" + y2="174.97748" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath9084"> + <rect + style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline;enable-background:new" + id="rect9086" + width="176" + height="4" + x="48" + y="230" /> + </clipPath> + <filter + inkscape:collect="always" + id="filter9092" + x="-0.0061694915" + width="1.012339" + y="-0.2184" + height="1.4368"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.455" + id="feGaussianBlur9094" /> + </filter> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath9156"> + <path + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + d="M 60,60 L 48,204 L 48,224 L 224,224 L 224,204 L 212,60 L 60,60 z" + id="path9158" /> + </clipPath> + <filter + inkscape:collect="always" + id="filter9164"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.845" + id="feGaussianBlur9166" /> + </filter> + <filter + height="2.1932494" + y="-0.59662469" + width="1.4058707" + x="-0.20293534" + id="filter4416" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur4418" + stdDeviation="4.10182" + inkscape:collect="always" /> + </filter> + <filter + height="1.264306" + y="-0.13215301" + width="1.0729049" + x="-0.03645243" + id="filter4444" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur4446" + stdDeviation="0.89926392" + inkscape:collect="always" /> + </filter> + <filter + height="1.9250711" + y="-0.46253553" + width="1.255167" + x="-0.1275835" + id="filter4452" + inkscape:collect="always"> + <feGaussianBlur + id="feGaussianBlur4454" + stdDeviation="3.1474237" + inkscape:collect="always" /> + </filter> + <linearGradient + inkscape:collect="always" + id="linearGradient130930-8-3-8"> + <stop + style="stop-color:#f5f2e9;stop-opacity:1" + offset="0" + id="stop130932-2-2-2" /> + <stop + style="stop-color:#d1c59a;stop-opacity:1" + offset="1" + id="stop130934-2-0-8" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient130918-7-0-4"> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="0" + id="stop130920-9-5-1" /> + <stop + id="stop130926-6-0-7" + offset="0.52711064" + style="stop-color:#555555;stop-opacity:1" /> + <stop + style="stop-color:#8d8d8d;stop-opacity:1" + offset="0.68190694" + id="stop130928-9-6-5" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop130922-5-3-1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient130950-8-2-3"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop130952-2-9-7" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop130954-3-7-6" /> + </linearGradient> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath2231-9"> + <path + sodipodi:nodetypes="cccccccc" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 415,266.5 -11.16384,-45.62573 -70.51595,-142.602552 -8.59782,-2.24485 -7.23577,3.360207 -4.10796,8.963372 L 383.27393,231.5446 415,266.5 z" + id="path2233-5" /> + </clipPath> + <filter + inkscape:collect="always" + id="filter130946-7-2-7" + color-interpolation-filters="sRGB"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.09875" + id="feGaussianBlur130948-6-7-3" /> + </filter> + <pattern + patternTransform="matrix(-0.44399845,-0.89602756,-0.89602756,0.44399845,102.06984,310.32098)" + id="pattern756" + xlink:href="#pattern2972-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4117-1" + inkscape:collect="always"> + <stop + style="stop-color:#f9a9a9;stop-opacity:1" + offset="0" + id="stop4121-0" /> + <stop + style="stop-color:#ab5f5f;stop-opacity:1" + offset="1" + id="stop4119-1" /> + </linearGradient> + <filter + height="2.5520616" + y="-0.77603084" + width="1.3082058" + x="-0.15410294" + id="filter4161-0" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur4163-9" + stdDeviation="0.75526875" + inkscape:collect="always" /> + </filter> + <filter + height="1.3114623" + y="-0.15573114" + width="1.410762" + x="-0.20538102" + id="filter4139-3" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur4141-9" + stdDeviation="0.77922653" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient5693-9-5" + inkscape:collect="always"> + <stop + id="stop5695-9-8" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5697-5-7" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5933-6"> + <stop + style="stop-color:#9e5a5a;stop-opacity:1" + offset="0" + id="stop5935-7" /> + <stop + style="stop-color:#e3a4a4;stop-opacity:1" + offset="1" + id="stop5937-9" /> + </linearGradient> + <linearGradient + id="linearGradient4099-6" + inkscape:collect="always"> + <stop + id="stop4101-1" + offset="0" + style="stop-color:#dddddd;stop-opacity:1;" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0.34467545" + id="stop4107-2" /> + <stop + id="stop4109-5" + offset="0.72694808" + style="stop-color:#737373;stop-opacity:1" /> + <stop + id="stop4103-9" + offset="1" + style="stop-color:#bbbbbb;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4181-0" + inkscape:collect="always"> + <stop + id="stop4183-2" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop4185-4" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <clipPath + id="clipPath4177-6" + clipPathUnits="userSpaceOnUse"> + <path + sodipodi:nodetypes="ccccc" + id="path4179-2" + d="m -164.25,115.75 c 6.51359,3.72071 6.23152,15.4465 0,19.25 l 12.25,0 c 6.21029,-2.22292 6.05816,-16.86423 0,-19.5 l -12.25,0.25 z" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + </clipPath> + <filter + id="filter4171-9" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur4173-5" + stdDeviation="0.38947335" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient6960" + inkscape:collect="always"> + <stop + id="stop6962" + offset="0" + style="stop-color:#767676;stop-opacity:1;" /> + <stop + id="stop6964" + offset="1" + style="stop-color:#767676;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient131408-9"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop131410-5" /> + <stop + style="stop-color:#ffffff;stop-opacity:0;" + offset="1" + id="stop131412-6" /> + </linearGradient> + <linearGradient + id="linearGradient5530-1-8" + inkscape:collect="always"> + <stop + id="stop5532-4-9" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop5534-7-6" + offset="1" + style="stop-color:#eeeeec;stop-opacity:0;" /> + </linearGradient> + <filter + id="filter5558-4-0" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur5560-4-8" + stdDeviation="0.13003822" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient5665-9" + inkscape:collect="always"> + <stop + id="stop5667-0" + offset="0" + style="stop-color:#eeeeec;stop-opacity:1;" /> + <stop + id="stop5669-4" + offset="1" + style="stop-color:#eeeeec;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1294" + inkscape:collect="always"> + <stop + id="stop1296" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop1298" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <filter + height="1.0863838" + y="-0.043191914" + width="1.4324048" + x="-0.21620239" + id="filter1290" + inkscape:collect="always" + color-interpolation-filters="sRGB"> + <feGaussianBlur + id="feGaussianBlur1292" + stdDeviation="0.6163846" + inkscape:collect="always" /> + </filter> + <linearGradient + id="linearGradient1306" + inkscape:collect="always"> + <stop + id="stop1308" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop1310" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient1350" + inkscape:collect="always"> + <stop + id="stop1352" + offset="0" + style="stop-color:#ffffff;stop-opacity:1;" /> + <stop + id="stop1354" + offset="1" + style="stop-color:#ffffff;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient4099-6-7" + inkscape:collect="always"> + <stop + id="stop4101-1-8" + offset="0" + style="stop-color:#dddddd;stop-opacity:1;" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0.34467545" + id="stop4107-2-2" /> + <stop + id="stop4109-5-7" + offset="0.72694808" + style="stop-color:#737373;stop-opacity:1" /> + <stop + id="stop4103-9-2" + offset="1" + style="stop-color:#bbbbbb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4099-6-7" + id="linearGradient649" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.18921151,-0.18922525,0.18921151,0.18922525,49.738733,-37.732231)" + x1="-158.75" + y1="115.93846" + x2="-158.75" + y2="134.25" /> + <linearGradient + id="linearGradient4117-1-0" + inkscape:collect="always"> + <stop + style="stop-color:#f9a9a9;stop-opacity:1" + offset="0" + id="stop4121-0-5" /> + <stop + style="stop-color:#ab5f5f;stop-opacity:1" + offset="1" + id="stop4119-1-6" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4117-1-0" + id="radialGradient691" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.32039399,-0.32039477,0.32241401,0.3224148,50.518433,-74.157887)" + cx="-138.83727" + cy="128.00087" + fx="-138.83727" + fy="128.00087" + r="9.1267023" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4099-6-7-7" + id="linearGradient649-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.12724649,-0.12728454,0.12724649,0.12728454,31.393152,-23.626692)" + x1="-158.75" + y1="115.93846" + x2="-158.75" + y2="134.25" /> + <linearGradient + id="linearGradient4099-6-7-7" + inkscape:collect="always"> + <stop + id="stop4101-1-8-4" + offset="0" + style="stop-color:#dddddd;stop-opacity:1;" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0.34467545" + id="stop4107-2-2-1" /> + <stop + id="stop4109-5-7-5" + offset="0.72694808" + style="stop-color:#737373;stop-opacity:1" /> + <stop + id="stop4103-9-2-9" + offset="1" + style="stop-color:#bbbbbb;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient4117-1-0-1" + inkscape:collect="always"> + <stop + style="stop-color:#f9a9a9;stop-opacity:1" + offset="0" + id="stop4121-0-5-5" /> + <stop + style="stop-color:#ab5f5f;stop-opacity:1" + offset="1" + id="stop4119-1-6-1" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4117-1-0-1" + id="radialGradient736" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.21546793,-0.21551722,0.21682641,0.21687602,31.917507,-48.128825)" + cx="-138.83727" + cy="128.00087" + fx="-138.83727" + fy="128.00087" + r="9.1267023" /> + <linearGradient + y2="18.53828" + x2="34.473412" + y1="18.53828" + x1="18.1875" + gradientTransform="matrix(0.666667,0,0,0.2766721,4.365669,17.844608)" + gradientUnits="userSpaceOnUse" + id="linearGradient6424-5" + xlink:href="#linearGradient1813-1-5" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient1813-1-5"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1815-2-1" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1817-4-8" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.666667,0,0,0.666667,4.2615023,8.1230633)" + y2="14.691495" + x2="30.432114" + y1="12.120453" + x1="27.861073" + gradientUnits="userSpaceOnUse" + id="linearGradient6432-5" + xlink:href="#linearGradient2275-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2275-7"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1" + offset="0" + id="stop2277-5" /> + <stop + style="stop-color:#ce5c00" + offset="1" + id="stop2279-9" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4117-1-0-1-9" + id="radialGradient736-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2154679,-0.2155172,0.2168264,0.216876,31.917507,-48.128825)" + cx="-138.83727" + cy="128.00087" + fx="-138.83727" + fy="128.00087" + r="9.1267023" /> + <linearGradient + id="linearGradient4117-1-0-1-9" + inkscape:collect="always"> + <stop + style="stop-color:#f9a9a9;stop-opacity:1" + offset="0" + id="stop4121-0-5-5-8" /> + <stop + style="stop-color:#ab5f5f;stop-opacity:1" + offset="1" + id="stop4119-1-6-1-5" /> + </linearGradient> + <linearGradient + id="linearGradient4099-6-7-7-3" + inkscape:collect="always"> + <stop + id="stop4101-1-8-4-5" + offset="0" + style="stop-color:#dddddd;stop-opacity:1;" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0.34467545" + id="stop4107-2-2-1-7" /> + <stop + id="stop4109-5-7-5-9" + offset="0.72694808" + style="stop-color:#737373;stop-opacity:1" /> + <stop + id="stop4103-9-2-9-9" + offset="1" + style="stop-color:#bbbbbb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4099-6-7-7-3" + id="linearGradient820" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.1272465,-0.1272845,0.1272465,0.1272845,31.393152,-23.626692)" + x1="-158.75" + y1="115.93846" + x2="-158.75" + y2="134.25" /> + <linearGradient + y2="18.392296" + x2="32.9375" + y1="18.53828" + x1="18.1875" + gradientTransform="matrix(0.666667,0,0,0.2766721,6.5064793,15.424562)" + gradientUnits="userSpaceOnUse" + id="linearGradient6424-5-0" + xlink:href="#linearGradient1813-1-5-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient1813-1-5-3"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop1815-2-1-9" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop1817-4-8-3" /> + </linearGradient> + <linearGradient + gradientTransform="matrix(0.666667,0,0,0.666667,4.2615023,8.1230633)" + y2="14.691495" + x2="30.432114" + y1="12.120453" + x1="27.861073" + gradientUnits="userSpaceOnUse" + id="linearGradient6432-5-3" + xlink:href="#linearGradient2275-7-7" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient2275-7-7"> + <stop + style="stop-color:#fcaf3e;stop-opacity:1" + offset="0" + id="stop2277-5-4" /> + <stop + style="stop-color:#ce5c00" + offset="1" + id="stop2279-9-4" /> + </linearGradient> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4117-1-0-1-9-6" + id="radialGradient736-9-2" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.2154679,-0.2155172,0.2168264,0.216876,31.917507,-48.128825)" + cx="-138.83727" + cy="128.00087" + fx="-138.83727" + fy="128.00087" + r="9.1267023" /> + <linearGradient + id="linearGradient4117-1-0-1-9-6" + inkscape:collect="always"> + <stop + style="stop-color:#f9a9a9;stop-opacity:1" + offset="0" + id="stop4121-0-5-5-8-7" /> + <stop + style="stop-color:#ab5f5f;stop-opacity:1" + offset="1" + id="stop4119-1-6-1-5-5" /> + </linearGradient> + <linearGradient + id="linearGradient4099-6-7-7-3-0" + inkscape:collect="always"> + <stop + id="stop4101-1-8-4-5-5" + offset="0" + style="stop-color:#dddddd;stop-opacity:1;" /> + <stop + style="stop-color:#ffffff;stop-opacity:1" + offset="0.34467545" + id="stop4107-2-2-1-7-0" /> + <stop + id="stop4109-5-7-5-9-9" + offset="0.72694808" + style="stop-color:#737373;stop-opacity:1" /> + <stop + id="stop4103-9-2-9-9-9" + offset="1" + style="stop-color:#bbbbbb;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4099-6-7-7-3-0" + id="linearGradient924" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.1272465,-0.1272845,0.1272465,0.1272845,31.393152,-23.626692)" + x1="-158.75" + y1="115.93846" + x2="-158.75" + y2="134.25" /> + <filter + inkscape:collect="always" + id="filter2545" + x="-0.15128407" + width="1.3025681" + y="-0.066909888" + height="1.1338198"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.59657274" + id="feGaussianBlur2547" /> + </filter> + <filter + inkscape:collect="always" + id="filter2786"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.36" + id="feGaussianBlur2788" /> + </filter> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath11012"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 123.5625,38.206288 C 121.6687,38.382536 119.88119,40.1162 119.08895,41.681851 C 115.79767,48.186196 113.56857,59.535951 112.85814,67.144131 C 112.72169,69.908047 114.02305,71.029235 116.27035,71.186363 C 119.1935,71.390754 120.12657,70.265272 120.70597,68.126356 C 121.09071,63.09631 122.0873,57.477227 123.83511,52.335209 C 124.47077,53.954088 124.98496,55.636449 125.29666,57.548554 C 125.29666,57.548554 132.60916,57.548554 132.60916,57.548554 C 131.86534,51.526512 131.08644,45.891961 127.89026,40.435182 C 127.6386,40.016041 127.30411,39.718286 126.94524,39.490735 C 126.91874,39.465462 126.88574,39.440015 126.85838,39.415179 C 126.25444,38.866729 125.44678,38.413186 124.37155,38.244066 C 124.09889,38.20118 123.83304,38.181109 123.5625,38.206288 z" + id="path11014" /> + </clipPath> + <filter + inkscape:collect="always" + id="filter11792"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.50184999" + id="feGaussianBlur11794" /> + </filter> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath11876"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 123.37567,53.778655 C 121.91265,58.512661 121.0427,63.548292 120.69372,68.110776 C 120.11433,70.249693 119.18736,71.380196 116.26421,71.175806 C 114.0169,71.018673 112.73285,69.908033 112.8693,67.144117 C 113.26788,62.875632 114.13956,57.430476 115.40925,52.323899 C 116.55841,46.486655 125.5092,49.09159 123.37567,53.778655 L 123.37567,53.778655 z" + id="path11878" + sodipodi:nodetypes="ccsccc" /> + </clipPath> + <filter + inkscape:collect="always" + id="filter11885"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="0.33733261" + id="feGaussianBlur11887" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient130930-8-3-8" + id="radialGradient2488" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.0111147,-0.23021288,-1.87541,-0.09054527,141.79182,206.10505)" + cx="248.9023" + cy="224.74362" + fx="248.9023" + fy="224.74362" + r="22.228241" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient130918-7-0-4" + id="linearGradient2490" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.40723419,-0.71623321,-0.71623321,0.40723419,-28.939722,205.38632)" + x1="241.00113" + y1="247.37444" + x2="252.28912" + y2="242.4223" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient130950-8-2-3" + id="linearGradient2492" + gradientUnits="userSpaceOnUse" + x1="336.83932" + y1="97.874176" + x2="321.5" + y2="63" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4117-1" + id="radialGradient2494" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.6840159,0,0,1.6946334,94.966892,-88.921495)" + cx="-138.83727" + cy="128.00087" + fx="-138.83727" + fy="128.00087" + r="9.1267023" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5693-9-5" + id="linearGradient2496" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0569555,1.5316091e-8,1.5316091e-8,-1.0569555,9.0796859,261.69045)" + x1="-146.3125" + y1="116.46875" + x2="-146.81351" + y2="120.58913" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5933-6" + id="linearGradient2498" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.0569555,1.5316091e-8,-1.5316091e-8,1.0569555,9.2118072,-3.1429871)" + x1="-146.25" + y1="117.09375" + x2="-145.875" + y2="119.53125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4099-6" + id="linearGradient2500" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(1.9962391,3.9924767)" + x1="-158.75" + y1="115.93846" + x2="-158.75" + y2="134.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4181-0" + id="linearGradient2502" + gradientUnits="userSpaceOnUse" + x1="-152" + y1="132" + x2="-159.02415" + y2="115.75" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6960" + id="linearGradient2504" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.36581529,-0.73824713,-0.73824713,0.36581529,-34.082446,219.26464)" + x1="172.33588" + y1="75.390663" + x2="169.41151" + y2="76.839737" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient131408-9" + id="radialGradient2506" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.0468223,-0.54506602,-3.0463476,0.26168763,207.13632,201.98876)" + cx="173.92644" + cy="145.18048" + fx="173.92644" + fy="145.18048" + r="30.125" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5530-1-8" + id="radialGradient2508" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(3.7530676,0,0,2.8521331,384.24718,-233.11458)" + cx="-139.48895" + cy="124.53033" + fx="-139.48895" + fy="124.53033" + r="2.8607109" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient5665-9" + id="radialGradient2510" + gradientUnits="userSpaceOnUse" + cx="-140.375" + cy="122.875" + fx="-140.375" + fy="122.875" + r="1.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1306" + id="radialGradient2514" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1294" + id="radialGradient2516" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1306" + id="radialGradient2518" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1294" + id="radialGradient2520" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1306" + id="radialGradient2522" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1350" + id="radialGradient2528" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.64876554,0,0,2.6010312,-380.92341,32.336262)" + cx="345.86935" + cy="37.28125" + fx="345.86935" + fy="37.28125" + r="4.6221809" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1294" + id="radialGradient2546" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1294" + id="radialGradient2570" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.3665502,0,0,4.8342062,-129.9683,-142.34491)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient1306" + id="radialGradient2590" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.1115395,0,0,3.9320994,-39.548754,-108.85419)" + cx="354.57162" + cy="37.125" + fx="354.57162" + fy="37.125" + r="5.4004765" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9390" + id="linearGradient3599" + gradientUnits="userSpaceOnUse" + x1="308.43115" + y1="169.16127" + x2="308.43115" + y2="171.16251" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9606" + id="linearGradient3601" + gradientUnits="userSpaceOnUse" + x1="309.5625" + y1="171.27699" + x2="309.5625" + y2="167.34317" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9104" + id="linearGradient59219" + gradientUnits="userSpaceOnUse" + x1="128.25" + y1="197.82446" + x2="128.25" + y2="218.00272" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9112" + id="radialGradient59221" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0605857,-6.7199506e-8,2.3789977e-8,0.7294888,-202.31827,41.561226)" + cx="183.58319" + cy="198" + fx="183.58319" + fy="198" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9256" + id="radialGradient59223" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.8295807,1.9618745e-8,0,0.5795454,-45.626941,32.749998)" + cx="55" + cy="36.666664" + fx="55" + fy="36.666664" + r="88" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9104" + id="linearGradient59225" + gradientUnits="userSpaceOnUse" + x1="128.25" + y1="182.32446" + x2="128.25" + y2="218.00272" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9168" + id="linearGradient59227" + gradientUnits="userSpaceOnUse" + x1="123" + y1="208.5" + x2="123" + y2="29.720108" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient9180" + id="linearGradient59229" + gradientUnits="userSpaceOnUse" + x1="136" + y1="159.30634" + x2="125.87325" + y2="-29.852112" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59231" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59233" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59235" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59237" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59239" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59241" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59243" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59245" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient59247" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-12.599792)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59249" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59251" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59253" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59255" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59257" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59259" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59261" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59263" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59265" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59267" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59269" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59271" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59273" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59275" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59277" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59279" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59281" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59283" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59285" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59287" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59289" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59291" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59293" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59295" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59297" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59299" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59301" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59303" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59305" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59307" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59309" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59311" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59313" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59315" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59317" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59319" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59321" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59323" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59325" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59327" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59329" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59331" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59333" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59335" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59337" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59339" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59341" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59343" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59345" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59347" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59349" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59351" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59353" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59355" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59357" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59359" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59361" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59363" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59365" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59367" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59369" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59371" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59373" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59375" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59377" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59379" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59381" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59383" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59385" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59387" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59389" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59391" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59393" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59395" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59397" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59399" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59401" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59403" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59405" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59407" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59409" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59411" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59413" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59415" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59417" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59419" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59421" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59423" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59425" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59427" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59429" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59431" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59433" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59435" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59437" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59439" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59441" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59443" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59445" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59447" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59449" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59451" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59453" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59455" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59457" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59459" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59461" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59463" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59465" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59467" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59469" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59471" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59473" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59475" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59477" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59479" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59481" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59483" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59485" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59487" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59489" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59491" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59493" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59495" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59497" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59499" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59501" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59503" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59505" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59507" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59509" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59511" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59513" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59515" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59517" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59519" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59521" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59523" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59525" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59527" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59529" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59531" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59533" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59535" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59537" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59539" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59541" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59543" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59545" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59547" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59549" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59551" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59553" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59555" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59557" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59559" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59561" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59563" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59565" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59567" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59569" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59571" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59573" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59575" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59577" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59579" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59581" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59583" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59585" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59587" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59589" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59591" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59593" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59595" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59597" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59599" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59601" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59603" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59605" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59607" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59609" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59611" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59613" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59615" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59617" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59619" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59621" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59623" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59625" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59627" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59629" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59631" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59633" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59635" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59637" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59639" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59641" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59643" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59645" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59647" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59649" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59651" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59653" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59655" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59657" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59659" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59661" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59663" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59665" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59667" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59669" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59671" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59673" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59675" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59677" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59679" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59681" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59683" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59685" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59687" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59689" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59691" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59693" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59695" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59697" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59699" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59701" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59703" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59705" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59707" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59709" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59711" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59713" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59715" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59717" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59719" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59721" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59723" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59725" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59727" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59729" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59731" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59733" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59735" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59737" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59739" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59741" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59743" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59745" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59747" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59749" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59751" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59753" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59755" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59757" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59759" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59761" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59763" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59765" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59767" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59769" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59771" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59773" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59775" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59777" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59779" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59781" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59783" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59785" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59787" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59789" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59791" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59793" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59795" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59797" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59799" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59801" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59803" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59805" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59807" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59809" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59811" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59813" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59815" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59817" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59819" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59821" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59823" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59825" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59827" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59829" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59831" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59833" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59835" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59837" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59839" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59841" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59843" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59845" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59847" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59849" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59851" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59853" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59855" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59857" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59859" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59861" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59863" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59865" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59867" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59869" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59871" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59873" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59875" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59877" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59879" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59881" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59883" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59885" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59887" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59889" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59891" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59893" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59895" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59897" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59899" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59901" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59903" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59905" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59907" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59909" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59911" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59913" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59915" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59917" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59919" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59921" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59923" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59925" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59927" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59929" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59931" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59933" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59935" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59937" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59939" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59941" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59943" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59945" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59947" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59949" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59951" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59953" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59955" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59957" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59959" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59961" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59963" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59965" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59967" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59969" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59971" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59973" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59975" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59977" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59979" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59981" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59983" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59985" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59987" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59989" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2329" + id="linearGradient59991" + gradientUnits="userSpaceOnUse" + x1="118.95486" + y1="167.55492" + x2="120.17053" + y2="74.832535" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4396" + id="radialGradient59993" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.909579,2.9053401e-7,-1.719766e-7,1.1303424,-114.33612,-37.142402)" + cx="120.75494" + cy="202.94055" + fx="120.75494" + fy="202.94055" + r="27.784051" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4396" + id="radialGradient59995" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.2783511,0,0,0.96591645,-154.36721,-3.2736652)" + cx="120.75494" + cy="202.94055" + fx="120.75494" + fy="202.94055" + r="27.784051" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4396" + id="radialGradient59997" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.909579,2.9053401e-7,-1.719766e-7,1.1303424,-114.33612,-37.142402)" + cx="120.75494" + cy="202.94055" + fx="120.75494" + fy="202.94055" + r="27.784051" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient59999" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60001" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60003" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60005" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60007" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60009" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60011" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60013" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-45.2784,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60015" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-45.2784,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60017" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-65.876972,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient60019" + gradientUnits="userSpaceOnUse" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60021" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60023" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60025" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0343179,0,0,1.1966576,-81.969695,-16.167125)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60027" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60029" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60031" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60033" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60035" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60037" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient60039" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2514" + id="radialGradient60053" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9535959,0.09558682,-0.1792925,9.2914736,-518.12545,-185.26363)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient60055" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11866" + id="linearGradient60057" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.735504" + x2="116.12797" + y2="61.992752" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11897" + id="linearGradient60059" + gradientUnits="userSpaceOnUse" + x1="197.25963" + y1="66.081268" + x2="197.25963" + y2="48.463104" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2527" + id="radialGradient7745" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5787934,-1.9481728,-3.0875019,0.7339127,322.98691,-226.47725)" + cx="-110.02866" + cy="85.706482" + fx="-110.02866" + fy="85.706482" + r="4.9694943" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2563" + id="radialGradient7747" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.9680969,0,-52.325227)" + cx="129.76097" + cy="56.971184" + fx="129.76097" + fy="56.971184" + r="6.1638479" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3078" + id="radialGradient7749" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9651781,-0.03163525,0.06353698,9.5673407,-524.77704,-173.82354)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient7751" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3228" + id="linearGradient7753" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.117752" + x2="117.89574" + y2="50.893509" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11816" + id="linearGradient7755" + gradientUnits="userSpaceOnUse" + x1="121.5" + y1="37.645859" + x2="116.375" + y2="23.49086" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2527" + id="radialGradient7757" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5787934,-1.9481728,-3.0875019,0.7339127,322.98691,-226.47725)" + cx="-110.02866" + cy="85.706482" + fx="-110.02866" + fy="85.706482" + r="4.9694943" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2563" + id="radialGradient7759" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.9680969,0,-52.325227)" + cx="129.76097" + cy="56.971184" + fx="129.76097" + fy="56.971184" + r="6.1638479" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3078" + id="radialGradient7761" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9651781,-0.03163525,0.06353698,9.5673407,-524.77704,-173.82354)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient7763" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3228" + id="linearGradient7765" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.117752" + x2="117.89574" + y2="50.893509" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11816" + id="linearGradient7767" + gradientUnits="userSpaceOnUse" + x1="121.5" + y1="37.645859" + x2="116.375" + y2="23.49086" /> + <filter + inkscape:collect="always" + id="filter8545"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="1.2975959" + id="feGaussianBlur8547" /> + </filter> + <filter + inkscape:collect="always" + id="filter8555" + x="-0.088486082" + width="1.1769722" + y="-0.10509726" + height="1.2101945"> + <feGaussianBlur + inkscape:collect="always" + stdDeviation="6.4889793" + id="feGaussianBlur8557" /> + </filter> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient9226" + id="radialGradient8561" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.766376,-0.2053499,0.3208734,1.1975155,-36.972844,-14.463766)" + cx="136" + cy="214.24554" + fx="136" + fy="214.24554" + r="88" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8636" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8638" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8640" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8642" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8644" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8646" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8648" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-5.4256032,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8650" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-45.2784,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8652" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-45.2784,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8654" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-65.876972,0)" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient2778" + id="linearGradient8656" + gradientUnits="userSpaceOnUse" + x1="136.25" + y1="69.125" + x2="136.75" + y2="56.125" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8658" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8660" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8662" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(2.0343179,0,0,1.1966576,-81.969695,-16.167125)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8664" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8666" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8668" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8670" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8672" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8674" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2314" + id="radialGradient8676" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9833633,0,0,2.9313902,-315.68154,-144.4444)" + cx="79.25" + cy="73.946426" + fx="79.25" + fy="73.946426" + r="4.25" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2514" + id="radialGradient8690" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9535959,0.09558682,-0.1792925,9.2914736,-518.12545,-185.26363)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient8692" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11866" + id="linearGradient8694" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.735504" + x2="116.12797" + y2="61.992752" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11897" + id="linearGradient8696" + gradientUnits="userSpaceOnUse" + x1="197.25963" + y1="66.081268" + x2="197.25963" + y2="48.463104" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2527" + id="radialGradient8902" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5787934,-1.9481728,-3.0875019,0.7339127,322.98691,-226.47725)" + cx="-110.02866" + cy="85.706482" + fx="-110.02866" + fy="85.706482" + r="4.9694943" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2563" + id="radialGradient8904" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.9680969,0,-52.325227)" + cx="129.76097" + cy="56.971184" + fx="129.76097" + fy="56.971184" + r="6.1638479" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3078" + id="radialGradient8906" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9651781,-0.03163525,0.06353698,9.5673407,-524.77704,-173.82354)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient8908" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3228" + id="linearGradient8910" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.117752" + x2="117.89574" + y2="50.893509" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11816" + id="linearGradient8912" + gradientUnits="userSpaceOnUse" + x1="121.5" + y1="37.645859" + x2="116.375" + y2="23.49086" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2527" + id="radialGradient8914" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.5787934,-1.9481728,-3.0875019,0.7339127,322.98691,-226.47725)" + cx="-110.02866" + cy="85.706482" + fx="-110.02866" + fy="85.706482" + r="4.9694943" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2563" + id="radialGradient8916" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.9680969,0,-52.325227)" + cx="129.76097" + cy="56.971184" + fx="129.76097" + fy="56.971184" + r="6.1638479" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient3078" + id="radialGradient8918" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(4.9651781,-0.03163525,0.06353698,9.5673407,-524.77704,-173.82354)" + cx="135.323" + cy="20.937555" + fx="135.323" + fy="20.937555" + r="4.5487531" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient2551" + id="radialGradient8920" + gradientUnits="userSpaceOnUse" + cx="120.625" + cy="48.25" + fx="120.625" + fy="48.25" + r="3" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3228" + id="linearGradient8922" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,-0.09129439,1,6.4880155,0)" + x1="115.875" + y1="71.117752" + x2="117.89574" + y2="50.893509" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient11816" + id="linearGradient8924" + gradientUnits="userSpaceOnUse" + x1="121.5" + y1="37.645859" + x2="116.375" + y2="23.49086" /> + </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>Jakub Steiner</dc:title> + </cc:Agent> + </dc:creator> + <dc:source>http://jimmac.musichall.cz</dc:source> + <cc:license + rdf:resource="" /> + <dc:title>Text Editor</dc:title> + <dc:subject> + <rdf:Bag> + <rdf:li>text</rdf:li> + <rdf:li>editor</rdf:li> + <rdf:li>gedit</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>Lapo Calamandrei</dc:title> + </cc:Agent> + </dc:contributor> + </cc:Work> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + style="display:inline" + inkscape:groupmode="layer" + inkscape:label="gedit" + id="layer1"> + <g + inkscape:groupmode="layer" + id="layer2" + inkscape:label="baseplate" + style="display:none"> + <rect + inkscape:label="256x256" + y="20" + x="20" + height="256" + width="256" + id="rect6282" + style="fill:#d3d7cf;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:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect6284" + width="48" + height="48" + x="296.0625" + y="39.99633" + inkscape:label="48x48" /> + <rect + inkscape:label="32x32" + y="115.99633" + x="303" + height="32" + width="32" + id="rect6592" + style="fill:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + inkscape:label="24x24" + y="166" + x="302" + height="24" + width="24" + id="rect5028" + 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 + inkscape:label="16x16" + y="209" + x="303" + height="16" + width="16" + id="rect6833" + style="fill:#d3d7cf;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:#d3d7cf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="rect6749" + width="22" + height="22" + x="303" + y="167.05884" + inkscape:label="22x22" /> + <text + id="context" + inkscape:label="context" + 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="31.87059" + xml:space="preserve" + y="-13.139694"><tspan + id="tspan2716" + sodipodi:role="line" + x="31.87059" + y="-13.139694">apps</tspan></text> + <text + id="icon-name" + inkscape:label="icon-name" + sodipodi:linespacing="125%" + 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" + x="202.87057" + xml:space="preserve" + y="-13.139694"><tspan + id="tspan3023" + sodipodi:role="line" + x="202.87057" + y="-13.139694">accessories-text-editor</tspan></text> + <path + style="opacity:0.29455285;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 20.0625,20 0,238 0,18 237.9375,0 18,0 0.0625,0 0,-18 -0.0625,0 0,-238 -18,0 0,238 -219.9375,0 0,-238 -18,0 z" + id="rect3068-1" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:groupmode="layer" + id="layer4" + inkscape:label="smallsizes" + style="display:inline"> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0.63572329" + inkscape:original="M 303.1875 51.78125 C 302.20815 51.78125 301.47632 52.591649 301.40625 53.5625 L 299.40625 81.25 L 335.34375 81.25 L 333.40625 53.5625 C 333.33527 52.547408 332.60434 51.781248 331.625 51.78125 L 303.1875 51.78125 z " + style="fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter9701);enable-background:new" + id="path9687" + d="m 303.1875,51.15625 c -1.33005,0 -2.31513,1.112491 -2.40625,2.375 l -2,27.6875 a 0.63578687,0.63578687 0 0 0 0.625,0.65625 l 35.9375,0 a 0.63578687,0.63578687 0 0 0 0.625,-0.65625 l -1.9375,-27.6875 c -0.0906,-1.295837 -1.09535,-2.375003 -2.40625,-2.375 l -28.4375,0 z" + transform="matrix(0.9941088,0,0,0.9114956,1.9792578,6.3713048)" /> + <g + style="display:inline;enable-background:new" + id="layer1-7" + inkscape:label="Livello 1" + transform="translate(295,36.999999)"> + <path + sodipodi:nodetypes="cczcccczc" + id="rect3790" + d="m 8.267767,10.523348 28.464443,0 c 0.979343,0 1.696788,0.752675 1.767767,1.767767 L 40.437477,40 40.5,43.5 l -36,0 0,-3.5 2,-27.708885 c 0.070075,-0.970851 0.788424,-1.767767 1.767767,-1.767767 z" + style="fill:url(#radialGradient4696);fill-opacity:1;stroke:url(#linearGradient4698);stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" /> + <g + style="opacity:0.4" + transform="matrix(1.0416677,0,0,0.4579337,-0.9375015,24.411627)" + id="g3425" /> + <path + transform="matrix(0.897436,0,0,0.981132,1.333333,1.688679)" + d="M 52,33.1875 C 52,35.016943 45.452164,36.5 37.375,36.5 29.297836,36.5 22.75,35.016943 22.75,33.1875 c 0,-1.829443 6.547836,-3.3125 14.625,-3.3125 8.077164,0 14.625,1.483057 14.625,3.3125 z" + sodipodi:ry="3.3125" + sodipodi:rx="14.625" + sodipodi:cy="33.1875" + sodipodi:cx="37.375" + id="path4331" + style="opacity:0.07000002;fill:url(#radialGradient4339);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <g + transform="translate(-1.75,-1)" + id="g2894"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2878" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,-1.524595,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2880" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,2.475405,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2882" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,6.475405,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2884" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,10.47541,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2886" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,14.47541,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2888" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,18.47541,-5.176204)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2890" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,22.47541,-5.176204)" /> + </g> + <rect + y="40" + x="5" + height="3.0103984" + width="35" + id="rect2757" + style="fill:url(#linearGradient2925);fill-opacity:1;stroke:none" /> + <path + d="m 8.28125,11.5 c -0.4636608,0 -0.7747289,0.320452 -0.8125,0.84375 l -2,27.65625 0,0.0625 0,2.46875 34.03125,0 -0.03125,-2.46875 0,-0.03125 -1.9375,-27.6875 C 37.490391,11.75941 37.211695,11.5 36.71875,11.5 l -28.4375,0 z" + id="path4680" + style="fill:none;stroke:url(#linearGradient4688);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + inkscape:original="M 8.28125 10.53125 C 7.301907 10.53125 6.570075 11.310399 6.5 12.28125 L 4.5 40 L 4.5 43.5 L 40.5 43.5 L 40.4375 40 L 38.5 12.28125 C 38.429021 11.266158 37.698095 10.53125 36.71875 10.53125 L 8.28125 10.53125 z " + inkscape:radius="-0.9722718" + sodipodi:type="inkscape:offset" /> + <path + sodipodi:nodetypes="cc" + id="path2760" + d="m 4.5,43.5 36,0" + style="fill:none;stroke:#373a3a;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <g + transform="translate(-2,-1)" + id="g2814"> + <rect + style="fill:url(#radialGradient9693);fill-opacity:1;stroke:url(#linearGradient9695);stroke-width:1.00199974;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect2776" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path2812" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + transform="translate(60.78337,49.43458)" + style="display:inline" + inkscape:label="base" + id="g2637" /> + <g + transform="translate(0,-1)" + style="opacity:0.6" + id="g2953"> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3297" + width="5" + height="1" + x="31" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3305" + width="2.125" + height="1" + x="8.875" + y="20" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3287" + width="4.171875" + height="1" + x="7.828125" + y="36" + rx="0.46088129" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3307" + width="8.390625" + height="1" + x="8.609375" + y="23" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3309" + width="3.515625" + height="1" + x="8.484375" + y="25" + rx="0.49520382" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3313" + width="4" + height="1" + x="33" + y="33" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2940" + width="3" + height="1" + x="21" + y="36" + rx="0.5" + ry="0.5" + inkscape:transform-center-x="0.28125" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2915" + width="5" + height="1" + x="30" + y="23" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2885" + width="2.640625" + height="1" + x="8.359375" + y="28" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2893" + width="6" + height="1" + x="9" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2895" + width="5" + height="1" + x="21" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2897" + width="2" + height="1" + x="28" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2899" + width="2" + height="1" + x="16" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2901" + width="2" + height="1" + x="19" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2903" + width="4" + height="1" + x="12" + y="20" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2905" + width="2" + height="1" + x="17" + y="20" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2907" + width="4" + height="1" + x="20" + y="20" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2909" + width="4" + height="1" + x="19" + y="23" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2911" + width="2" + height="1" + x="23" + y="23" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2913" + width="3" + height="1" + x="26" + y="23" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2919" + width="2" + height="1" + x="13" + y="25" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2921" + width="4" + height="1" + x="16" + y="25" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2923" + width="2" + height="1" + x="20" + y="25" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2925" + width="2" + height="1" + x="24" + y="25" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2931" + width="2" + height="1" + x="12" + y="28" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2933" + width="4" + height="1" + x="14" + y="28" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2935" + width="2" + height="1" + x="19" + y="28" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2938" + width="6" + height="1" + x="13" + y="36" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2942" + width="2" + height="1" + x="8" + y="33" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2945" + width="4" + height="1" + x="11" + y="33" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2947" + width="5" + height="1" + x="17" + y="33" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2949" + width="4" + height="1" + x="23" + y="33" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.8;fill:#888a85;fill-opacity:1;stroke:none" + id="rect2951" + width="4" + height="1" + x="28.007845" + y="33.004311" + rx="0.54237288" + ry="0.5" /> + </g> + <use + height="48" + width="48" + transform="translate(4,0)" + id="use4712" + xlink:href="#g2814" + y="0" + x="0" /> + <use + height="48" + width="48" + transform="translate(8,0)" + id="use4714" + xlink:href="#g2814" + y="0" + x="0" /> + <use + height="48" + width="48" + transform="translate(12,0)" + id="use4716" + xlink:href="#g2814" + y="0" + x="0" /> + <use + height="48" + width="48" + transform="translate(16,0)" + id="use4718" + xlink:href="#g2814" + y="0" + x="0" /> + <use + height="48" + width="48" + transform="translate(20,0)" + id="use4720" + xlink:href="#g2814" + y="0" + x="0" /> + <use + height="48" + width="48" + transform="translate(24,0)" + id="use4722" + xlink:href="#g2814" + y="0" + x="0" /> + <g + id="g6471"> + <path + sodipodi:nodetypes="cccccccccc" + style="opacity:0.4;fill:url(#linearGradient6482);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 41.07975,28.46584 -15,4.472913 -0.125,0.06484 -0.09375,0.07781 -2.75,2.853178 7.4375,-0.842984 0.28125,-0.02594 0.1875,-0.07781 10.0625,-2.683193 0,-3.838821 0,7e-6 z" + id="path2334" /> + <g + id="g6462"> + <g + id="g6458"> + <path + sodipodi:nodetypes="ccccccc" + id="path2273" + d="m 25.89225,30.18459 19,-19 c 2.175049,0.359961 3.084719,1.732225 3.5,3.5 l -19,19 -4.616117,0.704505 1.116117,-4.204505 0,0 z" + style="fill:url(#linearGradient6484);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6486);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="ccccccc" + id="path2313" + d="m 26.792248,30.68459 18.49775,-18.397748 c 1.089745,0.178435 1.517261,0.987944 2,2 l -18.397748,18.49775 -3.300003,0.900001 1.200001,-3.000003 0,0 z" + style="opacity:0.28235294;fill:none;stroke:#ffffff;stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + </g> + <g + id="g6451"> + <path + sodipodi:nodetypes="cczcc" + id="path2298" + d="m 24.549577,34.633026 1.666322,-4.180309 c 0,0 1.199535,0.24536 1.932177,0.975089 0.732642,0.729729 0.998391,1.943828 0.998391,1.943828 l -4.59689,1.261392 z" + style="fill:url(#linearGradient6488);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + transform="translate(6.39225,12.18459)" + sodipodi:nodetypes="ccc" + id="path5446" + d="m 23,21.5 -5.5,1.5 2,-5" + style="fill:none;stroke:#e9b96e;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + id="path2283" + d="m 23.95475,33.68459 -0.90625,2.25 2.34375,-0.65625 c 0.002,-0.03184 0,-0.06141 0,-0.09375 0,-0.802125 -0.645308,-1.459801 -1.4375,-1.5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccsc" /> + </g> + </g> + </g> + <path + style="color:#000000;fill:url(#radialGradient691);fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 42.821682,13.147263 c 1.834152,-0.500531 3.885052,1.651475 3.449911,3.449919 L 48.46699,14.40178 c 1.066511,-2.466563 -1.132252,-4.4097129 -3.494714,-3.494723 l -2.150594,2.240206 z" + id="path4113-1" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + id="path4095-8" + d="m 40.561976,15.25084 c 1.936448,-0.528484 4.101732,1.743706 3.642321,3.642586 l 2.317841,-2.31801 c 0.754457,-1.595776 -2.044633,-4.337495 -3.689625,-3.689891 l -2.270537,2.365315 z" + style="color:#000000;fill:url(#linearGradient649);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + </g> + <g + style="display:inline;enable-background:new" + id="layer1-6" + inkscape:label="Livello 1" + transform="translate(303.99998,115.08265)"> + <g + transform="translate(60.78337,49.43458)" + style="display:inline" + inkscape:label="base" + id="g2637-5" /> + <path + transform="matrix(0.598291,0,0,0.654088,0.88889,2.12579)" + d="M 52,33.1875 C 52,35.016943 45.452164,36.5 37.375,36.5 29.297836,36.5 22.75,35.016943 22.75,33.1875 c 0,-1.829443 6.547836,-3.3125 14.625,-3.3125 8.077164,0 14.625,1.483057 14.625,3.3125 z" + sodipodi:ry="3.3125" + sodipodi:rx="14.625" + sodipodi:cy="33.1875" + sodipodi:cx="37.375" + id="path4331-0" + style="opacity:0.07000002;fill:url(#radialGradient4339-5);fill-opacity:1;stroke:none" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cczcccczc" + id="rect3790-2" + d="m 4.011833,7.5000002 19.976305,0 c 0.652896,0 1.131193,0.5017836 1.178512,1.178512 l 1.291667,18.4725988 0.04168,2.333334 -25.0000129,0 0,-2.333334 1.333334,-18.4725988 c 0.04672,-0.6472344 0.5256193,-1.178512 1.1785149,-1.178512 l 0,0 z" + style="fill:url(#radialGradient3672);fill-opacity:1;stroke:url(#linearGradient3674);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <g + id="g3923"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3454" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,-7.2746,-10.1762)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3913" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,-4.2746,-10.1762)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3915" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,-1.2746,-10.1762)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3917" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,1.7254,-10.1762)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3919" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,4.7254,-10.1762)" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3921" + sodipodi:cx="12.257812" + sodipodi:cy="15.109375" + sodipodi:rx="1.7421875" + sodipodi:ry="1.578125" + d="m 13.999999,15.109375 c 0,0.871574 -0.780004,1.578125 -1.742187,1.578125 -0.962184,0 -1.742188,-0.706551 -1.742188,-1.578125 0,-0.871574 0.780004,-1.578125 1.742188,-1.578125 0.962183,0 1.742187,0.706551 1.742187,1.578125 z" + transform="matrix(1.143498,0,0,1.268986,7.7254,-10.1762)" /> + </g> + <g + style="opacity:0.4;stroke-width:1.63299012;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(0.7195516,0,0,0.3621771,-2.2836508,14.444002)" + id="g3425-9"> + <rect + style="fill:url(#radialGradient3430-7);fill-opacity:1;stroke:none" + id="rect3397-4" + width="3" + height="13" + x="3" + y="33" /> + <rect + style="fill:url(#radialGradient3432-4);fill-opacity:1;stroke:none" + id="rect3407-3" + width="3" + height="13" + x="-42" + y="-46" + transform="scale(-1,-1)" /> + <rect + style="fill:url(#linearGradient3434-9);fill-opacity:1;stroke:none" + id="rect3413-6" + width="33" + height="13" + x="6" + y="33" /> + </g> + <rect + y="27" + x="2" + height="2" + width="24" + id="rect2757-4" + style="fill:url(#linearGradient3656);fill-opacity:1;stroke:none" /> + <path + sodipodi:nodetypes="ccccccccccc" + id="path4680-6" + d="m 8.28125,11.5 c -0.4636608,0 -0.7747289,0.320452 -0.8125,0.84375 l -2,27.65625 0,0.0625 0,2.46875 35.581801,0 -0.03125,-2.46875 0,-0.03125 -1.9375,-27.6875 C 39.040942,11.75941 38.762246,11.5 38.269301,11.5 l -29.988051,0 0,0 z" + style="fill:none;stroke:url(#linearGradient4688-4);stroke-width:1.55065906;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0" + transform="matrix(0.644932,0,0,0.644843,-1.011311,1.074018)" /> + <path + sodipodi:nodetypes="cc" + id="path2760-9" + d="M 1.4999871,29.484445 26.5,29.5" + style="fill:none;stroke:#373a3a;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,-6,-2.513247)" + id="g3474"> + <rect + style="fill:url(#radialGradient3845);fill-opacity:1;stroke:url(#linearGradient3847);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3476" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3478" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,-3,-2.513247)" + id="g3849"> + <rect + style="fill:url(#radialGradient3855);fill-opacity:1;stroke:url(#linearGradient3857);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3851" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3853" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,0,-2.513247)" + id="g3859"> + <rect + style="fill:url(#radialGradient3865);fill-opacity:1;stroke:url(#linearGradient3867);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3861" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3863" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,3,-2.513247)" + id="g3869"> + <rect + style="fill:url(#radialGradient3875);fill-opacity:1;stroke:url(#linearGradient3877);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3871" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3873" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,6,-2.513247)" + id="g3879"> + <rect + style="fill:url(#radialGradient10778);fill-opacity:1;stroke:url(#linearGradient10780);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3881" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3883" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,6,-2.513247)" + id="g3889"> + <rect + style="fill:url(#radialGradient3885);fill-opacity:1;stroke:url(#linearGradient3887);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3891" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3893" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + style="stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none" + transform="matrix(1,0,0,0.834712,9,-2.513247)" + id="g3895"> + <rect + style="fill:url(#radialGradient3901);fill-opacity:1;stroke:url(#linearGradient3903);stroke-width:1.09453976;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:1.20000057" + id="rect3897" + width="1.9979982" + height="5.0440111" + x="11.500997" + y="9.5010004" + rx="0.99899912" + ry="1.5072321" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="path3899" + sodipodi:cx="12.125" + sodipodi:cy="11.257812" + sodipodi:rx="0.59375" + sodipodi:ry="0.6484375" + d="m 12.71875,11.257812 c 0,0.358122 -0.265831,0.648437 -0.59375,0.648437 -0.327919,0 -0.59375,-0.290315 -0.59375,-0.648437 0,-0.358123 0.265831,-0.648438 0.59375,-0.648438 0.327919,0 0.59375,0.290315 0.59375,0.648438 z" + transform="translate(-0.21875,-0.109374)" /> + </g> + <g + transform="translate(1,0)" + id="g3980"> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3484" + width="2.125" + height="1" + x="3.875" + y="14" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3488" + width="8.25" + height="1" + x="3.75" + y="16" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3490" + width="3.375" + height="1" + x="3.625" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3500" + width="6" + height="1" + x="4" + y="12" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3502" + width="4" + height="1" + x="17" + y="12" + rx="0.40000001" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3506" + width="2" + height="1" + x="11" + y="12" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3508" + width="2" + height="1" + x="14" + y="12" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3510" + width="4" + height="1" + x="7" + y="14" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3512" + width="2" + height="1" + x="12" + y="14" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3514" + width="4" + height="1" + x="15" + y="14" + rx="0.54237288" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3516" + width="4" + height="1" + x="13" + y="16" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3520" + width="3" + height="1" + x="18" + y="16" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3522" + width="2" + height="1" + x="8" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3524" + width="4" + height="1" + x="11" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3526" + width="2" + height="1" + x="16" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3546" + width="4.609375" + height="1" + x="3.390625" + y="21" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3964" + width="3" + height="1" + x="19" + y="18" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3966" + width="3" + height="1" + x="9" + y="21" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3968" + width="2" + height="1" + x="13" + y="21" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3972" + width="7" + height="1" + x="16" + y="21" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3974" + width="1.75" + height="1" + x="3.25" + y="23" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3976" + width="4" + height="1" + x="6" + y="23" + rx="0.5" + ry="0.5" /> + <rect + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none" + id="rect3978" + width="4" + height="1" + x="11" + y="23" + rx="0.5" + ry="0.5" /> + </g> + <g + id="g771"> + <path + sodipodi:nodetypes="cccccccccc" + style="opacity:0.4;fill:url(#linearGradient6424);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 27.386514,18.977235 -10.000005,2.981944 -0.08333,0.04323 -0.0625,0.05188 -1.833334,1.90212 4.958336,-0.56199 0.1875,-0.01729 0.125,-0.05188 6.708337,-1.788796 0,-2.559216 -4e-6,-2e-6 z" + id="path2334-5" /> + <path + sodipodi:nodetypes="ccccccc" + id="path2273-6" + d="m 17.261509,20.123069 9.114589,-9.208339 c 1.450033,0.239974 2.05648,1.154818 2.333334,2.333335 l -9.114589,9.208339 -2.826979,0.270797 0.493645,-2.604132 0,0 z" + style="fill:url(#linearGradient6432);fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.00000048;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cczcc" + id="path2298-0" + d="m 16.516694,22.952014 1.047591,-2.628096 c 0,0 0.75413,0.154254 1.214731,0.613024 0.4606,0.458769 0.627673,1.222055 0.627673,1.222055 l -2.889995,0.793017 0,0 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="cccccc" + id="path2313-6" + d="M 17.931487,20.648059 28.796386,9.8599434 c 0.567332,0.092866 0.789902,0.5141756 1.04122,1.0409006 l -10.812836,10.840161 -1.718015,0.468406 0.624732,-1.561352 0,0 z" + style="opacity:0.28235294;fill:none;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + <path + sodipodi:nodetypes="ccc" + id="path6416" + d="m 19.594843,22.456404 -3.666668,1 1.333334,-3.333335" + style="fill:none;stroke:#e9b96e;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + id="path2283-1" + d="m 15.907127,22.191239 -0.817772,2.03033 2.114928,-0.592179 c 0.0018,-0.02873 0,-0.05541 0,-0.0846 0,-0.723812 -0.582306,-1.317279 -1.297156,-1.353553 l 0,2e-6 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccsc" /> + <path + sodipodi:nodetypes="ccccc" + id="path4113-1-6" + d="m 26.741372,10.597989 c 1.233482,-0.336694 2.612732,1.11088 2.320097,2.320621 l 1.476419,-1.476761 C 31.255126,9.7826894 29.77644,8.4756072 28.187664,9.0910857 l -1.446292,1.5069033 z" + style="color:#000000;fill:url(#radialGradient736);fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:0.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="color:#000000;fill:url(#linearGradient649-9);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.99999988;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 25.221696,12.012979 c 1.30228,-0.355488 2.758451,1.172927 2.449493,2.45023 l 1.55877,-1.559236 c 0.507381,-1.07342 -1.375033,-2.917669 -2.481304,-2.482047 l -1.526959,1.591053 z" + id="path4095-8-4" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <path + transform="matrix(1.1574589,0,0,0.8674174,-49.231801,26.102295)" + style="fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter9723);enable-background:new" + d="M 304.97963,183.69431 L 320.02037,183.69431 L 321,188 L 304,188 L 304.97963,183.69431 z" + id="rect9705" + sodipodi:nodetypes="ccccc" /> + <rect + style="fill:url(#linearGradient9318);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9734);stroke-width:1;marker:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect10371" + width="18" + height="19" + x="303.5" + y="169.5" + rx="0.84375" + ry="0.79166669" /> + <rect + style="fill:url(#linearGradient9308);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect8528" + width="17" + height="15" + x="304" + y="171" + rx="0" + ry="0" /> + <g + style="display:inline;enable-background:new" + id="g3651" + transform="translate(-50,0)"> + <rect + ry="0" + rx="0" + y="176" + x="356" + height="1" + width="4" + id="rect9632" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="176" + x="361" + height="1" + width="1" + id="rect9634" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="176" + x="363" + height="1" + width="1" + id="rect9636" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="176" + x="365" + height="1" + width="4" + id="rect9638" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="178" + x="356" + height="1" + width="1" + id="rect9640" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="178" + x="358" + height="1" + width="3" + id="rect9642" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="178" + x="362" + height="1" + width="2" + id="rect9644" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="180" + x="356" + height="1" + width="6" + id="rect9646" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="180" + x="363" + height="1" + width="2" + id="rect9650" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="180" + x="366" + height="1" + width="1" + id="rect9652" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="182" + x="364" + height="1" + width="1" + id="rect9654" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="182" + x="356" + height="1" + width="3" + id="rect9656" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="182" + x="360" + height="1" + width="3" + id="rect9658" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="184" + x="356" + height="1" + width="4" + id="rect9660" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="178" + x="365" + height="1" + width="2" + id="rect3587" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="180" + x="368" + height="1" + width="1" + id="rect3589" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="174" + x="356" + height="1" + width="1" + id="rect3603" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="174" + x="358" + height="1" + width="4" + id="rect3605" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="174" + x="363" + height="1" + width="3" + id="rect3607" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="174" + x="367" + height="1" + width="2" + id="rect3609" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + </g> + <rect + style="fill:#2e3436;fill-opacity:1;stroke:none" + id="rect9300" + width="19" + height="1" + x="303" + y="188" + rx="0" + ry="0" /> + <rect + style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1;marker:none;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect9310" + width="15.999999" + height="17" + x="304.5" + y="170.5" + rx="0" + ry="0" /> + <path + style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none" + d="M 306.5 170 C 305.672 170 305.00001 170.67199 305 171.5 C 305 172.328 305.67201 172.99999 306.5 173 C 306.88234 173 307.23499 172.86077 307.5 172.625 C 307.51039 172.63425 307.52059 172.6473 307.53125 172.65625 C 307.64468 172.75138 307.76798 172.81648 307.90625 172.875 C 307.96861 172.90206 308.02733 172.91893 308.09375 172.9375 C 308.12549 172.94624 308.15496 172.96209 308.1875 172.96875 C 308.19812 172.97094 308.20805 172.96678 308.21875 172.96875 C 308.30731 172.98506 308.40675 173 308.5 173 C 308.88234 173 309.23499 172.86077 309.5 172.625 C 309.6325 172.74289 309.79967 172.84197 309.96875 172.90625 C 310.13783 172.97053 310.30883 173 310.5 173 C 310.88234 173 311.23499 172.86077 311.5 172.625 C 311.6325 172.74289 311.79967 172.84197 311.96875 172.90625 C 312.13783 172.97053 312.30883 173 312.5 173 C 312.88234 173 313.23499 172.86077 313.5 172.625 C 313.6325 172.74289 313.79967 172.84197 313.96875 172.90625 C 314.13783 172.97053 314.30883 173 314.5 173 C 314.88234 173 315.23499 172.86077 315.5 172.625 C 315.6325 172.74289 315.79967 172.84197 315.96875 172.90625 C 316.13783 172.97053 316.30883 173 316.5 173 C 316.6035 173 316.71488 172.98874 316.8125 172.96875 C 316.84703 172.96163 316.87261 172.94691 316.90625 172.9375 C 316.9602 172.92265 317.01116 172.89555 317.0625 172.875 C 317.07067 172.87162 317.08565 172.87851 317.09375 172.875 C 317.23202 172.81648 317.35532 172.75138 317.46875 172.65625 C 317.48001 172.64681 317.48903 172.63476 317.5 172.625 C 317.76501 172.86077 318.11766 173 318.5 173 C 319.328 173 320 172.32799 320 171.5 C 320 170.672 319.328 169.99999 318.5 170 C 318.11766 170 317.76501 170.13923 317.5 170.375 C 317.48903 170.36524 317.48001 170.35319 317.46875 170.34375 C 317.35532 170.24862 317.23202 170.18352 317.09375 170.125 C 317.03394 170.09969 316.96972 170.07997 316.90625 170.0625 C 316.77428 170.02559 316.64338 170 316.5 170 C 316.40442 170 316.30972 170.01451 316.21875 170.03125 C 316.12778 170.04799 316.05329 170.06161 315.96875 170.09375 C 315.79967 170.15803 315.6325 170.25711 315.5 170.375 C 315.23499 170.13923 314.88234 170 314.5 170 C 314.40442 170 314.30972 170.01451 314.21875 170.03125 C 314.12778 170.04799 314.05329 170.06161 313.96875 170.09375 C 313.79967 170.15803 313.6325 170.25711 313.5 170.375 C 313.23499 170.13923 312.88234 170 312.5 170 C 312.40442 170 312.30972 170.01451 312.21875 170.03125 C 312.12778 170.04799 312.05329 170.06161 311.96875 170.09375 C 311.79967 170.15803 311.6325 170.25711 311.5 170.375 C 311.23499 170.13923 310.88234 170 310.5 170 C 310.40442 170 310.30972 170.01451 310.21875 170.03125 C 310.12778 170.04799 310.05329 170.06161 309.96875 170.09375 C 309.79967 170.15803 309.6325 170.25711 309.5 170.375 C 309.23499 170.13923 308.88234 170 308.5 170 C 308.362 170 308.22069 170.02756 308.09375 170.0625 C 308.02733 170.08107 307.96861 170.09794 307.90625 170.125 C 307.76798 170.18352 307.64468 170.24862 307.53125 170.34375 C 307.52059 170.3527 307.51039 170.36575 307.5 170.375 C 307.23499 170.13923 306.88234 170 306.5 170 z " + id="path9666" /> + <g + id="g9344" + transform="translate(-2,0)"> + <rect + ry="1" + rx="1" + y="167.5" + x="307.5" + height="4" + width="2" + id="rect9320" + style="fill:url(#linearGradient3599);fill-opacity:1;stroke:url(#linearGradient3601);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <rect + ry="1.34375" + rx="1.5925926" + y="167.6875" + x="307.5" + height="1.34375" + width="1.34375" + id="rect9332" + style="fill:#ffffff;fill-opacity:1;stroke:none" /> + </g> + <use + x="0" + y="0" + xlink:href="#g9344" + id="use9348" + width="400" + height="300" + transform="translate(2,0)" /> + <use + style="display:inline;enable-background:new" + x="0" + y="0" + xlink:href="#g9344" + id="use9354" + width="400" + height="300" + transform="translate(4,0)" /> + <use + style="display:inline;enable-background:new" + x="0" + y="0" + xlink:href="#g9344" + id="use9356" + width="400" + height="300" + transform="translate(6,0)" /> + <use + style="display:inline;enable-background:new" + x="0" + y="0" + xlink:href="#g9344" + id="use9358" + width="400" + height="300" + transform="translate(8,0)" /> + <use + style="display:inline;enable-background:new" + x="0" + y="0" + xlink:href="#g9344" + id="use9360" + width="400" + height="300" + transform="translate(10,0)" /> + <use + style="display:inline;enable-background:new" + x="0" + y="0" + xlink:href="#g9344" + id="use3585" + width="400" + height="300" + transform="translate(12,0)" /> + <g + id="g9840"> + <rect + ry="0.79166669" + rx="0.79166669" + y="210.5" + x="303.5" + height="14" + width="12" + id="rect9736" + style="fill:#babdb6;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient9796);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + ry="0" + rx="0" + y="211" + x="304" + height="12" + width="11" + id="rect9738" + style="fill:url(#linearGradient9860);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + ry="0" + rx="0" + y="224" + x="303" + height="1" + width="13" + id="rect9740" + style="fill:#2e3436;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="211.5" + x="304.5" + height="12" + width="10" + id="rect9742" + style="opacity:0.5;fill:none;stroke:url(#linearGradient9858);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="opacity:0.1;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new" + d="m 306.5,211 c -0.828,0 -1.49999,0.672 -1.5,1.5 0,0.828 0.67201,1.5 1.5,1.5 0.38234,0 0.73499,-0.13923 1,-0.375 0.26501,0.23577 0.61766,0.375 1,0.375 0.38234,0 0.73499,-0.13923 1,-0.375 0.26501,0.23577 0.61766,0.375 1,0.375 0.38234,0 0.73499,-0.13923 1,-0.375 0.26501,0.23577 0.61766,0.375 1,0.375 0.828,0 1.50001,-0.672 1.5,-1.5 0,-0.828 -0.67199,-1.5 -1.5,-1.5 -0.38234,0 -0.73499,0.13923 -1,0.375 -0.26501,-0.23577 -0.61766,-0.375 -1,-0.375 -0.38234,0 -0.73499,0.13923 -1,0.375 -0.26501,-0.23577 -0.61766,-0.375 -1,-0.375 -0.38234,0 -0.73499,0.13923 -1,0.375 -0.26501,-0.23577 -0.61766,-0.375 -1,-0.375 z" + id="path9862" /> + <g + transform="translate(-2,42)" + id="g9746" + style="display:inline;enable-background:new"> + <rect + style="fill:url(#linearGradient9800);fill-opacity:1;stroke:url(#linearGradient9802);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="rect9748" + width="2" + height="3" + x="307.5" + y="167.5" + rx="1" + ry="1" /> + <rect + style="fill:#ffffff;fill-opacity:1;stroke:none" + id="rect9750" + width="1.34375" + height="1.34375" + x="307.5" + y="167.6875" + rx="1.5925926" + ry="1.34375" /> + </g> + <use + height="300" + width="400" + transform="translate(2,0)" + id="use9834" + xlink:href="#g9746" + y="0" + x="0" /> + <use + height="300" + width="400" + transform="translate(4,0)" + id="use9836" + xlink:href="#g9746" + y="0" + x="0" + style="display:inline;enable-background:new" /> + <use + height="300" + width="400" + transform="translate(6,0)" + id="use9838" + xlink:href="#g9746" + y="0" + x="0" + style="display:inline;enable-background:new" /> + </g> + <g + id="g9871"> + <rect + ry="0" + rx="0" + y="215" + x="306" + height="1" + width="3" + id="rect9762" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="215" + x="310" + height="1" + width="1" + id="rect9764" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="215" + x="312" + height="1" + width="1" + id="rect9766" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="217" + x="306" + height="1" + width="1" + id="rect9770" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="217" + x="308" + height="1" + width="3" + id="rect9772" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="219" + x="306" + height="1" + width="5" + id="rect9776" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="219" + x="312" + height="1" + width="1" + id="rect9780" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + <rect + ry="0" + rx="0" + y="221" + x="306" + height="1" + width="3" + id="rect9784" + style="opacity:0.47999998;fill:#888a85;fill-opacity:1;stroke:none;display:inline;enable-background:new" /> + </g> + <g + id="g771-4-4" + style="display:inline;enable-background:new" + transform="matrix(0.9496087,0,0,0.9496087,289.39354,201.86448)"> + <path + sodipodi:nodetypes="cccccccccc" + style="opacity:0.4;fill:url(#linearGradient6424-5-0);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="M 29.527324,16.557189 L 19.527319,19.539133 L 19.443989,19.582363 L 19.381489,19.634243 L 17.548155,21.536363 L 22.506491,20.974373 L 22.693991,20.957083 L 22.818991,20.905203 L 29.527328,19.116407 L 29.527328,16.557191 L 29.527324,16.557189 L 29.527324,16.557189 z" + id="path2334-5-8-2" /> + <path + sodipodi:nodetypes="ccccccc" + id="path2273-6-2-0" + d="M 19.960792,17.19109 L 26.376098,10.91473 C 27.826131,11.154704 28.432578,12.069548 28.709432,13.248065 L 22.294126,19.524425 L 19.467147,19.795222 L 19.960792,17.19109 L 19.960792,17.19109 L 19.960792,17.19109 z" + style="fill:url(#linearGradient6432-5-3);fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.0530659;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczcc" + id="path2298-0-7-3" + d="M 19.355595,19.926956 L 20.403186,17.29886 C 20.403186,17.29886 21.157316,17.453114 21.617917,17.911884 C 22.078517,18.370653 22.24559,19.133939 22.24559,19.133939 L 19.355595,19.926956 L 19.355595,19.926956 L 19.355595,19.926956 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="ccccccc" + id="path2313-6-7-7" + d="M 20.770388,17.66954 L 28.796386,9.8599434 C 29.363718,9.9528094 29.586288,10.374119 29.837606,10.900844 L 21.863671,18.762486 L 20.145656,19.230892 L 20.770388,17.66954 L 20.770388,17.66954 L 20.770388,17.66954 z" + style="opacity:0.28235294;fill:none;stroke:#ffffff;stroke-width:1.05306554;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" /> + <path + sodipodi:nodetypes="ccc" + id="path6416-5-1" + d="M 22.107968,19.710582 L 18.4413,20.710582 L 19.774634,17.377247" + style="fill:none;stroke:#e9b96e;stroke-width:1.05306542;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path2283-1-5-3" + d="M 18.420252,19.445417 L 17.60248,21.475747 L 19.717408,20.883568 C 19.719208,20.854838 19.717408,20.828158 19.717408,20.798968 C 19.717408,20.075156 19.135102,19.481689 18.420252,19.445415 L 18.420252,19.445417 L 18.420252,19.445417 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccsc" /> + <path + sodipodi:nodetypes="ccccc" + id="path4113-1-6-3-3" + d="M 26.741372,10.597989 C 27.974854,10.261295 29.354104,11.708869 29.061469,12.91861 L 30.537888,11.441849 C 31.255126,9.7826894 29.77644,8.4756072 28.187664,9.0910857 L 26.741372,10.597989 L 26.741372,10.597989 z" + style="fill:url(#radialGradient736-9-2);fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:1.0530653;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="fill:url(#linearGradient924);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1.0530653;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 25.221696,12.012979 C 26.523976,11.657491 27.980147,13.185906 27.671189,14.463209 L 29.229959,12.903973 C 29.73734,11.830553 27.854926,9.986304 26.748655,10.421926 L 25.221696,12.012979 L 25.221696,12.012979 z" + id="path4095-8-4-6-2" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="g771-4" + style="enable-background:new;display:inline" + transform="matrix(0.9496087,0,0,0.9496087,295.20061,161.99899)"> + <path + sodipodi:nodetypes="cccccccccccc" + style="opacity:0.4;fill:url(#linearGradient6424-5);fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="M 28.439579,18.977235 L 17.386509,21.959179 L 17.303179,22.002409 L 17.240679,22.054289 L 15.407345,23.956409 L 20.365681,23.394419 L 20.553181,23.377129 L 20.678181,23.325249 L 28.439583,21.536453 L 28.439583,18.977237 L 28.439579,18.977235 L 28.439579,18.977235 z" + id="path2334-5-8" /> + <path + sodipodi:nodetypes="ccccccc" + id="path2273-6-2" + d="M 17.261509,20.123069 L 26.376098,10.91473 C 27.826131,11.154704 28.432578,12.069548 28.709432,13.248065 L 19.594843,22.456404 L 16.767864,22.727201 L 17.261509,20.123069 L 17.261509,20.123069 z" + style="fill:url(#linearGradient6432-5);fill-opacity:1;fill-rule:evenodd;stroke:#ce5c00;stroke-width:1.0530659;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cczcc" + id="path2298-0-7" + d="M 16.516694,22.952014 L 17.564285,20.323918 C 17.564285,20.323918 18.318415,20.478172 18.779016,20.936942 C 19.239616,21.395711 19.406689,22.158997 19.406689,22.158997 L 16.516694,22.952014 L 16.516694,22.952014 L 16.516694,22.952014 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="cccccc" + id="path2313-6-7" + d="M 17.931487,20.648059 L 28.796386,9.8599434 C 29.363718,9.9528094 29.586288,10.374119 29.837606,10.900844 L 19.02477,21.741005 L 17.306755,22.209411 L 17.931487,20.648059 L 17.931487,20.648059 L 17.931487,20.648059 z" + style="opacity:0.28235294;fill:none;stroke:#ffffff;stroke-width:1.05306554;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" /> + <path + sodipodi:nodetypes="ccc" + id="path6416-5" + d="M 19.594843,22.456404 L 15.928175,23.456404 L 17.261509,20.123069" + style="fill:none;stroke:#e9b96e;stroke-width:1.05306542;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + id="path2283-1-5" + d="M 15.907127,22.191239 L 15.089355,24.221569 L 17.204283,23.62939 C 17.206083,23.60066 17.204283,23.57398 17.204283,23.54479 C 17.204283,22.820978 16.621977,22.227511 15.907127,22.191237 L 15.907127,22.191239 L 15.907127,22.191239 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccsc" /> + <path + sodipodi:nodetypes="ccccc" + id="path4113-1-6-3" + d="M 26.741372,10.597989 C 27.974854,10.261295 29.354104,11.708869 29.061469,12.91861 L 30.537888,11.441849 C 31.255126,9.7826894 29.77644,8.4756072 28.187664,9.0910857 L 26.741372,10.597989 L 26.741372,10.597989 z" + style="fill:url(#radialGradient736-9);fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:1.0530653;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="fill:url(#linearGradient820);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:1.0530653;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 25.221696,12.012979 C 26.523976,11.657491 27.980147,13.185906 27.671189,14.463209 L 29.229959,12.903973 C 29.73734,11.830553 27.854926,9.986304 26.748655,10.421926 L 25.221696,12.012979 L 25.221696,12.012979 z" + id="path4095-8-4-6" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <g + inkscape:groupmode="layer" + id="layer5" + inkscape:label="hires" + style="display:inline"> + <g + id="g8198" + transform="matrix(5.0928038,0,0,2.2388776,20.301687,129.4805)" + style="opacity:0.4" /> + <g + id="g8230" + inkscape:label="base" + style="display:inline" + transform="matrix(4.8890868,0,0,4.8890868,322.06038,251.81989)" /> + <g + inkscape:export-ydpi="189.44185" + inkscape:export-xdpi="189.44185" + id="g4329" + transform="matrix(1.0765824,0,0,1.0765824,24.986054,-10.43768)"> + <g + id="g776" + style="display:inline;enable-background:new" + transform="matrix(1.0018834,0,0,1.0018834,0.16174,-3.5109455)"> + <path + style="fill:url(#radialGradient2488);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m -325.81168,128.31105 38.41799,-8.724 c 14.12948,0.39698 26.42073,18.99459 -0.1289,19.82289 l -38.28909,-11.09889 z" + id="path30001" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#d9700f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m -149.1649,132.4522 -5.02499,6.3317 -133.22561,0.62273 c 3.75857,-1.84018 5.09175,-4.53478 2.08455,-6.93605 0.375,0.125 136.16605,-0.0184 136.16605,-0.0184 z" + id="path29995" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + style="fill:#fcaf3e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m -153.85432,119.79622 5.11359,5.426 -140.79032,-0.20776 c 1.56095,-2.36084 7.94778,-3.64794 2.07833,-5.2815 l 133.5984,0.0633 z" + id="path29999" /> + <path + id="path29997" + d="m -149.19845,132.51176 0.20772,-7.28954 -140.13794,-0.28463 c 4.03624,1.24414 8.29922,4.92832 4.11071,7.64607 l 135.81951,-0.0719 z" + style="fill:#f09a2e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:transform-center-y="-12.573622" + inkscape:transform-center-x="8.012375" + sodipodi:nodetypes="cccc" + id="path30003" + d="m -325.21227,128.12896 15.3251,-3.27971 c 2.40488,2.77983 2.55228,6.0095 0.48282,8.01428 l -15.80792,-4.73457 z" + style="fill:url(#linearGradient2490);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccccc" + clip-path="url(#clipPath2231-9)" + transform="matrix(-0.37166378,-0.75995689,-0.75004988,0.37657287,28.594818,343.6198)" + id="path130938" + d="m 415,266.5 -10.08286,-44.65681 -70.96081,-143.848793 -9.08701,-1.41203 -6.83317,2.827418 -3.97537,9.230966 L 383.61877,233.07372 415,266.5 z" + style="fill:none;stroke:url(#linearGradient2492);stroke-width:1.21372306;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter130946-7-2-7);enable-background:accumulate" /> + <rect + style="fill:url(#pattern2420);stroke:none" + width="0" + height="0" + x="97.606155" + y="310.30496" + id="rect2975" + transform="matrix(-0.44399845,-0.89602755,-0.89602755,0.44399845,0,0)" /> + <path + style="color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -289.33175,124.91769 c 4.96579,1.2812 8.54488,5.47003 4.15425,7.68978 4.05109,-3.36757 -2.15688,-6.85527 -4.15425,-7.68978 z" + id="path3013" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:nodetypes="ccc" + id="path3017" + d="m -287.17551,139.29269 c 2.21579,-0.81171 5.48238,-4.20004 1.998,-6.68522 1.45734,2.4826 0.0931,5.3919 -1.998,6.68522 z" + style="color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="opacity:0.21844662;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -288.25376,125.49248 3.75,2.75 -40.75,0.375 37,-3.125" + id="path3019" + inkscape:path-effect="#path-effect2422" + inkscape:original-d="m -288.25376,125.49248 3.75,2.75 -40.75,0.375 37,-3.125 z" /> + <path + inkscape:original-d="m -289.50376,124.49248 1.875,1.125 138.5,0 0,-0.5 -0.75,-0.75 -139.625,0.125 z" + inkscape:path-effect="#path-effect2424" + id="path4091" + d="m -289.50376,124.49248 1.875,1.125 138.5,0 0,-0.5 -0.75,-0.75 -139.625,0.125" + style="opacity:0.46601939;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + style="color:#000000;fill:url(#radialGradient2494);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -154.70127,120.29195 c 6.13563,3.50481 5.86993,14.5502 0,18.133 l 11.53918,0 c 9.28504,-3.67937 8.61326,-14.56447 0,-18.36849 l -11.53918,0.23549 z" + id="path4113" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccccc" + transform="matrix(1.0569555,1.5316091e-8,-1.5316091e-8,1.0569555,8.2322492,-1.7670654)" + id="path4143" + d="m -152.25,119.375 9.875,0 1.88756,2.33579 -2.88756,-0.58579 -8.375,0.125 -0.5,-1.875 z" + style="opacity:0.35436892;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4161-0);enable-background:new" /> + <path + id="path4125" + d="m -142.50376,124.61748 c -1.125,2.625 -3.625,2.125 -3.625,2.125 0,0 -4.375,2.25 -2.25,4.875 2.125,2.625 4.75,5.125 4.125,5 -0.625,-0.125 2.625,-2.75 4,-3.75 1.375,-1 -1.25,-1.25 -1.25,-3.5 0,-2.25 -1,-4.875 -1,-4.75 z" + style="opacity:0.35436892;color:#000000;fill:#ab5f5f;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4139-3);enable-background:new" /> + <path + sodipodi:nodetypes="ccccc" + style="opacity:0.25242716;color:#000000;fill:url(#linearGradient2496);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -150.1903,138.35695 6.00842,0.19818 c 2.15972,0.0712 5.82278,-3.21121 6.24786,-4.2041 l -10.1755,-0.11794 -2.08078,4.12386 z" + id="path5785" /> + <path + sodipodi:nodetypes="ccccc" + id="path5691" + d="m -150.05818,120.19052 6.80415,-0.19817 c 1.33209,0.77113 2.72893,1.2833 3.89751,2.70844 l -9.77683,0 -0.92483,-2.51027 z" + style="opacity:0.60194176;color:#000000;fill:url(#linearGradient2498);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + sodipodi:nodetypes="ccccc" + id="path4095" + d="m -162.25376,119.74248 c 6.51359,3.72071 6.23152,15.4465 0,19.25 l 12.25,0 c 6.21029,-2.22292 6.05816,-16.86423 0,-19.5 l -12.25,0.25 z" + style="color:#000000;fill:url(#linearGradient2500);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + clip-path="url(#clipPath4177-6)" + style="opacity:0.50485439;color:#000000;fill:none;stroke:url(#linearGradient2502);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4171-9);enable-background:new" + d="m -164.25,115.75 c 6.51359,3.72071 6.23152,15.4465 0,19.25 l 12.25,0 c 6.21029,-2.22292 6.05816,-16.86423 0,-19.5 l -12.25,0.25 z" + id="path4165" + transform="translate(1.9962391,3.9924767)" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:0.60194176;color:#000000;fill:url(#linearGradient2504);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -162.19507,119.61718 12.43919,5e-5 c 1.26031,0.72958 1.64411,1.33919 2.74973,2.68753 l -12.56343,-0.25007 c -0.7894,-0.66422 -1.671,-1.6082 -2.62549,-2.43751 z" + id="path6956" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccccc" + style="opacity:0.26020406;fill:url(#radialGradient2506);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m -151.5063,135.38522 -2.68193,2.9381 -133.01415,0.88339 1.87228,-1.17732 0.83467,-1.56298 132.98913,-1.08119 z" + id="path131406" /> + <path + d="m -188.61261,127.79627 0,3.27877 0.44458,0 0,-2.69526 0.009,0 1.82463,2.69526 0.56499,0 0,-3.27877 -0.44458,0 0,2.69526 -0.009,0 -1.8061,-2.69526 -0.58351,0" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4262" /> + <path + d="m -184.0768,131.13061 c 0.66687,0 1.16702,-0.52331 1.16702,-1.15313 0,-0.62519 -0.50478,-1.15312 -1.16702,-1.15312 -0.66687,0 -1.16702,0.52793 -1.16702,1.15312 0,0.6715 0.5372,1.15313 1.16702,1.15313 m 0,-1.91725 c 0.43068,0 0.72244,0.31028 0.72244,0.76412 0,0.45847 -0.29176,0.76412 -0.72244,0.76412 -0.43532,0 -0.72244,-0.30565 -0.72244,-0.76412 0,-0.45384 0.28712,-0.76412 0.72244,-0.76412" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4264" /> + <path + d="m -180.04382,127.71291 c -0.60204,0 -1.00494,0.30565 -1.08366,0.85211 l 0.48162,0.0417 c 0.0509,-0.30102 0.25934,-0.50479 0.59741,-0.50479 0.29175,0 0.56498,0.18988 0.56498,0.52331 0,0.0926 -0.0139,0.34733 -0.36122,0.6715 l -1.31521,1.30595 0,0.47237 2.1488,0 0,-0.38901 -1.64865,0 1.07903,-1.04198 c 0.23618,-0.22692 0.56962,-0.56499 0.56962,-1.02346 0,-0.6113 -0.48626,-0.90768 -1.03272,-0.90768" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4266" /> + <path + d="m -175.93935,128.47703 0,-0.68076 -0.33344,0 0,0.68076 -0.65297,-0.22229 -0.0973,0.30102 0.6576,0.22229 -0.41216,0.54183 0.25471,0.18987 0.41216,-0.55573 0.42142,0.56499 0.25471,-0.18987 -0.40753,-0.55109 0.64371,-0.2084 -0.0973,-0.31028 -0.64371,0.21766" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4268" /> + <path + d="m -173.06428,127.79627 0,3.27877 0.44458,0 0,-1.50046 1.69959,0 0,1.50046 0.44458,0 0,-3.27877 -0.44458,0 0,1.36152 -1.69959,0 0,-1.36152 -0.44458,0" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4270" /> + <path + d="m -167.94771,130.13031 c 0,0.44458 -0.40753,0.55572 -0.70855,0.55572 l -0.65297,0 0,-1.13923 0.65761,0 c 0.32417,0 0.70391,0.1204 0.70391,0.58351 m -0.14356,-1.46341 c 0,0.35659 -0.27323,0.49089 -0.6113,0.49089 l -0.60666,0 0,-0.97252 0.69928,0 c 0.43532,0 0.51868,0.31491 0.51868,0.48163 m 0.61593,1.49582 c 0,-0.47699 -0.35659,-0.7919 -0.70855,-0.81506 l 0,-0.009 c 0.26397,-0.088 0.56499,-0.28712 0.56499,-0.72244 0,-0.57425 -0.46311,-0.81969 -0.99568,-0.81969 l -1.13923,0 0,3.27877 1.12534,0 c 0.64371,0 1.15313,-0.32881 1.15313,-0.91232" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#fdd498;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4272" /> + <path + d="m -188.61261,127.54627 0,3.27877 0.44458,0 0,-2.69526 0.009,0 1.82463,2.69526 0.56499,0 0,-3.27877 -0.44458,0 0,2.69526 -0.009,0 -1.8061,-2.69526 -0.58351,0" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4249" /> + <path + d="m -184.0768,130.88061 c 0.66687,0 1.16702,-0.52331 1.16702,-1.15313 0,-0.62519 -0.50478,-1.15312 -1.16702,-1.15312 -0.66687,0 -1.16702,0.52793 -1.16702,1.15312 0,0.6715 0.5372,1.15313 1.16702,1.15313 m 0,-1.91725 c 0.43068,0 0.72244,0.31028 0.72244,0.76412 0,0.45847 -0.29176,0.76412 -0.72244,0.76412 -0.43532,0 -0.72244,-0.30565 -0.72244,-0.76412 0,-0.45384 0.28712,-0.76412 0.72244,-0.76412" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4251" /> + <path + d="m -180.04382,127.46291 c -0.60204,0 -1.00494,0.30565 -1.08366,0.85211 l 0.48162,0.0417 c 0.0509,-0.30102 0.25934,-0.50479 0.59741,-0.50479 0.29175,0 0.56498,0.18988 0.56498,0.52331 0,0.0926 -0.0139,0.34733 -0.36122,0.6715 l -1.31521,1.30595 0,0.47237 2.1488,0 0,-0.38901 -1.64865,0 1.07903,-1.04198 c 0.23618,-0.22692 0.56962,-0.56499 0.56962,-1.02346 0,-0.6113 -0.48626,-0.90768 -1.03272,-0.90768" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4253" /> + <path + d="m -175.93935,128.22703 0,-0.68076 -0.33344,0 0,0.68076 -0.65297,-0.22229 -0.0973,0.30102 0.6576,0.22229 -0.41216,0.54183 0.25471,0.18987 0.41216,-0.55573 0.42142,0.56499 0.25471,-0.18987 -0.40753,-0.55109 0.64371,-0.2084 -0.0973,-0.31028 -0.64371,0.21766" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4255" /> + <path + d="m -173.06428,127.54627 0,3.27877 0.44458,0 0,-1.50046 1.69959,0 0,1.50046 0.44458,0 0,-3.27877 -0.44458,0 0,1.36152 -1.69959,0 0,-1.36152 -0.44458,0" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4257" /> + <path + d="m -167.94771,129.88031 c 0,0.44458 -0.40753,0.55572 -0.70855,0.55572 l -0.65297,0 0,-1.13923 0.65761,0 c 0.32417,0 0.70391,0.1204 0.70391,0.58351 m -0.14356,-1.46341 c 0,0.35659 -0.27323,0.49089 -0.6113,0.49089 l -0.60666,0 0,-0.97252 0.69928,0 c 0.43532,0 0.51868,0.31491 0.51868,0.48163 m 0.61593,1.49582 c 0,-0.47699 -0.35659,-0.7919 -0.70855,-0.81506 l 0,-0.009 c 0.26397,-0.088 0.56499,-0.28712 0.56499,-0.72244 0,-0.57425 -0.46311,-0.81969 -0.99568,-0.81969 l -1.13923,0 0,3.27877 1.12534,0 c 0.64371,0 1.15313,-0.32881 1.15313,-0.91232" + style="font-size:4.63103342px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path4259" /> + <path + style="opacity:0.23786406;color:#000000;fill:url(#radialGradient2508);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter5558-4-0);enable-background:new" + d="m -143.625,117.25 c 5.91157,4.375 4.86784,12.5 -0.5,16.125 6.43828,-2.47285 8.53691,-11.85041 0.5,-16.125 z" + id="path5018" + sodipodi:nodetypes="ccc" + transform="matrix(1.1357725,0,0,1.0569556,20.595896,-3.142984)" /> + <path + sodipodi:type="arc" + style="opacity:0.45145629;color:#000000;fill:url(#radialGradient2510);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path5663" + sodipodi:cx="-140.375" + sodipodi:cy="122.875" + sodipodi:rx="1.5" + sodipodi:ry="1.5" + d="m -138.875,122.875 c 0,0.82843 -0.67157,1.5 -1.5,1.5 -0.82843,0 -1.5,-0.67157 -1.5,-1.5 0,-0.82843 0.67157,-1.5 1.5,-1.5 0.82843,0 1.5,0.67157 1.5,1.5 z" + transform="matrix(1.9723461,0,0,1.9723461,137.3063,-117.18809)" /> + <path + sodipodi:type="inkscape:offset" + inkscape:radius="0" + inkscape:original="M -247.75 127.59375 C -248.76864 127.59375 -249.4375 128.37187 -249.4375 129.3125 C -249.4375 130.25772 -248.76864 131.03125 -247.75 131.03125 C -246.73595 131.03125 -246.0625 130.25772 -246.0625 129.3125 C -246.0625 128.37187 -246.73595 127.59375 -247.75 127.59375 z M -253.28125 127.65625 C -254.08423 127.65625 -254.375 128.20001 -254.375 128.5625 C -254.375 128.75522 -254.36336 129.06931 -253.96875 129.3125 C -253.49155 129.61075 -252.78125 129.56695 -252.78125 130.0625 C -252.78125 130.4204 -253.11718 130.59375 -253.40625 130.59375 C -253.6632 130.59375 -253.93315 130.49319 -254.09375 130.25 L -254.46875 130.5625 C -254.24392 130.8791 -253.84587 131.03125 -253.4375 131.03125 C -252.78594 131.03125 -252.3125 130.60568 -252.3125 130 C -252.3125 129.78893 -252.3425 129.49232 -252.71875 129.28125 C -253.18677 129.01971 -253.90625 129.1177 -253.90625 128.5625 C -253.90625 128.37896 -253.79057 128.0625 -253.28125 128.0625 C -252.93712 128.0625 -252.75174 128.25198 -252.6875 128.34375 L -252.34375 128.03125 C -252.49517 127.8523 -252.73064 127.65625 -253.28125 127.65625 z M -230.78125 127.65625 C -231.58423 127.65625 -231.875 128.20001 -231.875 128.5625 C -231.875 128.75522 -231.86336 129.06931 -231.46875 129.3125 C -230.99155 129.61075 -230.28125 129.56695 -230.28125 130.0625 C -230.28125 130.4204 -230.61718 130.59375 -230.90625 130.59375 C -231.1632 130.59375 -231.43315 130.49319 -231.59375 130.25 L -231.96875 130.5625 C -231.74392 130.8791 -231.34587 131.03125 -230.9375 131.03125 C -230.28594 131.03125 -229.8125 130.60568 -229.8125 130 C -229.8125 129.78893 -229.8425 129.49232 -230.21875 129.28125 C -230.68677 129.01971 -231.40625 129.1177 -231.40625 128.5625 C -231.40625 128.37896 -231.29057 128.0625 -230.78125 128.0625 C -230.43712 128.0625 -230.25174 128.25198 -230.1875 128.34375 L -229.84375 128.03125 C -229.99517 127.8523 -230.23064 127.65625 -230.78125 127.65625 z M -210.4375 127.65625 C -211.45614 127.65625 -212.15625 128.37187 -212.15625 129.3125 C -212.15625 130.23478 -211.50748 131.03125 -210.40625 131.03125 C -210.00247 131.03125 -209.49951 130.91147 -209.1875 130.71875 L -209.1875 129.125 L -210.34375 129.125 L -210.34375 129.53125 L -209.625 129.53125 L -209.625 130.4375 C -209.90031 130.59351 -210.25024 130.59375 -210.40625 130.59375 C -211.14958 130.59375 -211.6875 130.0283 -211.6875 129.3125 C -211.6875 128.5967 -211.17624 128.0625 -210.4375 128.0625 C -209.90065 128.0625 -209.65886 128.31907 -209.5625 128.40625 L -209.25 128.0625 C -209.57119 127.73672 -209.96948 127.65625 -210.4375 127.65625 z M -252.15625 127.6875 L -252.15625 128.09375 L -251.09375 128.09375 L -251.09375 130.9375 L -250.65625 130.9375 L -250.65625 128.09375 L -249.625 128.09375 L -249.625 127.6875 L -252.15625 127.6875 z M -245.53125 127.6875 L -245.53125 130.9375 L -245.09375 130.9375 L -245.09375 129.5 L -244.375 129.5 C -243.54449 129.5 -243.34375 129.00212 -243.34375 128.59375 C -243.34375 128.18997 -243.54449 127.6875 -244.375 127.6875 L -245.53125 127.6875 z M -241.3125 127.6875 L -241.3125 130.9375 L -240.21875 130.9375 C -239.58095 130.9375 -239.0625 130.6094 -239.0625 130.03125 C -239.0625 129.55864 -239.40128 129.24169 -239.75 129.21875 C -239.48846 129.13157 -239.1875 128.93131 -239.1875 128.5 C -239.1875 127.93103 -239.65983 127.6875 -240.1875 127.6875 L -241.3125 127.6875 z M -238.65625 127.6875 L -238.65625 130.9375 L -238.21875 130.9375 L -238.21875 127.6875 L -238.65625 127.6875 z M -237.40625 127.6875 L -237.40625 130.9375 L -236.96875 130.9375 L -236.96875 129.3125 L -236.9375 129.3125 L -235.4375 130.9375 L -234.78125 130.9375 L -236.46875 129.1875 L -234.90625 127.6875 L -235.5 127.6875 L -236.9375 129.09375 L -236.96875 129.09375 L -236.96875 127.6875 L -237.40625 127.6875 z M -234.40625 127.6875 L -234.40625 130.9375 L -232.21875 130.9375 L -232.21875 130.53125 L -233.96875 130.53125 L -233.96875 129.46875 L -232.4375 129.46875 L -232.4375 129.0625 L -233.96875 129.0625 L -233.96875 128.09375 L -232.3125 128.09375 L -232.3125 127.6875 L -234.40625 127.6875 z M -229.28125 127.6875 L -229.28125 130.9375 L -228.84375 130.9375 L -228.84375 129.4375 L -227.15625 129.4375 L -227.15625 130.9375 L -226.71875 130.9375 L -226.71875 127.6875 L -227.15625 127.6875 L -227.15625 129.03125 L -228.84375 129.03125 L -228.84375 127.6875 L -229.28125 127.6875 z M -226 127.6875 L -226 130.9375 L -223.8125 130.9375 L -223.8125 130.53125 L -225.5625 130.53125 L -225.5625 129.46875 L -224 129.46875 L -224 129.0625 L -225.5625 129.0625 L -225.5625 128.09375 L -223.90625 128.09375 L -223.90625 127.6875 L -226 127.6875 z M -223.375 127.6875 L -223.375 130.9375 L -222.3125 130.9375 C -221.21586 130.9375 -220.53125 130.20266 -220.53125 129.3125 C -220.53125 128.71141 -220.8468 127.6875 -222.21875 127.6875 L -223.375 127.6875 z M -220.09375 127.6875 L -220.09375 130.9375 L -219.03125 130.9375 C -217.93461 130.9375 -217.25 130.20266 -217.25 129.3125 C -217.25 128.71141 -217.56555 127.6875 -218.9375 127.6875 L -220.09375 127.6875 z M -216.71875 127.6875 L -216.71875 130.9375 L -216.28125 130.9375 L -216.28125 127.6875 L -216.71875 127.6875 z M -215.5 127.6875 L -215.5 130.9375 L -215.0625 130.9375 L -215.0625 128.28125 L -215.03125 128.28125 L -213.21875 130.9375 L -212.6875 130.9375 L -212.6875 127.6875 L -213.125 127.6875 L -213.125 130.34375 L -214.90625 127.6875 L -215.5 127.6875 z M -247.75 128.03125 C -247.01585 128.03125 -246.5 128.5967 -246.5 129.3125 C -246.5 130.03289 -247.01585 130.59375 -247.75 130.59375 C -248.48874 130.59375 -248.96875 130.03289 -248.96875 129.3125 C -248.96875 128.5967 -248.48874 128.03125 -247.75 128.03125 z M -245.09375 128.0625 L -244.5 128.0625 C -243.97233 128.0625 -243.8125 128.28174 -243.8125 128.59375 C -243.8125 128.91035 -243.97233 129.125 -244.5 129.125 L -245.09375 129.125 L -245.09375 128.0625 z M -240.875 128.0625 L -240.1875 128.0625 C -239.75619 128.0625 -239.65625 128.39732 -239.65625 128.5625 C -239.65625 128.91581 -239.94629 129.03125 -240.28125 129.03125 L -240.875 129.03125 L -240.875 128.0625 z M -222.90625 128.09375 L -222.25 128.09375 C -221.23595 128.09375 -221 128.85365 -221 129.3125 C -221 130.12924 -221.64085 130.53125 -222.375 130.53125 L -222.90625 130.53125 L -222.90625 128.09375 z M -219.625 128.09375 L -218.96875 128.09375 C -217.9547 128.09375 -217.71875 128.85365 -217.71875 129.3125 C -217.71875 130.12924 -218.3596 130.53125 -219.09375 130.53125 L -219.625 130.53125 L -219.625 128.09375 z M -240.875 129.4375 L -240.21875 129.4375 C -239.89756 129.4375 -239.53125 129.54115 -239.53125 130 C -239.53125 130.44049 -239.9205 130.5625 -240.21875 130.5625 L -240.875 130.5625 L -240.875 129.4375 z " + xlink:href="#text6369" + style="font-size:4.58845854px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;opacity:0.47572817;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="path6883" + inkscape:href="#text6369" + d="m -241.96875,127.59375 c -1.01864,0 -1.6875,0.77812 -1.6875,1.71875 0,0.92228 0.61752,1.71875 1.71875,1.71875 0.40378,0 0.93799,-0.11978 1.25,-0.3125 l 0,-1.59375 -1.1875,0 0,0.40625 0.71875,0 0,0.90625 c -0.27531,0.15601 -0.62524,0.15625 -0.78125,0.15625 -0.74333,0 -1.25,-0.56545 -1.25,-1.28125 0,-0.7158 0.48001,-1.28125 1.21875,-1.28125 0.53685,0 0.77864,0.25657 0.875,0.34375 l 0.3125,-0.34375 c -0.32119,-0.32578 -0.71948,-0.4375 -1.1875,-0.4375 z m 3.34375,0 c -1.01864,0 -1.6875,0.77812 -1.6875,1.71875 0,0.94522 0.66886,1.71875 1.6875,1.71875 1.01405,0 1.6875,-0.77353 1.6875,-1.71875 0,-0.94063 -0.67345,-1.71875 -1.6875,-1.71875 z m -15.9375,0.0937 0,0.40625 1.03125,0 0,2.84375 0.4375,0 0,-2.84375 1.0625,0 0,-0.40625 -2.53125,0 z m 3.90625,0 -1.40625,3.25 0.5,0 0.3125,-0.8125 1.5625,0 0.3125,0.8125 0.53125,0 -1.40625,-3.25 -0.40625,0 z m 2.15625,0 0,3.25 0.4375,0 0,-2.65625 1.8125,2.65625 0.5625,0 0,-3.25 -0.4375,0 0,2.65625 -1.78125,-2.65625 -0.59375,0 z m 9.875,0.34375 c 0.73415,0 1.21875,0.56545 1.21875,1.28125 0,0.72039 -0.4846,1.28125 -1.21875,1.28125 -0.73874,0 -1.21875,-0.56086 -1.21875,-1.28125 0,-0.7158 0.48001,-1.28125 1.21875,-1.28125 z m -11.84375,0.21875 0.625,1.5 -1.25,0 0.625,-1.5 z m 5.25,1.375 0,0.40625 1.15625,0 0,-0.40625 -1.15625,0 z" + transform="translate(0,0.23317791)" /> + <text + xml:space="preserve" + style="font-size:4.58845854px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#7f4109;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn" + x="-254.62286" + y="130.93718" + id="text6369" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan6371" + x="-254.62286" + y="130.93718">STOP BIKESHEDDING</tspan></text> + <path + style="opacity:0.3;color:#000000;fill:none;stroke:url(#radialGradient2546);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + id="path504" + transform="matrix(0.50014111,0,0,0.50014111,-329.87121,110.66007)" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + transform="matrix(0.50014111,0,0,0.50014111,-329.0186,110.66007)" + id="path1302" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + style="color:#000000;fill:none;stroke:url(#radialGradient2514);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" /> + <path + sodipodi:nodetypes="cc" + transform="matrix(0.50014111,0,0,0.50014111,-328.26842,110.66007)" + id="path1320" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + style="opacity:0.3;color:#000000;fill:none;stroke:url(#radialGradient2516);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" /> + <path + style="color:#000000;fill:none;stroke:url(#radialGradient2518);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + id="path1322" + transform="matrix(0.50014111,0,0,0.50014111,-327.51818,110.66007)" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.3;color:#000000;fill:none;stroke:url(#radialGradient2520);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + id="path1330" + transform="matrix(0.50014111,0,0,0.50014111,-326.83051,110.66007)" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + transform="matrix(0.50014111,0,0,0.50014111,-326.08027,110.66007)" + id="path1332" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + style="color:#000000;fill:none;stroke:url(#radialGradient2522);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" /> + <path + sodipodi:nodetypes="cc" + transform="matrix(0.50014111,0,0,0.50014111,-325.15171,110.66007)" + id="path1340" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + style="opacity:0.3;color:#000000;fill:none;stroke:url(#radialGradient2570);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" /> + <path + style="color:#000000;fill:none;stroke:url(#radialGradient2590);stroke-width:1;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter1290);enable-background:new" + d="m 345.75,20 c 9.12719,8.666667 9.11896,24.833333 0,34.25" + id="path1342" + transform="matrix(0.50014111,0,0,0.50014111,-324.28559,110.66007)" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:url(#radialGradient2528);fill-opacity:1;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m -161.15876,120.03772 c 6.55331,5.39328 4.54794,14.84086 0.0938,18.53648 7.4374,-5.71093 5.59529,-15.15747 -0.0938,-18.53648 z" + id="path1348" + sodipodi:nodetypes="ccc" /> + </g> + </g> + <g + id="g58732" + transform="matrix(1.0729764,0,0,1.0729764,-13.578512,17.39289)"> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" + id="path8549" + d="m 64.683071,76.817738 141.723809,0 L 224,225 48,225 z" + style="opacity:0.44081636;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8555);enable-background:new" + transform="matrix(1.0919083,0,0,1.1411187,-6.2233856,-30.247947)" /> + <path + transform="matrix(1.0919083,0,0,1.1411187,-6.2233856,-30.247947)" + style="opacity:0.57959182;fill:#000000;fill-opacity:1;stroke:none;display:inline;filter:url(#filter8545);enable-background:new" + d="m 64.683071,76.817738 141.723809,0 L 224,225 48,225 z" + id="path9188" + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" /> + <g + transform="matrix(1.0722473,0,0,1,-2.7869651,-10)" + clip-path="url(#clipPath9084)" + id="g9080"> + <rect + style="fill:#555753;fill-opacity:1;stroke:none" + id="rect9604" + width="176" + height="4" + x="48" + y="230" /> + <rect + style="fill:none;stroke:#2e3436;stroke-width:0.96572286;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline;filter:url(#filter9092);enable-background:new" + id="rect8306" + width="176" + height="4" + x="48" + y="230" /> + </g> + <g + clip-path="url(#clipPath9156)" + id="g9144" + transform="matrix(1.0662065,0,0,1.1193398,-1.9669225,-26.732113)"> + <rect + style="fill:url(#linearGradient59219);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect10376" + width="176" + height="16" + x="48" + y="204" /> + <path + style="fill:url(#radialGradient59221);fill-opacity:1;stroke:none;display:inline;enable-background:new" + d="M 60,60 212,60 224,204 48,204 60,60 z" + id="rect10378" + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" /> + <path + id="path9252" + d="m 60,60 -4.84375,58 161.6875,0 L 212,60 60,60 z" + style="opacity:0.5;fill:url(#radialGradient59223);fill-opacity:1;stroke:none;display:inline;enable-background:new" + inkscape:connector-curvature="0" /> + <rect + style="fill:url(#linearGradient59225);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9120" + width="176" + height="16" + x="48" + y="204" /> + <path + sodipodi:nodetypes="ccccccc" + style="fill:none;stroke:url(#linearGradient59227);stroke-width:0.91537362;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline;filter:url(#filter9164);enable-background:new" + d="m 60,60 -12,144 0,26 176,0 0,-26 L 212,60 60,60 z" + id="path9135" + inkscape:connector-curvature="0" /> + <text + xml:space="preserve" + style="font-size:105.25997162px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;opacity:0.33495148;color:#000000;fill:#729fcf;fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:0.91537362;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn" + x="474" + y="-8" + id="text1013" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan1015" + x="474" + y="-8" + style="stroke-width:0.91537362">This </tspan></text> + <text + xml:space="preserve" + style="font-size:105.25997162px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;opacity:0.33495148;color:#000000;fill:#2e3436;fill-opacity:1;fill-rule:nonzero;stroke:#ef2929;stroke-width:0.91537362;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn" + x="434" + y="36" + id="text1017" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan1019" + x="434" + y="36" + style="font-size:12px;fill:#950000;fill-opacity:1;stroke:none" /></text> + </g> + <path + transform="matrix(1.0662065,0,0,1.1260348,-1.9669225,-27.322874)" + d="m 61.375,61.5 -11.75,141 172.75,0 -11.75,-141 -149.25,0 z" + id="path9178" + style="fill:none;stroke:url(#linearGradient59229);stroke-width:0.9126482;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;display:inline;enable-background:new" + inkscape:original="M 60 60 L 48 204 L 224 204 L 212 60 L 60 60 z " + inkscape:radius="-1.5" + sodipodi:type="inkscape:offset" /> + <g + style="opacity:0.1;fill:url(#radialGradient59247);fill-opacity:1" + id="g9216" + transform="matrix(1.0662065,0,0,1,-1.9669225,0)"> + <rect + style="fill:url(#radialGradient59231);fill-opacity:1;stroke:none" + id="rect9200" + width="176" + height="1.1048543" + x="48" + y="203.98253" /> + <rect + style="fill:url(#radialGradient59233);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9202" + width="176" + height="1.1048543" + x="48" + y="205.98253" /> + <rect + style="fill:url(#radialGradient59235);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9204" + width="176" + height="1.1048543" + x="48" + y="207.98253" /> + <rect + style="fill:url(#radialGradient59237);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9206" + width="176" + height="1.1048543" + x="48" + y="209.98253" /> + <rect + style="fill:url(#radialGradient59239);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9208" + width="176" + height="1.1048543" + x="48" + y="211.98253" /> + <rect + style="fill:url(#radialGradient59241);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9210" + width="176" + height="1.1048543" + x="48" + y="213.98253" /> + <rect + style="fill:url(#radialGradient59243);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9212" + width="176" + height="1.1048543" + x="48" + y="215.98253" /> + <rect + style="fill:url(#radialGradient59245);fill-opacity:1;stroke:none;display:inline;enable-background:new" + id="rect9214" + width="176" + height="1.1048543" + x="48" + y="217.98253" /> + <rect + y="202.11856" + x="48" + height="1.1048543" + width="176" + id="rect8559" + style="fill:url(#radialGradient8561);fill-opacity:1;stroke:none" /> + </g> + <g + transform="matrix(1.1552793,0,0,1.3008568,-13.780208,-52.128213)" + id="g9590"> + <rect + ry="1.9819713" + rx="2.1102855" + y="95.5" + x="76.5" + height="4.5" + width="111.25" + id="rect11533" + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11539" + width="123" + height="4.1764045" + x="73.25" + y="125.5" + rx="2.1102855" + ry="1.8349936" /> + <rect + ry="1.8349936" + rx="2.1102855" + y="133.5" + x="72" + height="4.1764045" + width="123" + id="rect11541" + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11531" + width="75" + height="4.5" + x="76.5" + y="88.25" + rx="2.1102855" + ry="1.9819713" /> + <rect + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11535" + width="105" + height="4.1764045" + x="74.75" + y="103" + rx="2.1102855" + ry="1.8349936" /> + <rect + ry="1.8349936" + rx="2.1102855" + y="110.5" + x="74" + height="4.1764045" + width="98.75" + id="rect11537" + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11543" + width="123" + height="4.1764045" + x="72" + y="141.25" + rx="2.1102855" + ry="1.8349936" /> + <rect + ry="1.8349936" + rx="2.1102855" + y="148.75" + x="71" + height="4.1764045" + width="115" + id="rect11545" + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11547" + width="125.75" + height="4.1764045" + x="69.5" + y="155.5" + rx="2.1102855" + ry="1.8349936" /> + <rect + ry="1.8349936" + rx="2.1102855" + y="170.75" + x="69.5" + height="4.1764045" + width="104.25" + id="rect11549" + style="fill:#babdb6;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <rect + style="fill:#b9b9b9;fill-opacity:0.25581396;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="rect11551" + width="54.5" + height="4.1764045" + x="69" + y="178.5" + rx="2.1102855" + ry="1.8349936" /> + <g + transform="translate(1,15)" + style="font-size:12px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient59991);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new;font-family:RaveIn;-inkscape-font-specification:RaveIn" + id="flowRoot1846"> + <path + style="font-size:6px;fill:url(#linearGradient59249);fill-opacity:1;marker:none" + d="m 75.492007,73.040462 c -1.837168,2.530588 2.524038,5.733822 1.385812,3.67224 -2.671248,-0.28469 0.614903,-3.464392 -1.385812,-3.67224 z" + id="path3349" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59251);fill-opacity:1;marker:none" + d="m 80.009257,77.360462 c 6.058565,-3.8442 -5.881817,-3.465824 0,0 z m 0,-2.484 c 3.799646,2.583448 -3.620809,2.104407 0,0 z" + id="path3351" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59253);fill-opacity:1;marker:none" + d="m 83.654538,74.450462 c -2.790225,-0.88114 -1.403452,5.13418 -0.399393,0.492939 l 0.399393,-0.492939 z" + id="path3353" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59255);fill-opacity:1;marker:none" + d="m 86.301944,75.632462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278054,0.592454 2.170705,4.741279 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3355" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59257);fill-opacity:1;marker:none" + d="m 88.022069,74.888462 c -1.37658,0.14182 0.141553,4.261896 0.532337,0.331003 1.671441,2.032312 0.858001,1.650251 2.068953,-0.155946 2.175743,4.90276 1.310915,-3.343837 -2.60129,-0.175057 l 0,0 z" + id="path3357" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59259);fill-opacity:1;marker:none" + d="m 95.128413,73.616462 c -1.021127,-1.728538 -0.960499,1.687125 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50277 0,0 z" + id="path3359" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59261);fill-opacity:1;marker:none" + d="m 96.401819,75.500462 c 3.789611,-2.767315 0.550337,4.56164 0,0 z m 0,3.48 c -1.012071,-2.240939 5.373931,-2.999025 0.717229,-4.701577 -1.808543,-0.353085 -1.739464,4.709126 -0.717229,4.701577 z" + id="path3361" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59263);fill-opacity:1;marker:none" + d="m 99.339476,75.248462 c 2.976554,1.483641 -1.726146,2.204014 1.721204,1.841663 -1.02412,-2.14523 -0.0395,-1.738587 -0.0866,-2.530509 -0.59831,-0.340796 -1.628866,-0.185859 -1.634614,0.688846 l 1e-5,0 z" + id="path3363" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59265);fill-opacity:1;marker:none" + d="m 104.0176,76.844462 c 1.46158,-0.101477 -0.16117,-4.335662 -0.4737,-0.241036 -1.31763,-1.123887 -1.79838,-3.048029 -1.3442,0.307208 0.42598,0.574002 1.45918,0.629144 1.8179,-0.06617 l 0,-2e-6 z" + id="path3365" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59267);fill-opacity:1;marker:none" + d="m 105.82285,74.888462 c -1.37668,0.141792 0.14147,4.261916 0.53234,0.331003 1.67143,2.032316 0.858,1.650246 2.06895,-0.155946 2.17574,4.902759 1.31092,-3.343844 -2.60129,-0.175057 z" + id="path3367" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59269);fill-opacity:1;marker:none" + d="m 114.53719,75.518462 c -3.53254,-2.755466 -0.60015,4.250317 0,0 z m 0.06,1.77 c -5.16559,0.70016 1.6218,-7.44344 0.54811,-2.16094 -0.34455,0.405388 0.55445,2.613863 -0.54811,2.16094 z" + id="path3369" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59271);fill-opacity:1;marker:none" + d="m 117.07566,77.360462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583448 -3.62081,2.104408 0,0 z" + id="path3371" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59273);fill-opacity:1;marker:none" + d="m 119.11894,72.752462 c -0.40429,2.474045 0.79306,6.413295 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3373" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59275);fill-opacity:1;marker:none" + d="m 121.91551,77.360462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583448 -3.62081,2.104408 0,0 z" + id="path3375" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59277);fill-opacity:1;marker:none" + d="m 125.56079,74.450462 c -2.79023,-0.881142 -1.40345,5.134182 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3377" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59279);fill-opacity:1;marker:none" + d="m 127.89807,75.248462 c 2.97655,1.483639 -1.72614,2.204013 1.72119,1.841663 -1.02411,-2.145229 -0.0395,-1.738588 -0.0866,-2.530509 -0.59831,-0.340795 -1.62886,-0.185858 -1.63461,0.688846 l 2e-5,0 z" + id="path3379" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59281);fill-opacity:1;marker:none" + d="m 131.30419,73.616462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3381" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59283);fill-opacity:1;marker:none" + d="m 133.5796,77.264462 c -0.89906,-0.947312 -0.71409,-5.515939 -1.52183,-1.725985 -0.0527,0.837116 0.28771,2.341663 1.52183,1.725985 z" + id="path3383" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59285);fill-opacity:1;marker:none" + d="m 137.14144,76.928462 c -2.06877,-1.598135 2.82753,-0.759461 0,0 z m 0.846,0.15 c 2.61401,-1.45104 -3.65734,-3.854542 -0.21574,-1.872836 -1.48885,0.858252 -2.83269,2.564168 0.21574,1.872836 z" + id="path3385" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59287);fill-opacity:1;marker:none" + d="m 139.58457,74.888462 c -1.37668,0.141792 0.14147,4.261916 0.53234,0.331003 1.67143,2.032316 0.858,1.650246 2.06895,-0.155946 2.17574,4.902759 1.31092,-3.343844 -2.60129,-0.175057 z" + id="path3387" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59289);fill-opacity:1;marker:none" + d="m 146.17304,75.632462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3389" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59291);fill-opacity:1;marker:none" + d="m 148.93116,77.264462 c -0.89906,-0.947312 -0.71409,-5.515939 -1.52183,-1.725985 -0.0527,0.837116 0.28771,2.341663 1.52183,1.725985 z" + id="path3391" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59293);fill-opacity:1;marker:none" + d="m 149.92913,78.080462 c 1.77191,-2.317708 -1.24871,-1.323186 0,0 z" + id="path3393" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59295);fill-opacity:1;marker:none" + d="m 74.63908,83.378462 c 0.927046,2.31697 3.422708,0.921788 0.624236,-0.03936 3.339049,-1.463439 -0.188688,-2.357077 -0.624236,0.03936 z" + id="path3395" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59297);fill-opacity:1;marker:none" + d="m 79.080767,84.860462 c 6.058565,-3.8442 -5.881817,-3.465824 0,0 z m 0,-2.484 c 3.799645,2.583448 -3.620809,2.104408 0,0 z" + id="path3397" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59299);fill-opacity:1;marker:none" + d="m 81.610048,82.382462 c -1.461394,0.100934 0.1607,4.335675 0.473817,0.241886 1.317088,1.12445 1.799441,3.04563 1.343168,-0.30742 -0.425415,-0.573634 -1.458925,-0.630855 -1.816985,0.06553 l 0,4e-6 z" + id="path3399" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59301);fill-opacity:1;marker:none" + d="m 84.231298,82.748462 c 2.976542,1.48364 -1.72614,2.204014 1.721194,1.841663 -1.024121,-2.145229 -0.03947,-1.738588 -0.08658,-2.530509 -0.598308,-0.340795 -1.628863,-0.185859 -1.63461,0.688846 l -4e-6,0 z" + id="path3401" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59303);fill-opacity:1;marker:none" + d="m 89.041423,83.132462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278054,0.592454 2.170705,4.741279 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3403" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59305);fill-opacity:1;marker:none" + d="m 90.119548,83.378462 c 0.927046,2.31697 3.422708,0.921787 0.624235,-0.03936 3.33905,-1.463439 -0.188687,-2.357078 -0.624235,0.03936 z" + id="path3405" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59307);fill-opacity:1;marker:none" + d="m 94.729236,84.764462 c -0.899053,-0.947315 -0.714091,-5.515939 -1.521834,-1.725985 -0.05271,0.837121 0.287706,2.341666 1.521834,1.725985 z" + id="path3407" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59309);fill-opacity:1;marker:none" + d="m 97.467205,83.132462 c -2.79975,1.06471 -1.242853,-2.230207 0,0 z m -0.81,-1.236 c -4.278054,0.592453 2.170705,4.74128 0.143835,2.206975 -2.312509,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3409" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59311);fill-opacity:1;marker:none" + d="m 100.22533,84.764462 c -0.899055,-0.947314 -0.714091,-5.515939 -1.521834,-1.725985 -0.05271,0.837121 0.287706,2.341666 1.521834,1.725985 z" + id="path3411" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59313);fill-opacity:1;marker:none" + d="m 102.8313,84.344462 c 1.46158,-0.101477 -0.16117,-4.335662 -0.4737,-0.241036 -1.31763,-1.123887 -1.79838,-3.048029 -1.3442,0.307208 0.42598,0.574002 1.45918,0.629144 1.8179,-0.06617 l 0,-2e-6 z" + id="path3413" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59315);fill-opacity:1;marker:none" + d="m 106.24455,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3415" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59317);fill-opacity:1;marker:none" + d="m 109.11667,81.950462 c -2.79023,-0.881142 -1.40345,5.134182 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3417" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59319);fill-opacity:1;marker:none" + d="m 112.58795,84.428462 c -2.06877,-1.598135 2.82753,-0.759461 0,0 z m 0.846,0.15 c 2.61401,-1.45104 -3.65734,-3.854542 -0.21574,-1.872836 -1.48885,0.858251 -2.83269,2.564167 0.21574,1.872836 z" + id="path3419" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59321);fill-opacity:1;marker:none" + d="m 116.84308,83.018462 c -3.53254,-2.755466 -0.60015,4.250317 0,0 z m 0.06,1.77 c -5.1656,0.700167 1.6218,-7.443441 0.54811,-2.16094 -0.34455,0.405388 0.55445,2.613863 -0.54811,2.16094 z" + id="path3421" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59323);fill-opacity:1;marker:none" + d="m 118.71555,81.116462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3423" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59325);fill-opacity:1;marker:none" + d="m 119.98895,83.000462 c 3.78961,-2.767313 0.55034,4.56164 0,0 z m 0,3.48 c -1.01207,-2.240939 5.37393,-2.999025 0.71723,-4.701577 -1.80854,-0.35309 -1.73947,4.709147 -0.71723,4.701577 z" + id="path3425" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59327);fill-opacity:1;marker:none" + d="m 123.75461,81.116462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3427" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59329);fill-opacity:1;marker:none" + d="m 124.36802,82.748462 c 2.97655,1.483639 -1.72614,2.204013 1.72119,1.841663 -1.02411,-2.145229 -0.0395,-1.738588 -0.0866,-2.530509 -0.59831,-0.340795 -1.62886,-0.185858 -1.63461,0.688846 l 2e-5,0 z" + id="path3429" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59331);fill-opacity:1;marker:none" + d="m 126.92814,83.378462 c 0.92705,2.31697 3.42271,0.921788 0.62424,-0.03936 3.33917,-1.463493 -0.18893,-2.357019 -0.62424,0.03936 z" + id="path3431" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59333);fill-opacity:1;marker:none" + d="m 130.70383,81.116462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3433" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59335);fill-opacity:1;marker:none" + d="m 131.97724,82.382462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241886 1.31708,1.124452 1.79944,3.045628 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3435" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59337);fill-opacity:1;marker:none" + d="m 135.87049,82.292462 c 2.64976,1.396136 -2.55629,1.365788 0,0 z m 0,2.502 c 3.03834,0.855965 -2.83602,1.426222 0,0 z m 1.008,-2.544 c -2.5707,-2.790131 -3.16505,7.785963 0.3554,2.485784 -4.88068,-1.089697 1.46701,-0.194375 -0.3554,-2.485784 z" + id="path3437" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59339);fill-opacity:1;marker:none" + d="m 141.98674,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.74128 0.14384,2.206975 -2.31251,-0.09938 3.98788,-1.214637 -0.14384,-2.206975 z" + id="path3439" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59341);fill-opacity:1;marker:none" + d="m 143.25686,80.252462 c -0.40429,2.474045 0.79306,6.413295 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3441" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59343);fill-opacity:1;marker:none" + d="m 145.38742,81.116462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3443" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59345);fill-opacity:1;marker:none" + d="m 147.66283,84.764462 c -0.89906,-0.947312 -0.71409,-5.515939 -1.52183,-1.725985 -0.0527,0.837116 0.28771,2.341663 1.52183,1.725985 z" + id="path3445" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59347);fill-opacity:1;marker:none" + d="m 149.1108,84.428462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z" + id="path3447" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59349);fill-opacity:1;marker:none" + d="m 154.25674,81.728462 c -2.30012,3.171169 -2.28521,-3.102244 0,0 z m 0.612,0 c -3.07871,-5.069805 -4.00217,6.259177 -1.62918,0.952553 0.67838,-0.712585 1.64784,0.437727 1.62918,-0.952553 z" + id="path3449" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59351);fill-opacity:1;marker:none" + d="m 157.57267,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3451" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59353);fill-opacity:1;marker:none" + d="m 158.8428,80.252462 c -0.40429,2.474045 0.79306,6.413295 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3453" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59355);fill-opacity:1;marker:none" + d="m 160.31936,80.252462 c -0.40429,2.474045 0.79306,6.413295 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3455" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59357);fill-opacity:1;marker:none" + d="m 163.85392,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3457" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59359);fill-opacity:1;marker:none" + d="m 165.61005,82.382462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241886 1.31708,1.124452 1.79944,3.045628 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3459" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59361);fill-opacity:1;marker:none" + d="m 169.8933,84.764462 c -0.89906,-0.947312 -0.71409,-5.515939 -1.52183,-1.725985 -0.0527,0.837116 0.28771,2.341663 1.52183,1.725985 z" + id="path3461" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59363);fill-opacity:1;marker:none" + d="m 172.63127,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3463" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59365);fill-opacity:1;marker:none" + d="m 173.72739,82.748462 c 2.97655,1.483639 -1.72614,2.204013 1.72119,1.841663 -1.02411,-2.145229 -0.0395,-1.738588 -0.0866,-2.530509 -0.59831,-0.340795 -1.62886,-0.185858 -1.63461,0.688846 l 2e-5,0 z" + id="path3465" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59367);fill-opacity:1;marker:none" + d="m 178.72952,82.952462 c -3.78401,-2.438757 -0.21063,4.245178 0,0 z m 0,3.192 c 0.47459,-1.96346 -5.22419,-2.785263 -0.71899,-4.365648 1.6764,-0.421333 1.8857,4.501748 0.71899,4.365648 l 0,0 z" + id="path3467" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59369);fill-opacity:1;marker:none" + d="m 182.00317,84.344462 c 1.46158,-0.101477 -0.16117,-4.335662 -0.4737,-0.241036 -1.31763,-1.123887 -1.79838,-3.048029 -1.3442,0.307208 0.42598,0.574002 1.45918,0.629144 1.8179,-0.06617 l 0,-2e-6 z" + id="path3469" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59371);fill-opacity:1;marker:none" + d="m 185.41642,83.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3471" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59373);fill-opacity:1;marker:none" + d="m 73.85816,89.444462 c -0.149313,2.950357 3.364311,3.044538 2.401416,0.234481 -1.891212,4.1018 -0.405042,-0.306717 -2.401416,-0.234481 z" + id="path3473" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59375);fill-opacity:1;marker:none" + d="m 77.790973,88.616462 c -1.021127,-1.728538 -0.960499,1.687125 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50277 0,0 z" + id="path3475" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59377);fill-opacity:1;marker:none" + d="m 78.182379,89.444462 c -0.149313,2.950357 3.364311,3.044538 2.401416,0.234481 -1.891212,4.1018 -0.405042,-0.306717 -2.401416,-0.234481 z" + id="path3477" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59379);fill-opacity:1;marker:none" + d="m 83.519191,90.632462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278054,0.592454 2.170705,4.741279 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3479" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59381);fill-opacity:1;marker:none" + d="m 86.391316,89.450462 c -2.790225,-0.88114 -1.403452,5.13418 -0.399393,0.492939 l 0.399393,-0.492939 z" + id="path3481" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59383);fill-opacity:1;marker:none" + d="m 88.582723,89.450462 c -2.790225,-0.88114 -1.403452,5.13418 -0.399393,0.492939 l 0.399393,-0.492939 z" + id="path3483" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59385);fill-opacity:1;marker:none" + d="m 90.132129,91.928462 c -2.06877,-1.598133 2.827526,-0.759461 0,0 z m 0.846,0.15 c 2.614008,-1.451039 -3.65734,-3.854542 -0.215737,-1.872836 -1.488855,0.858251 -2.83269,2.564167 0.215737,1.872836 z" + id="path3485" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59387);fill-opacity:1;marker:none" + d="m 96.309129,90.518462 c -3.53254,-2.755465 -0.600152,4.250317 0,0 z m 0.06,1.77 c -5.165596,0.700164 1.6218,-7.443441 0.548117,-2.16094 -0.344571,0.4054 0.554466,2.613873 -0.548117,2.16094 z" + id="path3487" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59389);fill-opacity:1;marker:none" + d="m 98.847598,92.360462 c 6.058572,-3.844199 -5.881819,-3.465826 0,0 z m 0,-2.484 c 3.799642,2.583449 -3.620809,2.104406 0,0 z" + id="path3489" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59391);fill-opacity:1;marker:none" + d="m 100.89088,87.752462 c -0.40429,2.474045 0.79306,6.413295 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3491" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59393);fill-opacity:1;marker:none" + d="m 103.68744,92.360462 c 6.05857,-3.8442 -5.881817,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583447 -3.62081,2.104409 0,0 z" + id="path3493" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59395);fill-opacity:1;marker:none" + d="m 107.33272,89.450462 c -2.79023,-0.881142 -1.40345,5.134182 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3495" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59397);fill-opacity:1;marker:none" + d="m 110.33,89.882462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241886 1.31708,1.124452 1.79944,3.045628 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3497" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59399);fill-opacity:1;marker:none" + d="m 114.44525,92.360462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583448 -3.62081,2.104408 0,0 z" + id="path3499" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59401);fill-opacity:1;marker:none" + d="m 116.97454,89.882462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241887 1.31708,1.124452 1.79944,3.045627 1.34316,-0.30742 -0.42541,-0.573633 -1.45892,-0.63086 -1.81698,0.06553 l 0,3e-6 z" + id="path3501" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59403);fill-opacity:1;marker:none" + d="m 122.17766,89.882462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241886 1.31708,1.124452 1.79944,3.045628 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3503" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59405);fill-opacity:1;marker:none" + d="m 126.89891,91.844462 c 1.46158,-0.101477 -0.16117,-4.335662 -0.4737,-0.241036 -1.31763,-1.123887 -1.79838,-3.048029 -1.3442,0.307208 0.42598,0.574002 1.45918,0.629144 1.8179,-0.06617 l 0,-2e-6 z" + id="path3505" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59407);fill-opacity:1;marker:none" + d="m 128.74016,89.882462 c -1.4614,0.100932 0.16069,4.335676 0.47382,0.241886 1.31708,1.124452 1.79944,3.045628 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3507" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59409);fill-opacity:1;marker:none" + d="m 131.34341,90.878462 c 0.92705,2.31697 3.42271,0.921788 0.62424,-0.03936 3.33917,-1.463493 -0.18893,-2.357019 -0.62424,0.03936 z" + id="path3509" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59411);fill-opacity:1;marker:none" + d="m 135.2331,91.928462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z" + id="path3511" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59413);fill-opacity:1;marker:none" + d="m 138.09304,88.040462 c -0.35587,3.096834 0.15913,5.415465 0.75019,1.318065 0.9519,4.638954 2.41937,1.184635 3.13459,0.0738 -0.2116,4.715896 1.81036,0.412852 0.11749,-1.265478 -1.74499,2.445499 -1.98225,3.777752 -3.13617,0.03067 l -0.3921,-0.276911 -0.474,0.119857 0,0 0,-3e-6 z" + id="path3513" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59415);fill-opacity:1;marker:none" + d="m 144.46025,91.928462 c -2.06877,-1.598135 2.82753,-0.759461 0,0 z m 0.846,0.15 c 2.61401,-1.45104 -3.65734,-3.854542 -0.21574,-1.872836 -1.48885,0.858251 -2.83269,2.564168 0.21574,1.872836 z" + id="path3515" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59417);fill-opacity:1;marker:none" + d="m 148.37938,91.844462 c 1.46158,-0.101477 -0.16117,-4.335662 -0.4737,-0.241036 -1.31763,-1.123887 -1.79838,-3.048029 -1.3442,0.307208 0.42598,0.574002 1.45918,0.629144 1.8179,-0.06617 l 0,-2e-6 z" + id="path3517" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59419);fill-opacity:1;marker:none" + d="m 151.33663,89.450462 c -2.79023,-0.881142 -1.40345,5.134182 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3519" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59421);fill-opacity:1;marker:none" + d="m 152.58004,88.616462 c -1.02113,-1.728535 -0.9605,1.687124 0,0 z m -0.666,0.828 c -0.75024,5.498476 2.06042,0.502776 0,0 z" + id="path3521" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59423);fill-opacity:1;marker:none" + d="m 153.19344,90.248462 c 2.97655,1.483639 -1.72614,2.204013 1.72119,1.841663 -1.02411,-2.145229 -0.0395,-1.738588 -0.0866,-2.530509 -0.59831,-0.340795 -1.62886,-0.185858 -1.63461,0.688846 l 2e-5,0 z" + id="path3523" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59425);fill-opacity:1;marker:none" + d="m 159.92544,90.632462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3525" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59427);fill-opacity:1;marker:none" + d="m 162.68357,92.264462 c -0.89906,-0.947312 -0.71409,-5.515939 -1.52183,-1.725985 -0.0527,0.837116 0.28771,2.341663 1.52183,1.725985 z" + id="path3527" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59429);fill-opacity:1;marker:none" + d="m 165.77141,90.500462 c 3.78961,-2.767315 0.55034,4.561641 0,0 z m 0,3.48 c -1.01207,-2.240939 5.37393,-2.999025 0.71723,-4.701577 -1.80854,-0.35309 -1.73947,4.709147 -0.71723,4.701577 z" + id="path3529" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59431);fill-opacity:1;marker:none" + d="m 170.94107,90.632462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3531" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59433);fill-opacity:1;marker:none" + d="m 174.47319,90.518462 c -3.53254,-2.755466 -0.60015,4.250317 0,0 z m 0.06,1.77 c -5.1656,0.700167 1.6218,-7.443441 0.54811,-2.16094 -0.34455,0.405388 0.55445,2.613863 -0.54811,2.16094 z" + id="path3533" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59435);fill-opacity:1;marker:none" + d="m 177.74966,90.632462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592454 2.17071,4.741279 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3535" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59437);fill-opacity:1;marker:none" + d="m 179.78779,91.928462 c -1.02113,-1.728535 -0.9605,1.687124 0,0 z" + id="path3537" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59439);fill-opacity:1;marker:none" + d="m 76.005233,96.728462 c -2.300117,3.171169 -2.28521,-3.102244 0,0 z m 0.612,0 c -3.078711,-5.069805 -4.002175,6.259178 -1.629177,0.952552 0.678371,-0.712583 1.647856,0.437725 1.629177,-0.952552 z" + id="path3539" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59441);fill-opacity:1;marker:none" + d="m 79.32117,98.132462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278055,0.592455 2.170705,4.741278 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3541" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59443);fill-opacity:1;marker:none" + d="m 80.591295,95.252462 c -0.404283,2.474046 0.79306,6.413298 0.585402,1.744255 0.01187,-0.377441 0.244403,-1.722402 -0.585402,-1.744255 z" + id="path3543" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59445);fill-opacity:1;marker:none" + d="m 82.067858,95.252462 c -0.404283,2.474046 0.79306,6.413298 0.585402,1.744255 0.01187,-0.377441 0.244403,-1.722402 -0.585402,-1.744255 z" + id="path3545" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59447);fill-opacity:1;marker:none" + d="m 85.60242,98.132462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278055,0.592455 2.170705,4.741278 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3547" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59449);fill-opacity:1;marker:none" + d="m 87.358545,97.382462 c -1.461394,0.100937 0.1607,4.335678 0.473817,0.241886 1.317088,1.124453 1.799441,3.045632 1.343168,-0.30742 -0.425415,-0.573634 -1.458925,-0.630855 -1.816985,0.06553 l 0,4e-6 z" + id="path3549" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59451);fill-opacity:1;marker:none" + d="m 91.641795,99.764462 c -0.899053,-0.947315 -0.714091,-5.515939 -1.521834,-1.725985 -0.05271,0.837121 0.287706,2.341663 1.521834,1.725985 z" + id="path3551" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59453);fill-opacity:1;marker:none" + d="m 94.379764,98.132462 c -2.799751,1.064709 -1.242852,-2.230207 0,0 z m -0.81,-1.236 c -4.278055,0.592455 2.170705,4.741278 0.143835,2.206975 -2.31251,-0.09938 3.98789,-1.214642 -0.143835,-2.206975 z" + id="path3553" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59455);fill-opacity:1;marker:none" + d="m 95.475889,97.748462 c 2.976542,1.48364 -1.72614,2.204014 1.721194,1.841664 -1.024119,-2.14523 -0.03947,-1.738589 -0.08658,-2.53051 -0.598308,-0.340795 -1.628862,-0.185858 -1.63461,0.688846 l -4e-6,0 z" + id="path3555" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59457);fill-opacity:1;marker:none" + d="m 100.47801,97.952462 c -3.784005,-2.438754 -0.21062,4.245178 0,0 z m 0,3.191998 c 0.47459,-1.963457 -5.224185,-2.785262 -0.718989,-4.365645 1.676389,-0.421332 1.885699,4.501765 0.718989,4.365645 z" + id="path3557" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59459);fill-opacity:1;marker:none" + d="m 103.75167,99.344462 c 1.46158,-0.101475 -0.16117,-4.335663 -0.4737,-0.241035 -1.31763,-1.123885 -1.79838,-3.048031 -1.3442,0.307207 0.42598,0.574005 1.45918,0.629146 1.8179,-0.06617 l 0,-2e-6 z" + id="path3559" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59461);fill-opacity:1;marker:none" + d="m 107.16492,98.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592455 2.17071,4.741278 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3561" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59463);fill-opacity:1;marker:none" + d="m 109.96092,96.944462 c -0.14932,2.95036 3.36432,3.044536 2.40142,0.23448 -1.89134,4.101958 -0.40497,-0.307047 -2.40142,-0.23448 z" + id="path3563" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59465);fill-opacity:1;marker:none" + d="m 113.89373,96.116462 c -1.02113,-1.728538 -0.96049,1.687125 0,0 z m -0.666,0.828 c -0.75024,5.498478 2.06042,0.502778 0,0 z" + id="path3565" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59467);fill-opacity:1;marker:none" + d="m 114.28514,96.944462 c -0.14932,2.95036 3.36432,3.044536 2.40142,0.23448 -1.89134,4.101958 -0.40497,-0.307047 -2.40142,-0.23448 z" + id="path3567" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59469);fill-opacity:1;marker:none" + d="m 119.62195,98.132462 c -2.79975,1.064709 -1.24286,-2.230207 0,0 z m -0.81,-1.236 c -4.27805,0.592455 2.17071,4.741278 0.14384,2.206975 -2.31252,-0.09938 3.98788,-1.214642 -0.14384,-2.206975 z" + id="path3569" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59471);fill-opacity:1;marker:none" + d="m 122.49408,96.950462 c -2.79023,-0.881142 -1.40345,5.134178 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3571" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59473);fill-opacity:1;marker:none" + d="m 124.68548,96.950462 c -2.79023,-0.881142 -1.40345,5.134178 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3573" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59475);fill-opacity:1;marker:none" + d="m 126.23489,99.428462 c -2.06877,-1.598135 2.82753,-0.759461 0,0 z m 0.846,0.15 c 2.61401,-1.45104 -3.65734,-3.854542 -0.21574,-1.872836 -1.48885,0.858251 -2.83269,2.564164 0.21574,1.872836 z" + id="path3575" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59477);fill-opacity:1;marker:none" + d="m 132.41189,98.018462 c -3.53254,-2.755467 -0.60015,4.250318 0,0 z m 0.06,1.77 c -5.1656,0.700168 1.6218,-7.443441 0.54811,-2.16094 -0.34455,0.405388 0.55445,2.613868 -0.54811,2.16094 z" + id="path3577" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59479);fill-opacity:1;marker:none" + d="m 134.95036,99.860462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583445 -3.62081,2.104408 0,0 z" + id="path3579" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59481);fill-opacity:1;marker:none" + d="m 136.99364,95.252462 c -0.40429,2.474046 0.79306,6.413298 0.5854,1.744255 0.0119,-0.377441 0.24441,-1.722402 -0.5854,-1.744255 z" + id="path3581" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59483);fill-opacity:1;marker:none" + d="m 139.7902,99.860462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583445 -3.62081,2.104408 0,0 z" + id="path3583" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59485);fill-opacity:1;marker:none" + d="m 143.43548,96.950462 c -2.79023,-0.881142 -1.40345,5.134178 -0.39939,0.492939 l 0.39939,-0.492939 z" + id="path3585" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59487);fill-opacity:1;marker:none" + d="m 146.43276,97.382462 c -1.4614,0.100935 0.16069,4.335678 0.47382,0.241886 1.31708,1.124455 1.79944,3.045632 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3587" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59489);fill-opacity:1;marker:none" + d="m 150.54801,99.860462 c 6.05857,-3.8442 -5.88182,-3.465824 0,0 z m 0,-2.484 c 3.79965,2.583445 -3.62081,2.104408 0,0 z" + id="path3589" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59491);fill-opacity:1;marker:none" + d="m 153.0773,97.382462 c -1.4614,0.100934 0.16069,4.335678 0.47382,0.241887 1.31708,1.124455 1.79944,3.045631 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630859 -1.81698,0.06553 l 0,3e-6 z" + id="path3591" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59493);fill-opacity:1;marker:none" + d="m 158.28042,97.382462 c -1.4614,0.100935 0.16069,4.335678 0.47382,0.241886 1.31708,1.124455 1.79944,3.045632 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3593" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59495);fill-opacity:1;marker:none" + d="m 163.00167,99.344462 c 1.46158,-0.101475 -0.16117,-4.335663 -0.4737,-0.241035 -1.31763,-1.123885 -1.79838,-3.048031 -1.3442,0.307207 0.42598,0.574005 1.45918,0.629146 1.8179,-0.06617 l 0,-2e-6 z" + id="path3595" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59497);fill-opacity:1;marker:none" + d="m 164.84292,97.382462 c -1.4614,0.100935 0.16069,4.335678 0.47382,0.241886 1.31708,1.124455 1.79944,3.045632 1.34316,-0.30742 -0.42541,-0.573632 -1.45892,-0.630857 -1.81698,0.06553 l 0,4e-6 z" + id="path3597" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59499);fill-opacity:1;marker:none" + d="m 167.44617,98.378462 c 0.92704,2.316978 3.42271,0.921788 0.62424,-0.03936 3.33917,-1.463493 -0.18893,-2.357019 -0.62424,0.03936 z" + id="path3599" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59501);fill-opacity:1;marker:none" + d="m 171.33586,99.428462 c -1.02113,-1.728538 -0.96049,1.687128 0,0 z" + id="path3601" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59503);fill-opacity:1;marker:none" + d="m 74.851394,111.72846 c -2.300117,3.17116 -2.28521,-3.10224 0,0 z m 0.612,0 c -3.078714,-5.0698 -4.002174,6.25918 -1.629177,0.95255 0.678369,-0.71258 1.64786,0.43773 1.629177,-0.95255 z" + id="path3603" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59505);fill-opacity:1;marker:none" + d="m 78.167331,113.13246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3605" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59507);fill-opacity:1;marker:none" + d="m 79.437456,110.25246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path3607" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59509);fill-opacity:1;marker:none" + d="m 80.914019,110.25246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path3609" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59511);fill-opacity:1;marker:none" + d="m 84.448581,113.13246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3611" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59513);fill-opacity:1;marker:none" + d="m 86.204706,112.38246 c -1.461394,0.10093 0.1607,4.33568 0.473817,0.24189 1.317088,1.12445 1.799441,3.04562 1.343168,-0.30743 -0.425416,-0.57363 -1.458924,-0.63085 -1.816985,0.0655 l 0,4e-5 z" + id="path3613" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59515);fill-opacity:1;marker:none" + d="m 90.487956,114.76446 c -0.899052,-0.94731 -0.714092,-5.51594 -1.521834,-1.72599 -0.05271,0.83712 0.287706,2.34167 1.521834,1.72599 z" + id="path3615" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59517);fill-opacity:1;marker:none" + d="m 93.225925,113.13246 c -2.799749,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3617" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59519);fill-opacity:1;marker:none" + d="m 94.32205,112.74846 c 2.976542,1.48364 -1.72614,2.20401 1.721193,1.84166 -1.024117,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -3e-6,0 z" + id="path3619" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59521);fill-opacity:1;marker:none" + d="m 99.324175,112.95246 c -3.784013,-2.43875 -0.210626,4.24518 0,0 z m 0,3.192 c 0.474579,-1.96346 -5.22419,-2.78527 -0.71899,-4.36565 1.676395,-0.42133 1.885695,4.50175 0.71899,4.36565 z" + id="path3621" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59523);fill-opacity:1;marker:none" + d="m 102.59783,114.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3623" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59525);fill-opacity:1;marker:none" + d="m 106.01108,113.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3625" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59527);fill-opacity:1;marker:none" + d="m 109.02908,112.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3627" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59529);fill-opacity:1;marker:none" + d="m 113.70721,114.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3629" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59531);fill-opacity:1;marker:none" + d="m 114.88846,112.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3631" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59533);fill-opacity:1;marker:none" + d="m 117.44858,113.37846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3633" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59535);fill-opacity:1;marker:none" + d="m 121.22427,111.11646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3635" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59537);fill-opacity:1;marker:none" + d="m 122.49767,113.00046 c 3.78961,-2.76731 0.55034,4.56164 0,0 z m 0,3.48 c -1.01207,-2.24094 5.37393,-2.99902 0.71723,-4.70158 -1.80854,-0.35309 -1.73947,4.70915 -0.71723,4.70158 l 0,0 z" + id="path3637" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59539);fill-opacity:1;marker:none" + d="m 126.26333,111.11646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3639" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59541);fill-opacity:1;marker:none" + d="m 128.53874,114.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3641" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59543);fill-opacity:1;marker:none" + d="m 132.10058,114.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3643" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59545);fill-opacity:1;marker:none" + d="m 133.90171,113.37846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3645" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59547);fill-opacity:1;marker:none" + d="m 136.83139,113.37846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3647" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59549);fill-opacity:1;marker:none" + d="m 141.87908,114.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3649" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59551);fill-opacity:1;marker:none" + d="m 143.68433,112.38846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31092,-3.34384 -2.60129,-0.17506 z" + id="path3651" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59553);fill-opacity:1;marker:none" + d="m 148.0408,112.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3653" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59555);fill-opacity:1;marker:none" + d="m 151.75292,114.42846 c -2.06876,-1.59813 2.82752,-0.75945 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3655" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59557);fill-opacity:1;marker:none" + d="m 154.23205,112.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3657" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59559);fill-opacity:1;marker:none" + d="m 159.39917,112.38846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03231 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31093,-3.34384 -2.60129,-0.17506 z" + id="path3659" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59561);fill-opacity:1;marker:none" + d="m 164.88964,114.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3661" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59563);fill-opacity:1;marker:none" + d="m 166.70877,112.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3663" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59565);fill-opacity:1;marker:none" + d="m 169.28689,112.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3665" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59567);fill-opacity:1;marker:none" + d="m 172.99902,114.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3667" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59569);fill-opacity:1;marker:none" + d="m 175.76014,114.42846 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z" + id="path3669" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59571);fill-opacity:1;marker:none" + d="m 181.66808,112.66446 c -2.05231,5.28136 -4.15766,-4.35148 -0.13863,-0.6974 l 0.13863,0.6974 z m 0.612,0 c -5.30791,-8.17906 -5.0293,8.37371 0,0 z" + id="path3671" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59573);fill-opacity:1;marker:none" + d="m 184.18714,114.86046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3673" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59575);fill-opacity:1;marker:none" + d="m 186.71642,112.38246 c -1.4614,0.10093 0.16069,4.33568 0.47382,0.24189 1.31709,1.12444 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63084 -1.81698,0.0655 l 0,4e-5 z" + id="path3675" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59577);fill-opacity:1;marker:none" + d="m 191.56967,113.13246 c -2.79976,1.06471 -1.24285,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3677" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59579);fill-opacity:1;marker:none" + d="m 192.6478,113.37846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3679" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59581);fill-opacity:1;marker:none" + d="m 73.872467,121.84446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798377,-3.04802 -1.344203,0.30721 0.425983,0.57401 1.459181,0.62914 1.817905,-0.0662 l 0,3e-5 z" + id="path3681" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59583);fill-opacity:1;marker:none" + d="m 76.715717,122.26446 c -0.899053,-0.94731 -0.714091,-5.51594 -1.521834,-1.72599 -0.05271,0.83712 0.287706,2.34167 1.521834,1.72599 z" + id="path3683" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59585);fill-opacity:1;marker:none" + d="m 79.80356,120.50046 c 3.789605,-2.76731 0.550338,4.56164 0,0 z m 0,3.48 c -1.012068,-2.24094 5.373927,-2.99902 0.717229,-4.70158 -1.808545,-0.35308 -1.739463,4.70913 -0.717229,4.70158 l 0,0 z" + id="path3685" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59587);fill-opacity:1;marker:none" + d="m 84.841217,121.84446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798377,-3.04802 -1.344203,0.30721 0.425983,0.57401 1.459181,0.62914 1.817905,-0.0662 l 0,3e-5 z" + id="path3687" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59589);fill-opacity:1;marker:none" + d="m 87.798467,119.45046 c -2.790226,-0.88114 -1.403452,5.13419 -0.399393,0.49294 l 0.399393,-0.49294 z" + id="path3689" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59591);fill-opacity:1;marker:none" + d="m 90.313873,121.84446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798377,-3.04802 -1.344203,0.30721 0.425983,0.57401 1.459181,0.62914 1.817905,-0.0662 l 0,3e-5 z" + id="path3691" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59593);fill-opacity:1;marker:none" + d="m 91.495123,120.24846 c 2.976542,1.48364 -1.72614,2.20401 1.721193,1.84166 -1.024118,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -3e-6,0 z" + id="path3693" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59595);fill-opacity:1;marker:none" + d="m 95.015248,121.92846 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z" + id="path3695" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59597);fill-opacity:1;marker:none" + d="m 100.92319,120.16446 c -2.052315,5.28136 -4.157671,-4.35148 -0.13864,-0.6974 l 0.13864,0.6974 z m 0.612,0 c -5.307917,-8.17906 -5.029315,8.3737 0,0 z" + id="path3697" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59599);fill-opacity:1;marker:none" + d="m 103.44225,122.36046 c 6.05857,-3.8442 -5.881818,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3699" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59601);fill-opacity:1;marker:none" + d="m 105.97153,119.88246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3701" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59603);fill-opacity:1;marker:none" + d="m 110.82478,120.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3703" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59605);fill-opacity:1;marker:none" + d="m 111.9029,120.87846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3705" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59607);fill-opacity:1;marker:none" + d="m 119.20847,120.51846 c -3.53254,-2.75547 -0.60015,4.25032 0,0 z m 0.06,1.77 c -5.16559,0.70016 1.6218,-7.44344 0.54811,-2.16094 -0.36487,0.44847 0.58576,2.5564 -0.54811,2.16094 z" + id="path3707" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59609);fill-opacity:1;marker:none" + d="m 121.08094,118.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3709" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59611);fill-opacity:1;marker:none" + d="m 122.82834,121.92846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3711" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59613);fill-opacity:1;marker:none" + d="m 125.27147,119.88846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31092,-3.34384 -2.60129,-0.17506 z" + id="path3713" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59615);fill-opacity:1;marker:none" + d="m 133.78181,120.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3715" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59617);fill-opacity:1;marker:none" + d="m 136.65394,119.45046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path3717" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59619);fill-opacity:1;marker:none" + d="m 138.56334,122.36046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3719" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59621);fill-opacity:1;marker:none" + d="m 140.43262,120.24846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3721" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59623);fill-opacity:1;marker:none" + d="m 143.50275,123.08046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3723" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59625);fill-opacity:1;marker:none" + d="m 148.15322,122.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3725" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59627);fill-opacity:1;marker:none" + d="m 150.43519,119.45046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path3727" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59629);fill-opacity:1;marker:none" + d="m 151.67859,118.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3729" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59631);fill-opacity:1;marker:none" + d="m 152.292,120.24846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3731" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59633);fill-opacity:1;marker:none" + d="m 156.53212,122.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3733" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59635);fill-opacity:1;marker:none" + d="m 157.86609,118.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3735" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59637);fill-opacity:1;marker:none" + d="m 160.9035,120.45246 c -3.78401,-2.43875 -0.21063,4.24518 0,0 z m 0,3.192 c 0.47459,-1.96346 -5.22419,-2.78526 -0.71899,-4.36565 1.6764,-0.42133 1.8857,4.50175 0.71899,4.36565 z" + id="path3737" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59639);fill-opacity:1;marker:none" + d="m 164.17715,121.84446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3739" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59641);fill-opacity:1;marker:none" + d="m 167.5904,120.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3741" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59643);fill-opacity:1;marker:none" + d="m 170.6084,120.24846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3743" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59645);fill-opacity:1;marker:none" + d="m 174.01453,118.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3745" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59647);fill-opacity:1;marker:none" + d="m 176.28994,122.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3747" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59649);fill-opacity:1;marker:none" + d="m 179.85178,121.92846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3749" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59651);fill-opacity:1;marker:none" + d="m 182.2949,119.88846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31092,-3.34384 -2.60129,-0.17506 z" + id="path3751" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59653);fill-opacity:1;marker:none" + d="m 188.88337,120.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3753" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59655);fill-opacity:1;marker:none" + d="m 191.6415,122.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3755" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59657);fill-opacity:1;marker:none" + d="m 192.63947,123.08046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3757" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59659);fill-opacity:1;marker:none" + d="m 71.855547,128.00046 c 3.789605,-2.76731 0.550338,4.56164 0,0 z m 0,3.48 c -1.012068,-2.24094 5.373927,-2.99902 0.717229,-4.70158 -1.808545,-0.35308 -1.739463,4.70913 -0.717229,4.70158 z" + id="path3759" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59661);fill-opacity:1;marker:none" + d="m 76.569203,126.95046 c -2.790226,-0.88114 -1.403452,5.13419 -0.399393,0.49294 l 0.399393,-0.49294 z" + id="path3761" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59663);fill-opacity:1;marker:none" + d="m 79.216609,128.13246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 l 0,0 z" + id="path3763" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59665);fill-opacity:1;marker:none" + d="m 81.974734,129.76446 c -0.899052,-0.94731 -0.714092,-5.51594 -1.521834,-1.72599 -0.05271,0.83712 0.287706,2.34167 1.521834,1.72599 z" + id="path3765" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59667);fill-opacity:1;marker:none" + d="m 83.308703,126.11646 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50278 0,0 z" + id="path3767" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59669);fill-opacity:1;marker:none" + d="m 86.022109,129.34446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798377,-3.04802 -1.344203,0.30721 0.425983,0.57401 1.459181,0.62914 1.817905,-0.0662 l 0,3e-5 z" + id="path3769" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59671);fill-opacity:1;marker:none" + d="m 87.827359,127.38846 c -1.37658,0.14182 0.141554,4.26189 0.532337,0.331 1.671442,2.03232 0.858,1.65026 2.068953,-0.15594 2.399388,4.82125 0.919775,-3.38184 -2.60129,-0.17506 l 0,0 0,0 z" + id="path3771" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59673);fill-opacity:1;marker:none" + d="m 93.883703,126.94446 c -0.149314,2.95036 3.364311,3.04454 2.401416,0.23448 -1.891212,4.1018 -0.405042,-0.30671 -2.401416,-0.23448 z" + id="path3773" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59675);fill-opacity:1;marker:none" + d="m 99.220516,128.13246 c -2.799749,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170704,4.74128 0.143835,2.20698 -2.31251,-0.0994 3.987889,-1.21465 -0.143835,-2.20698 l 0,0 z" + id="path3775" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59677);fill-opacity:1;marker:none" + d="m 100.49064,125.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3777" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59679);fill-opacity:1;marker:none" + d="m 102.2852,130.58046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3779" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59681);fill-opacity:1;marker:none" + d="m 105.93367,128.00046 c 3.78961,-2.76732 0.55034,4.56165 0,0 z m 0,3.48 c -1.01207,-2.24094 5.37393,-2.99902 0.71723,-4.70158 -1.80854,-0.35309 -1.73947,4.70915 -0.71723,4.70158 z" + id="path3781" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59683);fill-opacity:1;marker:none" + d="m 111.10333,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 l 0,0 z" + id="path3783" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59685);fill-opacity:1;marker:none" + d="m 112.37345,125.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3785" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59687);fill-opacity:1;marker:none" + d="m 113.85002,125.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3787" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59689);fill-opacity:1;marker:none" + d="m 117.38458,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 l 0,0 z" + id="path3789" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59691);fill-opacity:1;marker:none" + d="m 119.1407,127.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3791" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59693);fill-opacity:1;marker:none" + d="m 123.42395,129.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3793" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59695);fill-opacity:1;marker:none" + d="m 126.16192,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 l 0,0 z" + id="path3795" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59697);fill-opacity:1;marker:none" + d="m 127.25805,127.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3797" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59699);fill-opacity:1;marker:none" + d="m 132.26017,127.95246 c -3.78401,-2.43875 -0.21063,4.24518 0,0 z m 0,3.192 c 0.47459,-1.96346 -5.22419,-2.78526 -0.71899,-4.36565 1.6764,-0.42133 1.8857,4.50175 0.71899,4.36565 z" + id="path3799" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59701);fill-opacity:1;marker:none" + d="m 135.53383,129.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3801" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59703);fill-opacity:1;marker:none" + d="m 138.94708,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 l 0,0 z" + id="path3803" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59705);fill-opacity:1;marker:none" + d="m 144.06508,129.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3805" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59707);fill-opacity:1;marker:none" + d="m 146.90833,129.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3807" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59709);fill-opacity:1;marker:none" + d="m 147.9063,130.58046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3809" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59711);fill-opacity:1;marker:none" + d="m 151.55477,127.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3811" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59713);fill-opacity:1;marker:none" + d="m 156.40802,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31251,-0.0994 3.98788,-1.21464 -0.14384,-2.20698 l 0,0 z" + id="path3813" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59715);fill-opacity:1;marker:none" + d="m 159.92814,127.95246 c -3.78401,-2.43875 -0.21063,4.24518 0,0 z m 0,3.192 c 0.47459,-1.96346 -5.22419,-2.78526 -0.71899,-4.36565 1.6764,-0.42133 1.8857,4.50175 0.71899,4.36565 z" + id="path3815" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59717);fill-opacity:1;marker:none" + d="m 163.2018,129.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3817" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59719);fill-opacity:1;marker:none" + d="m 166.61505,128.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 l 0,0 z" + id="path3819" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59721);fill-opacity:1;marker:none" + d="m 168.65317,129.42846 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z" + id="path3821" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59723);fill-opacity:1;marker:none" + d="m 170.97311,125.54046 c 0.24142,5.21739 4.03356,3.6105 3.25969,0.36215 -1.55141,5.25262 -1.17988,0.68254 -3.25969,-0.36215 z" + id="path3823" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59725);fill-opacity:1;marker:none" + d="m 175.75792,126.11646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3825" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59727);fill-opacity:1;marker:none" + d="m 176.14933,126.94446 c -0.14932,2.95036 3.36432,3.04453 2.40142,0.23448 -1.89134,4.10196 -0.40496,-0.30705 -2.40142,-0.23448 z" + id="path3827" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59729);fill-opacity:1;marker:none" + d="m 180.38814,129.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3829" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59731);fill-opacity:1;marker:none" + d="m 182.83127,127.38846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.39939,4.82125 0.91978,-3.38184 -2.60129,-0.17506 l 0,0 z" + id="path3831" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59733);fill-opacity:1;marker:none" + d="m 189.28773,129.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3833" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59735);fill-opacity:1;marker:none" + d="m 190.46898,127.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3835" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59737);fill-opacity:1;marker:none" + d="m 71.27862,135.50046 c 3.789605,-2.76731 0.550338,4.56164 0,0 z m 0,3.48 c -1.012068,-2.24094 5.373927,-2.99902 0.717229,-4.70158 -1.808545,-0.35308 -1.739463,4.70913 -0.717229,4.70158 z" + id="path3837" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59739);fill-opacity:1;marker:none" + d="m 75.710276,137.36046 c 6.058567,-3.8442 -5.881817,-3.46582 0,0 z m 0,-2.484 c 3.799646,2.58345 -3.620809,2.10441 0,0 z" + id="path3839" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59741);fill-opacity:1;marker:none" + d="m 77.579557,135.24846 c 2.976542,1.48364 -1.72614,2.20401 1.721193,1.84166 -1.024117,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -3e-6,0 z" + id="path3841" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59743);fill-opacity:1;marker:none" + d="m 82.257682,136.84446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798378,-3.04802 -1.344202,0.30721 0.425982,0.57401 1.45918,0.62914 1.817904,-0.0662 l 0,3e-5 z" + id="path3843" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59745);fill-opacity:1;marker:none" + d="m 85.670932,135.63246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3845" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59747);fill-opacity:1;marker:none" + d="m 88.543057,134.45046 c -2.790226,-0.88114 -1.403452,5.13419 -0.399393,0.49294 l 0.399393,-0.49294 z" + id="path3847" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59749);fill-opacity:1;marker:none" + d="m 91.190464,135.63246 c -2.799749,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3849" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59751);fill-opacity:1;marker:none" + d="m 92.778589,138.08046 c 1.771906,-2.31771 -1.248714,-1.32319 0,0 z" + id="path3851" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59753);fill-opacity:1;marker:none" + d="m 96.901057,136.92846 c -2.06877,-1.59814 2.827525,-0.75946 0,0 z m 0.846,0.15 c 2.614013,-1.45106 -3.657342,-3.85454 -0.215737,-1.87283 -1.488852,0.85825 -2.832691,2.56416 0.215737,1.87283 z" + id="path3854" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59755);fill-opacity:1;marker:none" + d="m 99.380182,134.88246 c -1.461394,0.10093 0.160701,4.33568 0.473816,0.24189 1.317082,1.12445 1.799442,3.04562 1.343162,-0.30742 -0.42541,-0.57364 -1.458921,-0.63086 -1.816978,0.0655 l 0,3e-5 z" + id="path3856" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59757);fill-opacity:1;marker:none" + d="m 103.66343,137.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3858" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59759);fill-opacity:1;marker:none" + d="m 106.4014,135.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3860" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59761);fill-opacity:1;marker:none" + d="m 111.6514,135.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3862" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59763);fill-opacity:1;marker:none" + d="m 114.84753,136.84446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3864" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59765);fill-opacity:1;marker:none" + d="m 119.61265,137.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3866" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59767);fill-opacity:1;marker:none" + d="m 122.35062,135.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3868" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59769);fill-opacity:1;marker:none" + d="m 124.07074,134.88846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03231 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31093,-3.34384 -2.60129,-0.17506 z" + id="path3870" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59771);fill-opacity:1;marker:none" + d="m 129.08721,135.50046 c 3.78961,-2.76732 0.55034,4.56165 0,0 z m 0,3.48 c -1.01207,-2.24094 5.37393,-2.99902 0.71723,-4.70158 -1.80854,-0.35309 -1.73947,4.70915 -0.71723,4.70158 z" + id="path3872" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59773);fill-opacity:1;marker:none" + d="m 133.51887,137.36046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3874" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59775);fill-opacity:1;marker:none" + d="m 137.16415,134.45046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path3876" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59777);fill-opacity:1;marker:none" + d="m 141.93743,135.51846 c -3.53254,-2.75547 -0.60015,4.25032 0,0 z m 0.06,1.77 c -5.16559,0.70016 1.6218,-7.44344 0.54811,-2.16094 -0.36487,0.44847 0.58576,2.5564 -0.54811,2.16094 z" + id="path3878" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59779);fill-opacity:1;marker:none" + d="m 143.8099,133.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3880" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59781);fill-opacity:1;marker:none" + d="m 144.40531,135.87846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3882" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59783);fill-opacity:1;marker:none" + d="m 149.01499,137.26446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3884" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59785);fill-opacity:1;marker:none" + d="m 151.62096,136.84446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3886" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59787);fill-opacity:1;marker:none" + d="m 153.42621,134.88846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31092,-3.34384 -2.60129,-0.17506 z" + id="path3888" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59789);fill-opacity:1;marker:none" + d="m 158.27468,138.08046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3890" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59791);fill-opacity:1;marker:none" + d="m 162.96715,132.72246 c -3.45807,0.58021 -0.43167,7.47392 -0.5598,1.71868 -1.4063,-0.10483 0.59575,-1.36223 0.5598,-1.71868 z" + id="path3892" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59793);fill-opacity:1;marker:none" + d="m 165.31156,135.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3894" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59795);fill-opacity:1;marker:none" + d="m 166.58168,132.75246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3896" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59797);fill-opacity:1;marker:none" + d="m 168.71224,133.61646 c -1.02113,-1.72853 -0.96049,1.68712 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3898" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59799);fill-opacity:1;marker:none" + d="m 169.32565,135.24846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3900" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59801);fill-opacity:1;marker:none" + d="m 174.48565,134.88246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3902" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59803);fill-opacity:1;marker:none" + d="m 177.9349,133.61646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path3904" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59805);fill-opacity:1;marker:none" + d="m 179.20831,135.51846 c 3.53154,-2.7549 0.59731,4.25102 0,0 z m -0.06,1.77 c 5.16276,0.69901 -1.6218,-7.44306 -0.54811,-2.16094 0.36487,0.44847 -0.58576,2.5564 0.54811,2.16094 z" + id="path3906" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59807);fill-opacity:1;marker:none" + d="m 183.48078,134.87646 c 0.87097,4.1358 2.3616,-0.3781 -0.63721,-0.43158 -0.67107,-5.81181 -1.65821,7.20402 0.63721,0.43158 z" + id="path3908" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59809);fill-opacity:1;marker:none" + d="m 71.7457,140.22246 c -3.458075,0.58021 -0.431669,7.47393 -0.559803,1.71868 -1.406303,-0.10483 0.595753,-1.36223 0.559803,-1.71868 z" + id="path3910" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59811);fill-opacity:1;marker:none" + d="m 72.992107,144.42846 c -2.068771,-1.59814 2.827526,-0.75946 0,0 z m 0.846,0.15 c 2.614012,-1.45106 -3.657341,-3.85454 -0.215737,-1.87283 -1.488854,0.85825 -2.83269,2.56416 0.215737,1.87283 z" + id="path3912" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59813);fill-opacity:1;marker:none" + d="m 74.793232,143.37846 c 0.927046,2.31697 3.422709,0.92179 0.624235,-0.0394 3.339047,-1.46343 -0.188681,-2.35707 -0.624235,0.0394 z" + id="path3914" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59815);fill-opacity:1;marker:none" + d="m 78.568919,141.11646 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50278 0,0 z" + id="path3916" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59817);fill-opacity:1;marker:none" + d="m 79.356325,140.25246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path3918" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59819);fill-opacity:1;marker:none" + d="m 81.486888,141.11646 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50278 0,0 z" + id="path3920" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59821);fill-opacity:1;marker:none" + d="m 82.100294,142.74846 c 2.976542,1.48364 -1.72614,2.20401 1.721193,1.84166 -1.024117,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -3e-6,0 z" + id="path3922" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59823);fill-opacity:1;marker:none" + d="m 85.506419,141.11646 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50278 0,0 z" + id="path3924" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59825);fill-opacity:1;marker:none" + d="m 86.119825,142.74846 c 2.976542,1.48364 -1.72614,2.20401 1.721194,1.84166 -1.024118,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -4e-6,0 z" + id="path3926" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59827);fill-opacity:1;marker:none" + d="m 90.619825,142.74846 c 2.976542,1.48364 -1.72614,2.20401 1.721194,1.84166 -1.024118,-2.14522 -0.03947,-1.73859 -0.08658,-2.5305 -0.598308,-0.3408 -1.628862,-0.18586 -1.63461,0.68884 l -4e-6,0 z" + id="path3928" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59829);fill-opacity:1;marker:none" + d="m 95.42995,143.13246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312511,-0.0994 3.98789,-1.21465 -0.143835,-2.20698 z" + id="path3930" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59831);fill-opacity:1;marker:none" + d="m 97.150075,142.38846 c -1.37658,0.14182 0.141554,4.26189 0.532337,0.331 1.671442,2.03232 0.858,1.65026 2.068953,-0.15594 2.175745,4.90275 1.310925,-3.34384 -2.60129,-0.17506 l 0,0 z" + id="path3932" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59833);fill-opacity:1;marker:none" + d="m 101.99854,145.58046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path3934" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59835);fill-opacity:1;marker:none" + d="m 107.21901,143.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3936" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59837);fill-opacity:1;marker:none" + d="m 110.41514,144.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3938" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59839);fill-opacity:1;marker:none" + d="m 114.65226,144.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3940" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59841);fill-opacity:1;marker:none" + d="m 118.57139,144.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3942" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59843);fill-opacity:1;marker:none" + d="m 119.73464,143.37846 c 0.92705,2.31697 3.42271,0.92179 0.62424,-0.0394 3.33916,-1.46349 -0.18893,-2.35701 -0.62424,0.0394 z" + id="path3944" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59845);fill-opacity:1;marker:none" + d="m 124.34433,144.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3946" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59847);fill-opacity:1;marker:none" + d="m 126.34429,144.86046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3948" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59849);fill-opacity:1;marker:none" + d="m 129.98958,141.95046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path3950" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59851);fill-opacity:1;marker:none" + d="m 132.95086,142.38846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03232 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31092,-3.34384 -2.60129,-0.17506 z" + id="path3952" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59853);fill-opacity:1;marker:none" + d="m 139.53933,143.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31251,-0.0994 3.98788,-1.21464 -0.14384,-2.20698 z" + id="path3954" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59855);fill-opacity:1;marker:none" + d="m 142.29745,144.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path3956" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59857);fill-opacity:1;marker:none" + d="m 144.90342,144.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3958" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59859);fill-opacity:1;marker:none" + d="m 146.08467,142.74846 c 2.97655,1.48364 -1.72614,2.20401 1.72119,1.84166 -1.02411,-2.14522 -0.0395,-1.73859 -0.0866,-2.5305 -0.59831,-0.3408 -1.62886,-0.18586 -1.63461,0.68884 l 2e-5,0 z" + id="path3960" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59861);fill-opacity:1;marker:none" + d="m 151.24467,142.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3962" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59863);fill-opacity:1;marker:none" + d="m 155.96592,144.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path3964" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59865);fill-opacity:1;marker:none" + d="m 157.32117,140.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3966" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59867);fill-opacity:1;marker:none" + d="m 158.79773,140.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3968" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59869);fill-opacity:1;marker:none" + d="m 161.23429,144.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path3970" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59871);fill-opacity:1;marker:none" + d="m 165.63529,142.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path3972" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59873);fill-opacity:1;marker:none" + d="m 169.75054,144.86046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3974" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59875);fill-opacity:1;marker:none" + d="m 172.27983,142.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30742 -0.42541,-0.57363 -1.45892,-0.63086 -1.81698,0.0655 l 0,3e-5 z" + id="path3976" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59877);fill-opacity:1;marker:none" + d="m 176.99695,140.25246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path3978" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59879);fill-opacity:1;marker:none" + d="m 179.79351,144.86046 c 6.05857,-3.8442 -5.88182,-3.46582 0,0 z m 0,-2.484 c 3.79965,2.58345 -3.62081,2.10441 0,0 z" + id="path3980" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59881);fill-opacity:1;marker:none" + d="m 183.43879,141.95046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path3982" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59883);fill-opacity:1;marker:none" + d="m 186.0862,143.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path3984" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59885);fill-opacity:1;marker:none" + d="m 187.80633,142.38846 c -1.37668,0.14179 0.14147,4.26191 0.53234,0.331 1.67144,2.03231 0.858,1.65025 2.06895,-0.15594 2.17574,4.90275 1.31093,-3.34384 -2.60129,-0.17506 z" + id="path3986" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59887);fill-opacity:1;marker:none" + d="m 193.10479,144.42846 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z" + id="path3988" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59889);fill-opacity:1;marker:none" + d="m 71.509854,158.23446 c -2.874923,1.38429 -0.518117,-4.40882 0,0 z m -1.032,-2.694 c -0.83665,2.14287 -2.848737,5.17809 0.328442,3.13079 3.554186,3.28719 0.802119,-2.70519 -0.328442,-3.13079 z" + id="path3990" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59891);fill-opacity:1;marker:none" + d="m 73.198572,155.25246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path3992" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59893);fill-opacity:1;marker:none" + d="m 75.329135,156.11646 c -1.021127,-1.72853 -0.960499,1.68713 0,0 z m -0.666,0.828 c -0.750242,5.49848 2.060417,0.50278 0,0 z" + id="path3994" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59895);fill-opacity:1;marker:none" + d="m 78.366541,157.95246 c -3.784013,-2.43875 -0.210626,4.24518 0,0 z m 0,3.192 c 0.474582,-1.96346 -5.224191,-2.78527 -0.718991,-4.36565 1.676399,-0.42133 1.885699,4.50175 0.718991,4.36565 z" + id="path3996" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59897);fill-opacity:1;marker:none" + d="m 81.640197,159.34446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798378,-3.04802 -1.344202,0.30721 0.425982,0.57401 1.45918,0.62914 1.817904,-0.0662 l 0,3e-5 z" + id="path3998" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59899);fill-opacity:1;marker:none" + d="m 83.955447,159.42846 c -2.06877,-1.59814 2.827525,-0.75946 0,0 z m 0.846,0.15 c 2.614012,-1.45106 -3.657341,-3.85454 -0.215737,-1.87283 -1.488854,0.85825 -2.83269,2.56416 0.215737,1.87283 z" + id="path4000" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59901);fill-opacity:1;marker:none" + d="m 86.398572,157.38846 c -1.37658,0.14182 0.141554,4.26189 0.532337,0.331 1.671442,2.03232 0.858,1.65026 2.068953,-0.15594 2.175743,4.90275 1.310913,-3.34384 -2.60129,-0.17506 l 0,0 z" + id="path4002" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59903);fill-opacity:1;marker:none" + d="m 92.454916,156.94446 c -0.149314,2.95036 3.364311,3.04454 2.401416,0.23448 -1.891212,4.1018 -0.405042,-0.30671 -2.401416,-0.23448 z" + id="path4004" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59905);fill-opacity:1;marker:none" + d="m 97.791729,158.13246 c -2.799749,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.312512,-0.0994 3.987886,-1.21465 -0.143835,-2.20698 z" + id="path4006" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59907);fill-opacity:1;marker:none" + d="m 99.061854,155.25246 c -0.404284,2.47404 0.793061,6.41329 0.5854,1.74426 0.01187,-0.37744 0.244404,-1.7224 -0.5854,-1.74426 z" + id="path4008" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59909);fill-opacity:1;marker:none" + d="m 102.94629,157.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path4010" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59911);fill-opacity:1;marker:none" + d="m 106.39554,156.11646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path4012" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59913);fill-opacity:1;marker:none" + d="m 107.66895,158.01846 c 3.53154,-2.7549 0.59731,4.25102 0,0 z m -0.06,1.77 c 5.16276,0.69901 -1.6218,-7.44306 -0.54811,-2.16094 0.36487,0.44847 -0.58576,2.5564 0.54811,2.16094 z" + id="path4014" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59915);fill-opacity:1;marker:none" + d="m 111.94142,157.37646 c 0.87097,4.1358 2.3616,-0.3781 -0.63721,-0.43158 -0.67107,-5.81181 -1.65821,7.20402 0.63721,0.43158 z" + id="path4016" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59917);fill-opacity:1;marker:none" + d="m 114.7947,159.42846 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z" + id="path4018" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59919);fill-opacity:1;marker:none" + d="m 117.43263,157.70046 c -0.65158,3.39432 6.1099,0.99199 1.52325,1.52128 -3.48843,-2.32792 5.04678,-4.37834 -0.77748,-3.27731 -0.49405,0.4367 -0.76295,1.10089 -0.74577,1.75603 l 0,0 z" + id="path4020" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59921);fill-opacity:1;marker:none" + d="m 123.72223,159.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path4022" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59923);fill-opacity:1;marker:none" + d="m 126.67948,156.95046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path4024" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59925);fill-opacity:1;marker:none" + d="m 128.22888,159.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path4026" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59927);fill-opacity:1;marker:none" + d="m 130.70801,158.01846 c 3.53154,-2.7549 0.59731,4.25102 0,0 z m -0.06,1.77 c 5.16276,0.69901 -1.6218,-7.44306 -0.54811,-2.16094 0.36487,0.44847 -0.58576,2.5564 0.54811,2.16094 z" + id="path4028" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59929);fill-opacity:1;marker:none" + d="m 134.35648,156.11646 c -1.02113,-1.72853 -0.96049,1.68713 0,0 z m -0.666,0.828 c -0.75024,5.49847 2.06042,0.50278 0,0 z" + id="path4030" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59931);fill-opacity:1;marker:none" + d="m 136.63188,159.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path4032" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59933);fill-opacity:1;marker:none" + d="m 139.23785,159.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12389 -1.79838,-3.04802 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path4034" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59935);fill-opacity:1;marker:none" + d="m 142.1951,156.95046 c -2.79023,-0.88114 -1.40345,5.13419 -0.39939,0.49294 l 0.39939,-0.49294 z" + id="path4036" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59937);fill-opacity:1;marker:none" + d="m 145.19238,157.38246 c -1.4614,0.10093 0.16069,4.33568 0.47382,0.24189 1.31709,1.12444 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63084 -1.81698,0.0655 l 0,4e-5 z" + id="path4038" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59939);fill-opacity:1;marker:none" + d="m 149.91363,159.34446 c 1.46158,-0.10147 -0.16117,-4.33566 -0.4737,-0.24104 -1.31763,-1.12388 -1.79838,-3.04803 -1.3442,0.30721 0.42598,0.574 1.45918,0.62914 1.8179,-0.0662 l 0,3e-5 z" + id="path4040" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59941);fill-opacity:1;marker:none" + d="m 151.75488,157.38246 c -1.4614,0.10093 0.16069,4.33568 0.47382,0.24189 1.31709,1.12444 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63084 -1.81698,0.0655 l 0,4e-5 z" + id="path4042" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59943);fill-opacity:1;marker:none" + d="m 154.35813,158.37846 c 0.92704,2.31697 3.42271,0.92179 0.62423,-0.0394 3.33904,-1.46346 -0.18856,-2.35703 -0.62423,0.0394 z" + id="path4044" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59945);fill-opacity:1;marker:none" + d="m 160.3617,159.42846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path4046" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59947);fill-opacity:1;marker:none" + d="m 162.84082,157.38246 c -1.4614,0.10092 0.16069,4.33568 0.47382,0.24189 1.31708,1.12445 1.79944,3.04562 1.34316,-0.30743 -0.42541,-0.57363 -1.45892,-0.63085 -1.81698,0.0655 l 0,4e-5 z" + id="path4048" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59949);fill-opacity:1;marker:none" + d="m 167.12407,159.76446 c -0.89906,-0.94731 -0.71409,-5.51594 -1.52183,-1.72599 -0.0527,0.83712 0.28771,2.34167 1.52183,1.72599 z" + id="path4050" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59951);fill-opacity:1;marker:none" + d="m 169.86204,158.13246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31252,-0.0994 3.98788,-1.21465 -0.14384,-2.20698 z" + id="path4052" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59953);fill-opacity:1;marker:none" + d="m 171.45017,160.58046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path4054" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59955);fill-opacity:1;marker:none" + d="m 70.410926,166.84446 c 1.461568,-0.10147 -0.161179,-4.33566 -0.473702,-0.24104 -1.31763,-1.12389 -1.798378,-3.04802 -1.344202,0.30721 0.425982,0.57401 1.45918,0.62914 1.817904,-0.0662 l 0,3e-5 z" + id="path4056" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59957);fill-opacity:1;marker:none" + d="m 71.766176,162.75246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path4058" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59959);fill-opacity:1;marker:none" + d="m 73.242739,162.75246 c -0.404283,2.47404 0.79306,6.41329 0.585402,1.74426 0.01187,-0.37745 0.244403,-1.72241 -0.585402,-1.74426 z" + id="path4060" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59961);fill-opacity:1;marker:none" + d="m 75.679301,166.92846 c -2.06877,-1.59814 2.827525,-0.75946 0,0 z m 0.846,0.15 c 2.614012,-1.45106 -3.657341,-3.85454 -0.215737,-1.87283 -1.488854,0.85825 -2.83269,2.56416 0.215737,1.87283 z" + id="path4062" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59963);fill-opacity:1;marker:none" + d="m 78.122426,164.88846 c -1.37658,0.14182 0.141554,4.26189 0.532337,0.331 1.671442,2.03232 0.858,1.65026 2.068953,-0.15594 2.175743,4.90275 1.310913,-3.34384 -2.60129,-0.17506 l 0,0 z" + id="path4064" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59965);fill-opacity:1;marker:none" + d="m 82.460895,165.87846 c 0.927046,2.31697 3.422709,0.92179 0.624235,-0.0394 3.339047,-1.46343 -0.188681,-2.35707 -0.624235,0.0394 z" + id="path4066" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59967);fill-opacity:1;marker:none" + d="m 86.902583,167.36046 c 6.058567,-3.8442 -5.881818,-3.46582 0,0 z m 0,-2.484 c 3.799645,2.58345 -3.62081,2.10441 0,0 z" + id="path4068" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59969);fill-opacity:1;marker:none" + d="m 90.547864,164.45046 c -2.790226,-0.88114 -1.403452,5.13419 -0.399393,0.49294 l 0.399393,-0.49294 z" + id="path4070" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59971);fill-opacity:1;marker:none" + d="m 91.62327,165.50046 c 3.789607,-2.76732 0.550335,4.56165 0,0 z m 0,3.48 c -1.012068,-2.24094 5.373927,-2.99902 0.717229,-4.70158 -1.808545,-0.35308 -1.739463,4.70913 -0.717229,4.70158 z" + id="path4072" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59973);fill-opacity:1;marker:none" + d="m 96.792926,165.63246 c -2.79975,1.06471 -1.242854,-2.2302 0,0 z m -0.81,-1.236 c -4.278054,0.59245 2.170705,4.74128 0.143835,2.20698 -2.31251,-0.0994 3.987889,-1.21465 -0.143835,-2.20698 z" + id="path4074" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59975);fill-opacity:1;marker:none" + d="m 99.665051,164.45046 c -2.790226,-0.88114 -1.403452,5.13419 -0.399393,0.49294 l 0.399393,-0.49294 z" + id="path4076" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59977);fill-opacity:1;marker:none" + d="m 101.78033,164.44446 c -0.14932,2.95036 3.36432,3.04453 2.40142,0.23448 -1.89134,4.10196 -0.40496,-0.30705 -2.40142,-0.23448 z" + id="path4078" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59979);fill-opacity:1;marker:none" + d="m 107.11715,165.63246 c -2.79975,1.06471 -1.24286,-2.2302 0,0 z m -0.81,-1.236 c -4.27805,0.59245 2.17071,4.74128 0.14384,2.20698 -2.31251,-0.0994 3.98788,-1.21464 -0.14384,-2.20698 z" + id="path4080" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59981);fill-opacity:1;marker:none" + d="m 108.38727,162.75246 c -0.40429,2.47404 0.79306,6.41329 0.5854,1.74426 0.0119,-0.37745 0.24441,-1.7224 -0.5854,-1.74426 z" + id="path4082" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59983);fill-opacity:1;marker:none" + d="m 110.18183,168.08046 c 1.77191,-2.31771 -1.24871,-1.32319 0,0 z" + id="path4084" + inkscape:connector-curvature="0" /> + <path + style="font-size:6px;fill:url(#linearGradient59985);fill-opacity:1;marker:none" + d="m 114.3043,166.92846 c -2.06877,-1.59814 2.82753,-0.75946 0,0 z m 0.846,0.15 c 2.61401,-1.45106 -3.65734,-3.85454 -0.21574,-1.87283 -1.48885,0.85825 -2.83269,2.56416 0.21574,1.87283 z" + id="path4086" + inkscape:connector-curvature="0" /> + </g> + </g> + <use + x="0" + y="0" + xlink:href="#g4329" + id="use4384" + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,263.05189,-133.66578)" + width="400" + height="300" /> + <g + transform="matrix(1.0662065,0,0,1,-9.3873755,-8.0289575)" + id="g5013"> + <path + sodipodi:nodetypes="cccc" + id="path4386" + d="m 114.5,193 52.63173,-6.70711 c 11.19433,-0.17973 6.80583,-12.28646 -3.52513,-9.08578 L 114.5,193 z" + style="opacity:0.51941744;color:#000000;fill:url(#radialGradient59993);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4452);enable-background:new" + inkscape:connector-curvature="0" /> + <path + transform="matrix(2.0611959,0,0,2.0611959,-126.53723,-208.08648)" + style="opacity:0.56310676;color:#000000;fill:url(#radialGradient59995);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4416);enable-background:new" + d="m 119,193.5 44.5,-6 c 7.6588,-7.95791 3.62385,-10.5187 -6,-10.5 L 119,193.5 z" + id="path4404" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <path + transform="matrix(0.58897575,0,0,0.58897575,43.230002,81.159956)" + style="opacity:0.51941744;color:#000000;fill:url(#radialGradient59997);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter4444);enable-background:new" + d="m 128.93183,190.45321 38.1999,-4.16032 c 11.19433,-0.17973 6.80583,-12.28646 -3.52513,-9.08578 l -34.67477,13.2461 z" + id="path4436" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + </g> + <path + style="opacity:0.33495148;color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 77.998561,88 68.402704,205 215.5392,205 205.94334,89 77.998561,88 z" + id="path989" + inkscape:connector-curvature="0" /> + <g + id="g8563" + transform="translate(5.5919217,0)"> + <g + id="g2769" + style="fill:url(#linearGradient8656);fill-opacity:1;filter:url(#filter2786)" + transform="matrix(0.73724522,0,0,0.73724522,62.38839,-2.788036)"> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8636);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 114.8244,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + id="use2746" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8638);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 134.8244,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + id="use2748" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8640);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 154.8244,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + id="use2750" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8642);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 174.8244,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + id="use2752" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8644);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 94.824396,70.5 100.8244,59.75 92.324396,60 l -5,8.75 7.5,1.75 z" + id="use2744" /> + <path + inkscape:connector-curvature="0" + id="path2720" + d="m 74.824396,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + style="opacity:0.3842105;fill:url(#linearGradient8646);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" + style="opacity:0.3842105;fill:url(#linearGradient8648);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 194.8244,70.5 c 0.94917,-1.432918 2.17401,-3.00367 5.75,-5.75 -0.59506,-3.893211 -3.25834,-3.649993 -6.5,-2.25 l -6.75,6.25 7.5,1.75 z" + id="use2754" /> + <path + inkscape:connector-curvature="0" + id="path2868" + d="m 54.9716,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + style="opacity:0.3842105;fill:url(#linearGradient8650);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.3842105;fill:url(#linearGradient8652);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 34.9716,70.5 6,-10.75 -8.5,0.25 -5,8.75 7.5,1.75 z" + id="path2870" /> + <path + inkscape:connector-curvature="0" + id="path3151" + d="m 14.373028,70.5 6,-10.75 -8.500001,0.25 -4.9999996,8.75 7.5000006,1.75 z" + style="opacity:0.3842105;fill:url(#linearGradient8654);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + </g> + <g + id="g2402" + style="opacity:0.9" + transform="matrix(0.73724522,0,0,0.73724522,58.38839,-2.788036)"> + <g + id="g2409"> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2405" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient8658);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path1496" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-29)" /> + </g> + <g + id="use2413" + transform="translate(20,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2471" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2473" + style="fill:url(#radialGradient8660);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="use2415" + transform="translate(40,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2463" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2465" + style="fill:url(#radialGradient8662);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="use2417" + transform="translate(60,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2455" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2457" + style="fill:url(#radialGradient8664);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="use2419" + transform="translate(80,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2447" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2449" + style="fill:url(#radialGradient8666);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="use2421" + transform="translate(100,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2439" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2441" + style="fill:url(#radialGradient8668);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="use2423" + transform="translate(120,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2431" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2433" + style="fill:url(#radialGradient8670);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + id="g2852" + transform="translate(-39.732906,0)"> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2854" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" /> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-29)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2856" + style="fill:url(#radialGradient8672);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + </g> + <g + transform="translate(-19.732905,0)" + id="g2858"> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path2860" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient8674);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2862" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-29)" /> + </g> + <g + transform="translate(-60.460922,0)" + id="g3143"> + <path + transform="matrix(1,0,0,1.4,-2.8284271,-27.0625)" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + sodipodi:ry="2.5" + sodipodi:rx="4.25" + sodipodi:cy="70" + sodipodi:cx="79.25" + id="path3145" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient8676);fill-opacity:1;stroke:none;stroke-width:0.84515423;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path3147" + sodipodi:cx="79.25" + sodipodi:cy="70" + sodipodi:rx="4.25" + sodipodi:ry="2.5" + d="m 83.5,70 c 0,1.380712 -1.90279,2.5 -4.25,2.5 C 76.90279,72.5 75,71.380712 75,70 c 0,-1.380712 1.90279,-2.5 4.25,-2.5 2.34721,0 4.25,1.119288 4.25,2.5 z" + transform="matrix(1,0,0,1.4,-2.8284271,-29)" /> + </g> + </g> + <g + id="g2571" + transform="matrix(0.60541988,0,0.05527144,0.6098522,69.290765,6.350565)" + clip-path="url(#clipPath11012)"> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccc" + id="rect2505" + d="m 122.39962,39.29955 c -2.13398,0.525393 -3.37087,2.509826 -2.77328,4.449404 2.51044,4.950778 4.81375,8.548741 5.6697,13.7996 0,0 7.3043,-0.0016 7.3043,-0.0016 -0.74381,-6.022039 -1.51131,-11.673624 -4.70749,-17.130404 -1.09652,-1.826226 -3.35924,-1.642409 -5.49323,-1.117016 z" + style="fill:url(#radialGradient8902);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.31052629;fill:url(#radialGradient8904);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter2545);enable-background:new" + d="m 123.39015,43.690557 c -1.4541,0.393887 -1.55764,0.881611 -1.16374,2.335705 2.42305,5.368922 4.79934,10.037968 4.17516,16.712857 0.39388,1.454097 1.8816,2.307623 3.3357,1.913738 1.45409,-0.393885 0.43262,-1.256609 0.0387,-2.710708 -0.54366,-6.044338 -2.0357,-12.231632 -4.84017,-17.597727 -0.7338,-1.369116 -0.0916,-1.04775 -1.54568,-0.653865 l 3e-5,0 0,0 z" + id="path2535" + sodipodi:nodetypes="cccscccc" + transform="matrix(1,0,0.01008885,0.889491,-0.4373549,4.7906)" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccscss" + id="rect2483" + d="m 130.03955,4.3983138 c 3.61935,-0.394331 5.20407,2.8823952 5.05319,3.5852082 -2.65364,7.73366 -2.35822,17.963478 -0.78928,26.201742 0,2.216 -0.59915,3.549543 -3.47406,4.116542 -2.21021,0.435906 -3.73999,-0.300373 -4.33093,-3.003822 -1.30349,-7.529275 -2.13364,-19.059744 -0.65746,-26.1983646 0.40609,-1.9638008 2.00343,-4.4621466 4.19854,-4.7013056 l 0,0 z" + style="fill:url(#radialGradient8906);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + transform="matrix(0.965215,0.2614575,-0.2614575,0.965215,0,0)" /> + <path + transform="matrix(1.2923665,0,0,1.2923665,-34.731951,-18.731686)" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.65685,0 3,1.343146 3,3 z" + sodipodi:ry="3" + sodipodi:rx="3" + sodipodi:cy="48.25" + sodipodi:cx="120.625" + id="path2549" + style="fill:url(#radialGradient8908);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2559" + sodipodi:cx="120.625" + sodipodi:cy="48.25" + sodipodi:rx="3" + sodipodi:ry="3" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.52393,0 2.80574,1.142532 2.98026,2.656439 L 120.625,48.25 z" + transform="matrix(0.4583333,0,0,0.4583333,66.32766,22.135417)" + sodipodi:start="0" + sodipodi:end="6.1684132" /> + <path + inkscape:connector-curvature="0" + style="opacity:0.50526315;fill:url(#linearGradient8910);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="M 115.59837,52.052408 112.57512,68.875 c -0.32939,3.873014 7.9685,3.713298 8.11359,0.125 0.2445,-4.457653 1.42693,-10.501544 2.77324,-16.822592 -2.23191,-2.351321 -4.79151,-2.656037 -7.86358,-0.125 l 0,0 z" + id="path2626" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:none;stroke:url(#linearGradient8912);stroke-width:1.10351348;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter11792);enable-background:new" + d="m 120.5625,24 c -1.87771,0.145793 -3.50695,1.579887 -4.15625,2.875 -2.69747,5.38042 -3.8904,14.768983 -3.90625,21.0625 0.11588,2.286322 1.5196,3.213773 3.78125,3.34375 2.94181,0.169073 3.77213,-0.76193 4.15625,-2.53125 -0.0745,-4.160874 0.40913,-8.809002 1.6875,-13.0625 0.78346,1.339143 5.45124,12.730799 5.9375,14.3125 0,0 6.3125,0 6.3125,0 -1.2936,-4.981457 -5.5869,-19.64238 -9.28125,-24.15625 -0.28993,-0.346715 -0.6516,-0.593019 -1.03125,-0.78125 -0.0288,-0.02091 -0.0641,-0.04196 -0.0937,-0.0625 -0.65402,-0.45368 -1.50308,-0.828853 -2.59375,-0.96875 -0.27658,-0.03548 -0.54426,-0.05208 -0.8125,-0.03125 z" + id="path10953" + transform="matrix(1,0,-0.110365,1.2088916,5.6487605,9.1928886)" + sodipodi:nodetypes="cscscccccsssc" /> + </g> + <use + x="0" + y="0" + xlink:href="#g2571" + id="use2680" + transform="translate(14.744904,-4.5816154e-8)" + width="400" + height="300" /> + <use + x="0" + y="0" + xlink:href="#use2680" + id="use2682" + transform="translate(14.744904,-4.5816119e-8)" + width="400" + height="300" /> + <use + x="0" + y="0" + xlink:href="#use2682" + id="use2684" + width="400" + height="300" + transform="translate(14.744904,-4.5816119e-8)" /> + <use + x="0" + y="0" + xlink:href="#g2571" + id="use2686" + transform="translate(-14.744904,-4.5816154e-8)" + width="400" + height="300" /> + <use + x="0" + y="0" + xlink:href="#use2686" + id="use2688" + transform="translate(-14.744904,-4.5816119e-8)" + width="400" + height="300" /> + <g + transform="matrix(0.62080051,0,0.05667561,0.73724522,126.44157,-2.788036)" + id="g2690" + clip-path="url(#clipPath11876)"> + <path + inkscape:connector-curvature="0" + transform="matrix(0.965215,0.2614575,-0.2614575,0.965215,0,0)" + style="fill:url(#radialGradient8690);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 133.14488,19.650469 c -0.17439,4.951852 0.30252,10.039775 1.15858,14.534795 0,2.216 -0.59915,3.549543 -3.47406,4.116542 -2.21021,0.435906 -3.73999,-0.300373 -4.33093,-3.003822 -0.73131,-4.224218 -1.31363,-9.707871 -1.42326,-14.968786 -0.417,-5.934653 8.90352,-5.760582 8.06967,-0.678729 l 0,0 z" + id="path2696" + sodipodi:nodetypes="ccsccc" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient8692);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2698" + sodipodi:cx="120.625" + sodipodi:cy="48.25" + sodipodi:rx="3" + sodipodi:ry="3" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.65685,0 3,1.343146 3,3 z" + transform="matrix(1.4583333,0,0,1.4583333,-57.45709,-19.677399)" /> + <path + transform="matrix(0.4583333,0,0,0.4583333,63.671245,28.426155)" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.65685,0 3,1.343146 3,3 z" + sodipodi:ry="3" + sodipodi:rx="3" + sodipodi:cy="48.25" + sodipodi:cx="120.625" + id="path2700" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" + id="path2702" + d="m 114.15871,58.375 -1.58359,10.5 c -0.32939,3.873014 7.9685,3.713298 8.11359,0.125 l 1.11729,-9.5 c -2.91321,0.67165 -6.2114,0.241934 -7.64729,-1.125 z" + style="opacity:0.3842105;fill:url(#linearGradient8694);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + inkscape:connector-curvature="0" + style="fill:none;stroke:url(#linearGradient8696);stroke-width:1.08975768;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter11885);enable-background:new" + d="m 201.79734,53.778655 c -1.03083,4.734006 -1.44106,9.769637 -1.37351,14.332121 -0.38412,2.138917 -1.20788,3.26942 -4.14969,3.06503 -2.26165,-0.157133 -3.6471,-1.267773 -3.76298,-4.031689 0.009,-4.268485 0.38346,-9.713641 1.18695,-14.820218 0.61625,-5.837244 9.80486,-3.232309 8.09923,1.454756 l 0,0 z" + id="path11874" + sodipodi:nodetypes="ccsccc" + transform="matrix(1,0,-0.09129439,1,-73.51198,0)" /> + </g> + <g + clip-path="url(#clipPath11012)" + transform="matrix(0.60541988,0,0.05527144,0.6098522,25.290765,6.350565)" + id="g2784"> + <path + inkscape:connector-curvature="0" + style="fill:url(#radialGradient8914);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 122.39962,39.29955 c -2.13398,0.525393 -3.37087,2.509826 -2.77328,4.449404 2.51044,4.950778 4.81375,8.548741 5.6697,13.7996 0,0 7.3043,-0.0016 7.3043,-0.0016 -0.74381,-6.022039 -1.51131,-11.673624 -4.70749,-17.130404 -1.09652,-1.826226 -3.35924,-1.642409 -5.49323,-1.117016 z" + id="path2786" + sodipodi:nodetypes="cccccc" /> + <path + inkscape:connector-curvature="0" + transform="matrix(1,0,0.01008885,0.889491,-0.4373549,4.7906)" + sodipodi:nodetypes="cccscccc" + id="path2788" + d="m 123.39015,43.690557 c -1.4541,0.393887 -1.55764,0.881611 -1.16374,2.335705 2.42305,5.368922 4.79934,10.037968 4.17516,16.712857 0.39388,1.454097 1.8816,2.307623 3.3357,1.913738 1.45409,-0.393885 0.43262,-1.256609 0.0387,-2.710708 -0.54366,-6.044338 -2.0357,-12.231632 -4.84017,-17.597727 -0.7338,-1.369116 -0.0916,-1.04775 -1.54568,-0.653865 l 3e-5,0 0,0 z" + style="opacity:0.31052629;fill:url(#radialGradient8916);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter2545);enable-background:new" /> + <path + inkscape:connector-curvature="0" + transform="matrix(0.965215,0.2614575,-0.2614575,0.965215,0,0)" + style="fill:url(#radialGradient8918);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + d="m 130.03955,4.3983138 c 3.61935,-0.394331 5.20407,2.8823952 5.05319,3.5852082 -2.65364,7.73366 -2.35822,17.963478 -0.78928,26.201742 0,2.216 -0.59915,3.549543 -3.47406,4.116542 -2.21021,0.435906 -3.73999,-0.300373 -4.33093,-3.003822 -1.30349,-7.529275 -2.13364,-19.059744 -0.65746,-26.1983646 0.40609,-1.9638008 2.00343,-4.4621466 4.19854,-4.7013056 l 0,0 z" + id="path2790" + sodipodi:nodetypes="cccscss" /> + <path + sodipodi:type="arc" + style="fill:url(#radialGradient8920);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + id="path2792" + sodipodi:cx="120.625" + sodipodi:cy="48.25" + sodipodi:rx="3" + sodipodi:ry="3" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.65685,0 3,1.343146 3,3 z" + transform="matrix(1.2923665,0,0,1.2923665,-34.731951,-18.731686)" /> + <path + sodipodi:end="6.1684132" + sodipodi:start="0" + transform="matrix(0.4583333,0,0,0.4583333,66.32766,22.135417)" + d="m 123.625,48.25 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.52393,0 2.80574,1.142532 2.98026,2.656439 L 120.625,48.25 z" + sodipodi:ry="3" + sodipodi:rx="3" + sodipodi:cy="48.25" + sodipodi:cx="120.625" + id="path2794" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" + sodipodi:type="arc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" + id="path2796" + d="M 115.59837,52.052408 112.57512,68.875 c -0.32939,3.873014 7.9685,3.713298 8.11359,0.125 0.2445,-4.457653 1.42693,-10.501544 2.77324,-16.822592 -2.23191,-2.351321 -4.79151,-2.656037 -7.86358,-0.125 l 0,0 z" + style="opacity:0.50526315;fill:url(#linearGradient8922);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:new" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cscscccccsssc" + transform="matrix(1,0,-0.110365,1.2088916,5.6487605,9.1928886)" + id="path2798" + d="m 120.5625,24 c -1.87771,0.145793 -3.50695,1.579887 -4.15625,2.875 -2.69747,5.38042 -3.8904,14.768983 -3.90625,21.0625 0.11588,2.286322 1.5196,3.213773 3.78125,3.34375 2.94181,0.169073 3.77213,-0.76193 4.15625,-2.53125 -0.0745,-4.160874 0.40913,-8.809002 1.6875,-13.0625 0.78346,1.339143 5.45124,12.730799 5.9375,14.3125 0,0 6.3125,0 6.3125,0 -1.2936,-4.981457 -5.5869,-19.64238 -9.28125,-24.15625 -0.28993,-0.346715 -0.6516,-0.593019 -1.03125,-0.78125 -0.0288,-0.02091 -0.0641,-0.04196 -0.0937,-0.0625 -0.65402,-0.45368 -1.50308,-0.828853 -2.59375,-0.96875 -0.27658,-0.03548 -0.54426,-0.05208 -0.8125,-0.03125 z" + style="fill:none;stroke:url(#linearGradient8924);stroke-width:1.10351348;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter11792);enable-background:new" /> + </g> + <use + height="300" + width="400" + transform="translate(-14.744904,-4.5816154e-8)" + id="use2800" + xlink:href="#g2784" + y="0" + x="0" /> + <use + x="0" + y="0" + xlink:href="#g2784" + id="use3141" + transform="translate(-29.744904,-4.5816154e-8)" + width="400" + height="300" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/data/org.gnome.gedit.desktop.in.in b/data/org.gnome.gedit.desktop.in.in index f0c9ed8..1024319 100644 --- a/data/org.gnome.gedit.desktop.in.in +++ b/data/org.gnome.gedit.desktop.in.in @@ -7,7 +7,7 @@ Terminal=false Type=Application StartupNotify=true MimeType=text/plain; -Icon=accessories-text-editor +Icon=gedit Categories=GNOME;GTK;Utility;TextEditor; X-GNOME-DocPath=gedit/gedit.xml _X-GNOME-FullName=gedit Text Editor diff --git a/gedit/gedit-app.c b/gedit/gedit-app.c index eeea6d7..db5300f 100644 --- a/gedit/gedit-app.c +++ b/gedit/gedit-app.c @@ -1437,7 +1437,7 @@ gedit_app_init (GeditApp *app) priv = gedit_app_get_instance_private (app); g_set_application_name ("gedit"); - gtk_window_set_default_icon_name ("accessories-text-editor"); + gtk_window_set_default_icon_name ("gedit"); priv->monitor = g_network_monitor_get_default (); g_signal_connect (priv->monitor, |